:root {
  --primary: #CD1915;
  --secundary: #9e1311;
  --bg-light: #f8f9fa;
  --text-dark: #333;
  --text-light: #666;
  --radius: 15px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

a {
  text-decoration: none !important;
}

.hero-text, .form-container, .experience-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

#wpcf7-f3201-o1 > form > p > label > br,
#wpcf7-f3230-o2 > form > p > label > br {
  display: none;
}

/* NAVIGATION */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
}

.nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.nav-logo-section {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  position: absolute;
  left: 0;
  height: 100%;
}

#container-logo-nav, .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo {
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
}

#logo-img-nav {
  width: 280px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.nav-links-section, .nav-links {
  display: none;
}

.hero {
  padding-top: 70px;
}

nav.scrolled {
  height: 60px;
}

nav.scrolled #logo-img-nav {
  max-height: 45px;
}

nav.scrolled .nav-logo-section {
  padding: 0.3rem 0;
}

/* HERO SECTION */
.hero {
  padding: 2rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("https://lacasadelviaje.com.mx/wp-content/uploads/2026/01/hero.webp") center/cover;
  min-height: auto;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
}

.hero-text {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 7rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-text p {
  font-weight: 100;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text h1 + p {
  margin-top: 2rem;
}

#title-above {
  font-weight: 500;
}

/* FORM */
.form-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.7px);
  background: rgb(31 31 31 / 21%);
}

.form-container h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  padding-left: 15px;
}

body > section.hero > div > div.form-container.visible > h3 > i {
  color: var(--primary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding-left: 15px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select,
.modal-body input,
.modal-body select {
  width: 100%;
  padding: 0.7rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus,
.modal-body input:focus,
.modal-body select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(205, 25, 21, 0.1);
}

.btn-submit,
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: 600;
}

.btn-submit:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(114, 30, 30, 0.4);
}

/* EXPERIENCE SECTION */
.experience-section {
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.experience-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: auto;
  background: white;
  max-width: 1200px;
}

.experience-content {
  padding: 0rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  order: 2;
  margin-top: 2rem;
}

.experience-title {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.experience-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.experience-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

.experience-grid-2x4 img {
  width: 100%;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 168px;
}

.feature-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secundary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.2rem;
}

.feature-card:hover .feature-icon {
  animation: bounce-icon 0.6s ease;
}

@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature-title {
  font-size: 1rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.feature-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.experience-image-full {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  order: 1;
}

.experience-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ITINERARY CAROUSEL */
.itinerary {
  padding: 2rem 0rem;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  padding: 0 1rem;
}

.itinerary > p {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  padding: 0 1rem;
}

.swiper {
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0 3rem !important;
  position: relative;
}

.swiper::before,
.swiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.swiper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.itinerary-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.swiper-slide:not(.swiper-slide-active) .itinerary-card {
  transform: scale(0.85);
  opacity: 0.5;
}

.swiper-slide-active .itinerary-card {
  transform: scale(1);
  opacity: 1;
}

.itinerary-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.itinerary-content {
  padding: 1.2rem;
}

.day-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
}

.itinerary-content h3 {
  color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.itinerary-content ul {
  list-style: none;
  padding: 0;
}

.itinerary-content li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: #666;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  line-height: 1.4;
  text-align: justify;
}

.itinerary-content li:last-child {
  border-bottom: none;
}

.itinerary-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 0.9rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 26px;
  border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
  color: var(--primary) !important;
  width: 35px;
  height: 35px;
  z-index: 100000000 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

/* MAP SECTION */
.map-section {
  padding: 2rem 0.5rem;
  background: white;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0.5rem;
}

.route-wrapper {
  position: relative;
  padding: 1rem 0;
}

.route-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  right: auto;
  width: 4px;
  height: calc(100% - 2rem);
  transform: none;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 50%, var(--primary) 100%);
  margin-top: 2rem;
  z-index: 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

.points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
  padding-left: 60px;
}

.point {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  cursor: pointer;
  position: relative;
}

.point-circle {
  width: 40px;
  height: 40px;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.point:hover .point-circle {
  transform: scale(1.15);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(255, 54, 49, 0.3);
}

.point-circle i {
  font-size: 1rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.point:hover .point-circle i {
  color: var(--primary);
}

.point-name {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  margin-bottom: 0;
}

.point-tooltip {
  position: fixed;
  left: 50%;
  top: auto;
  bottom: 20px;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 100;
}

.point-tooltip::after {
  display: none;
}

.point:hover .point-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

.tooltip-image {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.tooltip-content {
  padding: 0.7rem;
}

.tooltip-title {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.tooltip-time {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.tooltip-time i {
  color: var(--secundary);
}

.tooltip-list {
  list-style: none;
  padding: 0;
  font-size: 0.8rem;
  color: #555;
}

.tooltip-list li {
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}

.tooltip-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secundary);
  font-weight: bold;
}

.map-section > h2 {
  margin-top: 6rem;
}

/* FEATURED DESTINATIONS */
.featured-destinations {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.featured-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.featured-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-image {
  transform: scale(1.05);
}

.featured-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.featured-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secundary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.featured-card h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.featured-card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.85rem;
  margin-top: auto;
}

.featured-card:hover .featured-icon {
  transform: rotate(8deg) scale(1.05);
  transition: transform 0.3s ease;
}

/* DESTINATIONS */
.destinations {
  padding: 5rem 2rem;
  background: #f8f9fa;
}

.destinations-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 600;
}

.destination-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.meta-item svg {
  color: var(--primary);
  font-size: 0.85rem;
}

.destination-route {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* REVIEWS */
.reviews {
  padding: 5rem 2rem;
  background: #fafafa;
}

.reviewsSwiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.review-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.stars {
  color: #FFD700;
  font-size: 0.9rem;
}

.review-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.reviews-btn {
  text-align: center;
  margin-top: 2rem;
}

.google-btn {
  display: inline-block;
  background: #CD1915;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.google-btn:hover {
  background: #a81412;
}

/* FOOTER */
.footer {
  font-family: 'Arial', sans-serif;
  color: #555;
}

.footer-top {
  background-color: #c20e1a;
  padding: 20px 0;
}

.footer-top h2 {
  text-align: center;
  color: #fff;
}

.footer-logos {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 2rem;
}

.footer-logos img {
  width: 155px;
  object-fit: contain;
}

.footer-bottom {
  background-color: white;
  text-align: center;
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom .social-icons {
  margin-bottom: 10px;
}

.footer-bottom .social-icons a {
  color: #777;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom .social-icons a:hover {
  color: #c20e1a;
}

.footer-bottom p {
  font-size: 14px;
  margin: 0;
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff5a56 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 54, 49, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  display: none;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 54, 49, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* PRECIOS */
.precios {
  background: var(--bg-light);
}

.price-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.price-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 2rem;
  transition: var(--transition);
  cursor: pointer;
}

.price-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px) scale(1.02);
}

.price-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.2rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
}

.popular {
  border: 3px solid var(--primary);
  position: relative;
}

.badge {
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* SUPLEMENTOS */
.suplementos {
  max-width: 800px;
  margin: 3rem auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.suplementos h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.suplementos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.suplemento {
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
}

.extra {
  font-size: 1.5rem;
  font-weight: bold;
}

/* NOTAS */
.notas {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fff3cd;
  border-left: 4px solid var(--secundary);
  border-radius: 8px;
  color: #856404;
  line-height: 1.6;
}

/* INCLUYE */
.incluye {
  background: white;
}

.destinos-grid {
  max-width: 1200px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.destino {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.destino:hover {
  transform: translateY(-5px);
}

.destino-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secundary));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.destino ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-light);
  line-height: 2;
}

.destino li {
  position: relative;
  padding-left: 1.5rem;
}

.destino li svg {
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--primary);
}

.extra-info {
  background: #fff;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* TREN */
.tren {
  max-width: 900px;
  margin: 3rem auto;
  background: linear-gradient(135deg, var(--primary), var(--secundary));
  padding: 2.5rem;
  border-radius: var(--radius);
  color: white;
  text-align: center;
}

.tren i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tren h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.tren .sub {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* NO INCLUYE */
.no-incluye {
  background: var(--bg-light);
  padding: 3rem 2rem;
}

.no-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.no-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.no-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-light);
  line-height: 2;
}

.no-card li {
  padding-left: 1.5rem;
  position: relative;
}

.no-card li i {
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
}

/* BOTÓN FLOTANTE DE RESERVA */
.btn-reservar-flotante {
  position: fixed;
  top: 25%;
  left: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%) !important;
  color: white !important;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(205, 25, 21, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: pulse 2s infinite;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.btn-reservar-flotante svg {
  font-size: 1.4rem !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.btn-reservar-flotante span {
  opacity: 0 !important;
  max-width: 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  margin-left: 0 !important;
}

.btn-reservar-flotante:hover {
  width: 180px !important;
  border-radius: 50px !important;
  gap: 10px !important;
  padding-right: 20px !important;
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 12px 35px rgba(205, 25, 21, 0.6) !important;
}

.btn-reservar-flotante:hover svg {
  left: 20px !important;
  transform: translateX(0) !important;
}

.btn-reservar-flotante:hover span {
  opacity: 1 !important;
  max-width: 100px !important;
  margin-left: 40px !important;
}

/* MODAL DEL FORMULARIO */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  border-radius: 25px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(-50px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(205, 25, 21, 0.1);
  transform: rotate(90deg);
}

.modal-close i {
  font-size: 1.2rem;
  color: #fff;
}

.modal-close:hover i {
  transform: scale(1.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%);
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-radius: 25px 25px 0 0;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.modal-header h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.modal-header p {
  font-size: clamp(0.8rem, 3vw, 0.95rem);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.modal-body .form-group {
  margin-bottom: 1rem;
}

.modal-body label,
#bookingForm > div > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.modal-body label i,
#bookingForm > div > label > i {
  color: #fff ;
  font-size: 1rem;
}

.btn-submit-modal {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-submit-modal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-submit-modal:hover::before {
  width: 400px;
  height: 400px;
}

.btn-submit-modal:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(205, 25, 21, 0.4);
}

.btn-submit-modal:active {
  transform: translateY(-1px);
}

.btn-submit-modal i {
  position: relative;
  z-index: 1;
}

.modal-footer {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-radius: 0 0 25px 25px;
  text-align: center;
  flex-shrink: 0;
}

.modal-footer p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-footer i {
  color: #28a745;
}

.btn-reservar-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%) !important;
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(205, 25, 21, 0.3);
  text-decoration: none;
  margin: 0 auto;
}

.container-btn-inline {
  display: flex;
  padding-bottom: 1rem;
}

.btn-reservar-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(205, 25, 21, 0.5);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%) !important;
}

.btn-reservar-inline svg {
  font-size: 1.1rem;
}

/* ESTILOS PARA CONTACT FORM 7 */
.wpcf7 { width: 100%; }
.wpcf7-form { width: 100%; color: #000; font-weight: 600; }
.wpcf7-form p { margin-bottom: 1rem; }
.wpcf7-form label { display: block; color: #333; margin-bottom: 0.5rem; padding-left: 15px; font-weight: 500; font-size: 0.95rem; }
.wpcf7-not-valid-tip { color: #dc3545; font-size: 0.85rem; margin-top: 0.3rem; padding-left: 15px; }
.wpcf7-response-output { margin: 1rem 0 0; padding: 0.8rem 1rem; border-radius: 8px; font-size: 0.9rem; text-align: center; }
.wpcf7-mail-sent-ok { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
.wpcf7-spam-blocked { background: #fff3cd; border: 1px solid #ffeaa7; color: #856404; }
.wpcf7-spinner { margin: 0 auto; display: block; }
.wpcf7-form .wpcf7-not-valid { border-color: #dc3545 !important; }
.wpcf7-form textarea { min-height: 120px; resize: vertical; }
.wpcf7-form .wpcf7-list-item { margin: 0 0 0.5rem 0; }
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] { width: auto; margin-right: 0.5rem; }
.wpcf7-form p:empty { display: none; }

/* HELPER CLASSES */
.featured-card--hero { grid-column: span 1; }
.desktop-only { display: none; }
.mobile-only { display: block; }
.section-spacing { margin-top: 4rem; margin-bottom: 4rem; }
.content-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
h2.section-title { text-align: center; font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
section { padding: 5rem 2rem; }
#list-important { padding-left: 15px; }

/* ========== RESPONSIVE ========== */

/* 375px */
@media (min-width: 375px) {
  .logo { font-size: 1rem; }
  #logo-img-nav { width: 280px; }
  .itinerary-card { max-width: 340px; }
  .itinerary-card img { height: 190px; }
}

/* 768px */
@media (min-width: 768px) {
  .hero { padding: 3rem 0; }
  .hero-content { padding: 2rem 1.5rem; gap: 3rem; margin-top: 0; }
  .hero-text h1 { margin-bottom: 1.5rem; }
  .hero-text p { font-size: 1.3rem; }
  .form-container { padding: 1.5rem; }
  .form-group input, .form-group select { padding: 0.8rem; font-size: 1rem; }
  .btn-submit { padding: 1rem; font-size: 1.1rem; }
  .experience-container { grid-template-columns: 1fr 1fr; min-height: 500px; }
  .experience-content { order: 1; }
  .experience-title { font-size: 2rem; }
  .experience-description { font-size: 1.1rem; }
  .experience-features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .feature-card { padding: 1.5rem; }
  .feature-icon { width: 45px; height: 45px; font-size: 1.3rem; }
  .feature-title { font-size: 1.1rem; }
  .feature-text { font-size: 0.9rem; }
  .experience-image-full { height: 100%; min-height: 500px; order: 2; }
  .itinerary { padding: 3rem 0rem; }
  .swiper { max-width: 700px; padding: 1.5rem 0 2.5rem; }
  .itinerary-card { max-width: 550px; }
  .itinerary-card img { height: 240px; }
  .itinerary-content { padding: 1.8rem; }
  .itinerary-content h3 { font-size: 1.5rem; }
  .itinerary-content li { font-size: 0.95rem; }
  .section-title { font-size: 2rem; padding: 0; }
  .map-section { padding: 5rem 2rem; }
  .map-container { padding: 3rem 1rem; }
  .route-line { left: 20px; height: calc(100% - 3rem); }
  .points-grid { padding-left: 70px; gap: 2.5rem; }
  .point-circle { width: 45px; height: 45px; }
  .point-circle i { font-size: 1.1rem; }
  .point-name { font-size: 1.2rem; }
  .tooltip-image { height: 120px; }
  .tooltip-content { padding: 1rem; }
  .tooltip-title { font-size: 1rem; }
  .tooltip-list { font-size: 0.85rem; }
  .featured-destinations { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); max-width: 900px; }
  .featured-image { height: 180px; }
  .featured-content { padding: 1.5rem; }
  .featured-card h3 { font-size: 1.1rem; }
  .featured-card p { font-size: 0.9rem; }
  .footer-bottom { flex-direction: row; justify-content: space-around; }
  .swiper-button-next, .swiper-button-prev { display: flex; }
  .swiper-button-next { right: -20px; }
  .swiper-button-prev { left: -20px; }
  .scroll-to-top { width: 45px; height: 45px; bottom: 20px; left: 20px; font-size: 1rem; }
  .featured-card--hero { grid-column: span 2; }
  .featured-card--hero .featured-image { height: 300px; }
  .desktop-only { display: block; }
  .mobile-only { display: none; }
  .btn-reservar-flotante { left: 20px; width: 55px; height: 55px; }
  .btn-reservar-flotante i { font-size: 1.3rem; }
  .btn-reservar-flotante:hover { width: 160px; }
  .modal-container { max-width: 95%; border-radius: 20px; }
  .modal-header { padding: 2.5rem 1.5rem 1.5rem; border-radius: 20px 20px 0 0; }
  .modal-header h2 { font-size: 1.6rem; }
  .modal-icon { width: 70px; height: 70px; font-size: 2rem; }
  .modal-body { padding: 1.5rem; }
  .modal-footer { padding: 1.2rem 1.5rem; }
  .suplementos-grid { grid-template-columns: 1fr; }
}

/* 1024px */
@media (min-width: 1024px) {
  .nav-container { padding: 0 2rem; }
  .nav-links { display: flex; gap: 1.5rem; }
  .nav-links a { font-size: 0.95rem; }
  #logo-img-nav { width: 325px; }
  .logo { font-size: 1.3rem; }
  .hero { min-height: 90vh; }
  .hero-content { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2rem; }
  .hero-text { text-align: left; width: max-content; }
  .hero-text h1 { margin-bottom: 0; }
  .hero-text p { font-size: 1.2rem; }
  .form-container { width: 400px; padding: 2rem; }
  .form-container h3 { font-size: 1.5rem; }
  .experience-title { line-height: 1.25; }
  .experience-description { font-size: 1.15rem; line-height: 1.8; }
  .experience-features-grid { display: flex; gap: 1.8rem; }
  .experience-image-full { min-height: 600px; }
  .section-title { font-size: 2.5rem; }
  .itinerary { padding: 4rem 0rem; }
  .swiper { max-width: 750px; }
  .swiper::before, .swiper::after { width: 100px; }
  .itinerary-card { max-width: 600px; }
  .itinerary-card img { height: 260px; }
  .itinerary-content { padding: 2rem; }
  .itinerary-content h3 { font-size: 1.6rem; }
  .itinerary-content li { font-size: 0.98rem; }
  .swiper-button-next, .swiper-button-prev { width: 40px; height: 40px; }
  .swiper-button-next::after, .swiper-button-prev::after { font-size: 20px; }
  .route-wrapper { padding: 2rem 0; }
  .route-line { top: 50%; left: 5%; right: 5%; width: auto; height: 4px; transform: translateY(-50%); margin-top: 0; }
  .points-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 1rem; padding-left: 0; }
  .point { flex-direction: column; gap: 0; }
  .point-circle { width: 50px; height: 50px; margin-bottom: 1rem; }
  .point-circle i { font-size: 1.3rem; }
  .point-name { text-align: center; max-width: 120px; }
  .point-tooltip { position: absolute; bottom: 100%; left: 50%; top: auto; transform: translateX(-50%); width: 250px; max-width: none; margin-bottom: 1rem; }
  .point-tooltip::after { display: block; content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 8px solid transparent; border-top-color: white; }
  .point:hover .point-tooltip { transform: translateX(-50%); }
  .featured-destinations { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 1200px; }
  .featured-image { height: 200px; }
  .destination-card img { height: 280px; }
  .featured-card--hero { grid-column: span 2; grid-row: span 2; }
  .featured-card--hero .featured-image { height: 100%; min-height: 400px; }
}

/* 1200px */
@media (min-width: 1200px) {
  nav { background: white; }
  .nav-container { flex-direction: row; max-width: 1400px; margin: 0 auto; }
  .nav-logo-section { width: 30%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);}
  .nav-links-section { width: 70%; background: white; display: flex; align-items: center; justify-content: flex-end; padding: 0 2rem; }
  .nav-links { display: flex; gap: 2rem; list-style: none; margin: 0 !important; padding: 0; height: 100%; align-items: center; }
  .nav-links a { color: #000000 !important; text-decoration: none; transition: color 0.3s; font-size: 1rem; font-weight: 500; padding: 0.5rem 0; position: relative; }
  .nav-links a:hover { color: var(--primary) !important; }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
  .nav-links a:hover::after { width: 100%; }
  .nav-links li { transition: transform 0.3s ease-out; }
  .nav-links li:hover { transform: scale(1.1); }
  .hero { padding-top: 70px; }
  .experience-features-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .feature-card { flex-direction: column; text-align: center; align-items: center; padding: 1.5rem 1rem; }
  .feature-icon { margin-bottom: 1rem; }
  .feature-title { font-size: 1rem; }
  .feature-text { font-size: 0.85rem; }
}

/* 1440px */
@media (min-width: 1440px) {
  .nav-links { gap: 2rem; }
  .nav-links a { font-size: 1rem; }
  .logo { font-size: 1.5rem; }
  .hero-content { gap: 4rem; }
  .hero-text p { font-size: 1.9rem; }
  .experience-title { margin-bottom: 2rem; }
  .experience-description { font-size: 1.2rem; }
  .experience-features-grid { gap: 1.5rem; }
  .feature-card { padding: 1.8rem 1.2rem; }
  .experience-image-full { min-height: 700px; }
  .itinerary { padding: 5rem 0rem; }
  .section-title { font-size: 2.8rem; }
  .swiper { max-width: 850px; }
  .itinerary-card { max-width: 700px; }
  .itinerary-card img { height: 300px; }
  .itinerary-content h3 { font-size: 1.8rem; }
  .itinerary-content li { font-size: 1.02rem; }
  .swiper-button-next, .swiper-button-prev { width: 45px; height: 45px; }
  .swiper-button-next { right: -30px; }
  .swiper-button-prev { left: -30px; }
  .featured-destinations { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); max-width: 1440px; gap: 2rem; }
  .featured-image { height: 220px; }
  .featured-content { padding: 1.8rem; }
  .featured-card h3 { font-size: 1.25rem; }
  .featured-card p { font-size: 0.95rem; }
  .destination-card img { height: 300px; }
  .destination-info h3 { font-size: 1.4rem; }
}

/* 1920px */
@media (min-width: 1920px) {
  .section-title { font-size: 3rem; }
  .experience-description { font-size: 1.2rem; }
  .swiper { max-width: 950px; }
  .itinerary-card { max-width: 800px; }
  .itinerary-card img { height: 340px; }
  .itinerary-content { padding: 2.5rem; }
  .itinerary-content h3 { font-size: 2rem; }
  .itinerary-content li { font-size: 1.08rem; }
  .destinations-grid { max-width: 1800px; }
  .destination-card img { height: 320px; }
  .scroll-to-top { width: 50px; height: 50px; bottom: 30px; left: 30px; }
}

/* Mobile extra pequeño - 480px y menos */
@media (max-width: 480px) {
  .btn-reservar-flotante { left: 15px; width: 50px; height: 50px; }
  .btn-reservar-flotante i { font-size: 1.2rem; }
  .btn-reservar-flotante:hover { width: 140px; }
  .scroll-to-top { width: 40px; height: 40px; bottom: 15px; left: 15px; font-size: 0.9rem; }
  .form-container { padding: 1rem; }
  .btn-reservar-flotante { bottom: 80%; right: 15px; width: 50px; height: 50px; }
  .modal-header h2 { font-size: 1.4rem; }
  .modal-body input, .modal-body select { padding: 0.8rem; font-size: 0.95rem; }
}

/* Altura limitada */
@media (max-height: 800px) {
  .modal-container { max-height: 95vh; }
  .modal-header { padding: 1.5rem 1.5rem 1rem; }
  .modal-header h2 { font-size: 1.3rem; margin-bottom: 0.3rem; }
  .modal-header p { font-size: 0.85rem; }
  .modal-body { padding: 1rem; }
  .modal-body .form-group { margin-bottom: 0.8rem; }
  .modal-body label { font-size: 0.85rem; margin-bottom: 0.4rem; }
  .modal-body input, .modal-body select { padding: 0.7rem 0.8rem; font-size: 0.9rem; }
  .btn-submit-modal { padding: 0.9rem; font-size: 1rem; }
  .modal-footer { padding: 0.8rem 1rem; }
  .modal-footer p { font-size: 0.8rem; }
  .modal-body .wpcf7-form p { margin-bottom: 0.8rem; }
  .modal-body .wpcf7-form label { font-size: 0.85rem; margin-bottom: 0.4rem; }
  .modal-body .wpcf7-form input[type="text"],
  .modal-body .wpcf7-form input[type="email"],
  .modal-body .wpcf7-form input[type="tel"],
  .modal-body .wpcf7-form input[type="url"],
  .modal-body .wpcf7-form input[type="number"],
  .modal-body .wpcf7-form input[type="date"],
  .modal-body .wpcf7-form textarea,
  .modal-body .wpcf7-form select { padding: 0.7rem 0.8rem; font-size: 0.9rem; }
  .modal-body .wpcf7-form input[type="submit"],
  .modal-body .wpcf7-form button[type="submit"] { padding: 0.9rem; font-size: 1rem; }
}

@media (max-height: 600px) {
  .modal-container { max-height: 98vh; border-radius: 15px; }
  .modal-header { padding: 1rem 1rem 0.8rem; border-radius: 15px 15px 0 0; }
  .modal-header h2 { font-size: 1.2rem; margin-bottom: 0.2rem; }
  .modal-header p { font-size: 0.8rem; }
  .modal-body { padding: 0.8rem; }
  .modal-body .form-group { margin-bottom: 0.6rem; }
  .modal-body label { font-size: 0.8rem; margin-bottom: 0.3rem; }
  .modal-body input, .modal-body select { padding: 0.6rem; font-size: 0.85rem; }
  .btn-submit-modal { padding: 0.8rem; font-size: 0.95rem; margin-top: 0.5rem; }
  .modal-footer { padding: 0.6rem 0.8rem; }
  .modal-footer p { font-size: 0.75rem; }
  .modal-body .wpcf7-form p { margin-bottom: 0.6rem; }
  .modal-body .wpcf7-form label { font-size: 0.8rem; margin-bottom: 0.3rem; }
  .modal-body .wpcf7-form input[type="text"],
  .modal-body .wpcf7-form input[type="email"],
  .modal-body .wpcf7-form input[type="tel"],
  .modal-body .wpcf7-form input[type="url"],
  .modal-body .wpcf7-form input[type="number"],
  .modal-body .wpcf7-form input[type="date"],
  .modal-body .wpcf7-form textarea,
  .modal-body .wpcf7-form select { padding: 0.6rem; font-size: 0.85rem; }
  .modal-body .wpcf7-form input[type="submit"],
  .modal-body .wpcf7-form button[type="submit"] { padding: 0.8rem; font-size: 0.95rem; margin-top: 0.5rem; }
}

/* Scrollbar modal */
.modal-container::-webkit-scrollbar { width: 8px; }
.modal-container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 0 25px 25px 0; }
.modal-container::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.modal-container::-webkit-scrollbar-thumb:hover { background: var(--secundary); }

/* CARRUSEL INFINITO DE ITINERARIO */
.infinite-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  margin: 0 auto;
}

/* .infinite-carousel-track {
  display: flex;
  animation: infinite-scroll 60s linear infinite;
  gap: .5rem;
  width: max-content;
} */

.infinite-carousel-track:hover { animation-play-state: paused; }

.infinite-slide {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 0;
  border-radius: 15px;
}

.infinite-slide:hover { transform: scale(1.05); z-index: 10; }

.slide-image { width: 100%; height: 100%; position: relative; }
.slide-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.day-overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background: rgb(31 31 31 / 52%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.7px);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.slide-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  z-index: 5;
}

.infinite-slide:hover .slide-info { opacity: 1; }

.slide-info h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
}

.slide-info ul { list-style: none; padding: 0; margin: 0; }
.slide-info li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.slide-info li:last-child { border-bottom: none; }
.slide-info li::before {
  content: "‣";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* @keyframes infinite-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-300px * 10)); }
} */

.infinite-carousel-container:hover .infinite-carousel-track { animation-play-state: paused; }

/* EXPERIENCE SECTION - CUADRÍCULA 2x4 */
.experience-grid-2x4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  height: 500px;
  order: 1;
  margin-top: 2rem;
}

.grid-item-1 { grid-area: 1 / 1 / 2 / 2; background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%); }
.grid-item-2 { grid-area: 1 / 2 / 3 / 3; }
.grid-item-3 { grid-area: 2 / 1 / 4 / 2; }
.grid-item-4 { grid-area: 3 / 2 / 4 / 3; background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%); }

.grid-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.grid-item.color-item {
  color: white;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 150px;
  border-radius: 8px;
}

.grid-item.color-item:hover { transform: scale(1.05); z-index: 2; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); }
.grid-item.image-item:hover { transform: scale(1.05); z-index: 2; }
.grid-item.image-item:hover img { transform: scale(1.1); }

.grid-item-content { text-align: center; z-index: 1; }
.grid-item-content i { font-size: 2.5rem; margin-bottom: 0.8rem; opacity: 0.9; }
.grid-item-content h4 { font-size: 1.1rem; font-weight: 600; margin: 0; line-height: 1.3; }

.grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(31 31 31 / 52%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.7px);
  color: white;
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.grid-item.image-item:hover .grid-overlay { transform: translateY(0); }
.grid-overlay p { margin: 0; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; }

/* JOURNEY SECTION */
.journey-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  max-width: 1400px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.journey-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.journey-map {
  min-height: 280px;
  background: white;
  border-radius: 20px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #f0f0f0;
  position: relative;
}

.journey-line {
  width: 95%;
  height: 4px;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 1;
}

.dotted-line { stroke-dasharray: 10, 10; stroke-linecap: round; animation: dash-flow 30s linear infinite; }
@keyframes dash-flow { to { stroke-dashoffset: -1000; } }

.journey-points {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 0.5rem;
  position: relative;
  z-index: 2;
}

.point { display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); flex: 1; max-width: 90px; gap: 0.8rem; }
.point:hover { transform: translateY(-8px); }

.point-marker {
  width: 56px;
  height: 56px;
  background: white;
  border: 4px solid #CD1915;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(205, 25, 21, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 15px;
}

.point:hover .point-marker {
  background: #CD1915;
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(205, 25, 21, 0.4);
}

.point.active .point-marker {
  background: #CD1915;
  border-width: 5px;
  animation: pulse-marker 2s infinite;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.point.active .point-marker svg { transform: rotate(45deg); }
.point-marker svg { font-size: 1.4rem; transition: all 0.3s ease; color: #CD1915 !important; }
.point:hover .point-marker svg,
.point.active .point-marker svg { color: white !important; }

.point-label {
  font-weight: 600;
  color: #333;
  text-align: center;
  font-size: 0.8rem;
  background: white;
  padding: 6px 10px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.point:hover .point-label,
.point.active .point-label {
  background: #CD1915;
  color: white;
  border-color: #CD1915;
  transform: scale(1.05);
}

.journey-info {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  min-height: 420px;
}

.info-header { margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 2px solid #f5f5f5; }
#point-title { color: #CD1915; margin: 0 0 0.8rem 0; font-size: 1.6rem; line-height: 1.2; font-weight: 700; }

.info-content {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-right: -0.5rem;
}

.info-image {
  width: 100%;
  height: 160px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-image:hover img { transform: scale(1.08); }

.info-details ul { list-style: none; padding: 0; margin: 0; }
.info-details li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: #444;
  line-height: 1.5;
  font-size: 0.95rem;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.info-details li:last-child { border-bottom: none; }
.info-details li:hover { background: #fafafa; padding-left: 2rem; }
.info-details li i {
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: #CD1915;
  font-size: 1rem;
}

.info-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f5f5f5;
  gap: 1rem;
}

.nav-btn {
  background: white;
  border: 2px solid #ddd;
  color: #333;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navigation-dots { display: flex; gap: 10px; align-items: center; }
.dot { width: 12px; height: 12px; background: #ddd; border-radius: 50%; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 2px solid transparent; }
.dot:hover, .dot.active { background: #CD1915; transform: scale(1.3); border-color: rgba(205, 25, 21, 0.3); }

@keyframes pulse-marker {
  0% { box-shadow: 0 4px 15px rgba(205, 25, 21, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(205, 25, 21, 0.6), 0 0 0 10px rgba(205, 25, 21, 0.1); }
  100% { box-shadow: 0 4px 15px rgba(205, 25, 21, 0.4); }
}

/* TIPS SECTION */
.tips-section {
  position: relative;
  padding: 1.5rem 0.75rem;
  min-height: auto;
  overflow: hidden;
}

.tips-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tips-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.tips-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.tips-mosaic {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  grid-auto-flow: dense;
}

.mosaic-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.mosaic-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6); }
.mosaic-item.image-only img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.3s ease; }
.mosaic-item.image-only:hover img { transform: scale(1.02); filter: brightness(1.03); }

.mosaic-item.with-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.tip-content { width: 100%; }
.tip-number { color: #CD1915; font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.5rem; text-shadow: 0 1px 6px rgba(205, 25, 21, 0.4); }
.tip-text { color: white; font-size: 0.8rem; line-height: 1.4; text-align: left; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); font-weight: 300; }

/* Grid positions para tips mosaic */
.mosaic-item.with-tip:nth-child(1) { grid-column: 3 / span 2; grid-row: 1 / span 2; }
.mosaic-item.image-only:nth-child(2) { grid-column: 5 / span 2; grid-row: 1; }
.mosaic-item.image-only:nth-child(3) { grid-column: 7 / span 2; grid-row: 1; }
.mosaic-item.image-only:nth-child(4) { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.mosaic-item.with-tip:nth-child(6) { grid-column: 6 / span 3; grid-row: 2; }
.mosaic-item.image-only:nth-child(5) { grid-column: 5; grid-row: 2; }
.mosaic-item.image-only:nth-child(7) { grid-column: 1 / span 3; grid-row: 3; }
.mosaic-item.image-only:nth-child(9) { grid-column: 7 / span 2; grid-row: 3; }
.mosaic-item.with-tip:nth-child(8) { grid-column: 4 / span 3; grid-row: 3; }

/* FORMULARIO DINÁMICO */
.form-input-trigger { cursor: pointer; }
.additional-fields { animation: fadeIn 0.5s ease forwards; border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 1rem; margin-top: 0.5rem; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ADICIONAL ========== */

/* Tablet para carrusel infinito */
@media (max-width: 768px) {
  .infinite-slide { width: 250px; height: 350px; }
  .day-overlay { font-size: 1.2rem; padding: 0.8rem; }
  .slide-info { padding: 1.5rem; }
  .slide-info h3 { font-size: 1.1rem; }
  .slide-info li { font-size: 0.85rem; }
  @keyframes infinite-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 10)); }
  }
  
  /* Tips mosaic tablet */
  .tips-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 12px; }
  .mosaic-item { grid-column: auto !important; grid-row: auto !important; }
  .mosaic-item.with-tip { grid-column: span 2; min-height: 180px; }
  .section-title { font-size: 1.8rem; }
}

/* Mobile para experiencia grid */
@media (max-width: 768px) {
  .experience-grid-2x4 {
    grid-template-rows: repeat(2, 200px);
    height: auto;
    gap: 0.8rem;
    padding: 1rem;
  }
  .grid-item-1, .grid-item-2, .grid-item-3, .grid-item-4 { grid-area: auto !important; min-height: 180px; }
  .grid-item-content i { font-size: 2rem; }
  .grid-item-content h4 { font-size: 1rem; }
}

/* Mobile para journey section */
@media (max-width: 768px) {
  .journey-section { padding: 3rem 1rem; }
  .journey-map { min-height: 200px; padding: 1.5rem 0.8rem; }
  .point-marker { width: 48px; height: 48px; border-width: 3px; }
  .point-marker i { font-size: 1.2rem; }
  .point-label { font-size: 0.75rem; padding: 5px 8px; }
  #point-title { font-size: 1.4rem; }
  .info-image { height: 140px; }
  .journey-info { min-height: auto; }
}

/* Mobile pequeño (480px) para carrusel infinito */
@media (max-width: 480px) {
  .infinite-slide { width: 220px; height: 320px; }
  .day-overlay { font-size: 1rem; padding: 0.6rem; }
  .slide-info { padding: 1rem; }
  .slide-info h3 { font-size: 1rem; }
  .slide-info li { font-size: 0.8rem; }
  @keyframes infinite-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 10)); }
  }
  
  /* Tips mosaic mobile */
  .tips-section { padding: 1rem 0.5rem; }
  .tips-mosaic { grid-template-columns: 1fr; grid-auto-rows: 160px; gap: 10px; }
  .mosaic-item.with-tip { grid-column: span 1; min-height: 160px; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.7rem; }
}

/* Mobile muy pequeño para tips */
@media (max-width: 479px) {
  .tips-mosaic { grid-auto-rows: 140px; }
  .mosaic-item.with-tip { min-height: 140px; padding: 0.8rem; }
  .tip-number { font-size: 1.3rem; }
  .tip-text { font-size: 0.7rem; }
}

/* Desktop para experiencia grid */
@media (min-width: 1024px) {
  .grid-item-content i { font-size: 3rem; }
  .grid-item-content h4 { font-size: 1.3rem; }
}

@media (min-width: 1440px) {
  .grid-item-content i { font-size: 3.5rem; }
  .grid-item-content h4 { font-size: 1.5rem; }
}

/* Desktop para journey */
@media (min-width: 992px) {
  .journey-container { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
  .journey-map { min-height: 380px; }
}

@media (min-width: 768px) {
  .journey-map { min-height: 320px; padding: 2.5rem 2rem; }
  .point { max-width: 110px; }
  .point-marker { width: 64px; height: 64px; }
  .point-marker i { font-size: 1.6rem; }
  .point-label { font-size: 0.85rem; padding: 7px 12px; }
  #point-title { font-size: 1.8rem; }
  .info-image { height: 180px; }
  .journey-info { min-height: 380px;}
}

/* Mobile muy pequeño para journey */
@media (max-width: 480px) {
  .journey-map { min-height: 180px; padding: 1.2rem 0.5rem; }
  .journey-points { padding: 0 0.2rem; }
  .point { max-width: 70px; gap: 0.6rem; }
  .point-marker { width: 42px; height: 42px; }
  .point-marker i { font-size: 1rem; }
  .point-label { font-size: 0.7rem; padding: 4px 6px; }
  .journey-info { padding: 1.5rem; }
  #point-title { font-size: 1.3rem; }
  .info-image { height: 120px; }
  .info-details li { font-size: 0.88rem; padding: 0.5rem 0 0.5rem 1.5rem; }
  .nav-btn { width: 40px; height: 40px; }
  .dot { width: 10px; height: 10px; }
}

/* ========== ESTILOS PARA FORMULARIOS LOCALES ========== */


#bookingForm .form-group,
#bookingFormModal .form-group {
  margin-bottom: 1rem;
}

#bookingForm label {
  display: block;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  padding-left: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

#bookingFormModal label {
  color: #000 !important;
}


#bookingFormModal label i {
  color: var(--primary) !important;
  font-size: 1rem;
  margin-right: 8px;
}

#bookingForm label i {
  color: #fff !important;
  font-size: 1rem;
  margin-right: 8px; 
}

#bookingForm input[type="text"],
#bookingForm input[type="email"],
#bookingForm input[type="tel"],
#bookingForm input[type="url"],
#bookingForm input[type="number"],
#bookingForm input[type="date"],
#bookingForm textarea,
#bookingForm select,
#bookingFormModal input[type="text"],
#bookingFormModal input[type="email"],
#bookingFormModal input[type="tel"],
#bookingFormModal input[type="url"],
#bookingFormModal input[type="number"],
#bookingFormModal input[type="date"],
#bookingFormModal textarea,
#bookingFormModal select {
  width: 100% !important;
  padding: 0.7rem !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
  transition: border-color 0.3s !important;
  background: #f8f9fa !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
  color: #333 !important;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus,
#bookingFormModal input:focus,
#bookingFormModal select:focus,
#bookingFormModal textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  background: white !important;
  box-shadow: 0 0 0 4px rgba(205, 25, 21, 0.1) !important;
}

#bookingForm .btn-submit-modal,
#bookingFormModal .btn-submit-modal {
  width: 100% !important;
  padding: 0.9rem !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  font-weight: 600 !important;
}

#bookingForm .btn-submit-modal:hover,
#bookingFormModal .btn-submit-modal:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(114, 30, 30, 0.4) !important;
}

/* Campos adicionales */
.additional-fields {
  animation: fadeIn 0.5s ease forwards;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== ESTILOS PARA FORMULARIOS CF7 ========== */

.wpcf7 {
  width: 100%;
  color: #000;
  font-weight: 600;
}

.wpcf7-form {
  width: 100%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100% !important;
  padding: 0.7rem !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
  transition: border-color 0.3s !important;
  background: #f8f9fa !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box !important;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  background: white !important;
  box-shadow: 0 0 0 4px rgba(205, 25, 21, 0.1) !important;
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  width: 100% !important;
  padding: 0.9rem !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  font-weight: 600 !important;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(114, 30, 30, 0.4) !important;
}

/* Labels de CF7 */
.wpcf7-form-control-wrap {
  display: block !important;
  margin-bottom: 1rem !important;
}

/* Ajustes específicos para el formulario en el modal */
.modal-body .wpcf7-form label {
  color: #000 !important;
}

/* Mensajes de error y éxito de CF7 */
.wpcf7-not-valid-tip {
  color: #dc3545 !important;
  font-size: 0.85rem !important;
  margin-top: 0.3rem !important;
}

.wpcf7-response-output {
  margin: 1rem 0 0 !important;
  padding: 0.8rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  text-align: center !important;
}

.wpcf7-mail-sent-ok {
  background: #d4edda !important;
  border: 1px solid #c3e6cb !important;
  color: #155724 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
  background: #f8d7da !important;
  border: 1px solid #f5c6cb !important;
  color: #721c24 !important;
}

/* Spinner de carga */
.wpcf7-spinner {
  margin: 0 auto !important;
  display: block !important;
}

/* ========== AJUSTES ESPECÍFICOS PARA EL HERO ========== */

/* Hero - labels de formularios locales */
.form-container #bookingForm label {
  color: #ffffff !important;
}

/* Hero - labels de CF7 */
.form-container .wpcf7-form label {
  color: #ffffff !important;
}

/* ========== AJUSTES ESPECÍFICOS PARA EL MODAL ========== */

/* Modal - labels de formularios locales */
.modal-body #bookingFormModal label {
  color: #000 !important;
}

/* Modal - labels de CF7 */
.modal-body .wpcf7-form label {
  color: #000 !important;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  #bookingForm input,
  #bookingForm select,
  #bookingForm textarea,
  #bookingFormModal input,
  #bookingFormModal select,
  #bookingFormModal textarea,
  .wpcf7 input,
  .wpcf7 select,
  .wpcf7 textarea {
    padding: 0.8rem !important;
    font-size: 1rem !important;
  }
  
  #bookingForm .btn-submit-modal,
  #bookingFormModal .btn-submit-modal,
  .wpcf7 input[type="submit"] {
    padding: 1rem !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  #bookingForm input,
  #bookingForm select,
  #bookingForm textarea,
  #bookingFormModal input,
  #bookingFormModal select,
  #bookingFormModal textarea,
  .wpcf7 input,
  .wpcf7 select,
  .wpcf7 textarea {
    padding: 0.7rem 0.8rem !important;
    font-size: 0.95rem !important;
  }
  
  #bookingForm .btn-submit-modal,
  #bookingFormModal .btn-submit-modal,
  .wpcf7 input[type="submit"] {
    padding: 0.9rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 767px) {
  body > section.tips-section > div.tips-content > div.tips-mosaic > div:nth-child(3),
  body > section.tips-section > div.tips-content > div.tips-mosaic > div:nth-child(4),
  body > section.tips-section > div.tips-content > div.tips-mosaic > div:nth-child(5) {
    display:none;
  }
}


/* ====================================
   BOTONES DE NAVEGACIÓN DEL CARRUSEL INFINITO
   Agrega estos estilos al final de tu style.css
   ==================================== */

.infinite-carousel-container {
  position: relative;
}


/* ====================================
   ESTILOS PARA FLECHAS Y DOTS SEPARADOS
   ==================================== */

/* Contenedor de flechas - Posicionado en el centro de los slides */
.carousel-arrows-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
  z-index: 20;
  max-width: 1920px;
  margin: 0 auto;
}

/* Contenedor de dots - Posicionado abajo, centrado */
.carousel-dots-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
  padding: 10px 0;
}

/* Estilos para flechas */
.carousel-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  pointer-events: all;
}

.carousel-arrow svg {
  color: var(--primary);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.carousel-arrow:hover svg {
  color: white;
}

/* Estilos para dots */
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  transform: scale(1.3);
  background: var(--primary);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .carousel-arrows-container {
    padding: 0 10px;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  
  .carousel-arrow i {
    font-size: 1rem;
  }
  
  .carousel-dots-container {
    bottom: 15px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-arrows-container {
    padding: 0 5px;
  }
  
  .carousel-arrow {
    width: 35px;
    height: 35px;
  }
  
  .carousel-arrow i {
    font-size: 0.9rem;
  }
  
  .carousel-dots-container {
    bottom: 10px;
  }
  
  .carousel-dot {
    width: 8px;
    height: 8px;
  }
}

/* Asegurar que el contenedor del carrusel tenga posición relativa */
.infinite-carousel-container {
  position: relative;
  overflow: hidden;
}






/* ============================================
   ESTILOS UNIFICADOS PARA FORMULARIOS (LOCALES Y CF7)
   ============================================ */

/* 1. OCULTAR LOS <br> QUE CF7 AGREGA AUTOMÁTICAMENTE */
.wpcf7-form br,
.wpcf7-form p br {
    display: none !important;
}

/* 2. ELIMINAR MÁRGENES POR DEFECTO DE CF7 */
.wpcf7-form p,
.wpcf7 .wpcf7-form p {
    margin: 0 0 0rem 0 !important;
    padding: 0 !important;
}

/* 3. UNIFICAR ESTRUCTURA DE FORMULARIOS */
.form-container .wpcf7-form,
.modal-body .wpcf7-form,
.form-fields-wrapper,
.basic-fields,
.additional-fields {
    width: 100% !important;
}

/* 4. ESTILOS PARA LABELS (CF7 Y HTML) */
.form-container label,
.modal-body label,
.wpcf7-form label,
#bookingForm label,
#bookingFormModal label {
    display: block;
    color: #333 !important;
    margin-bottom: 0.6rem !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding-left: 0 !important;
    position: relative !important;
}

/* Labels blancos en hero (formulario principal) */
.form-container label,
.form-container .wpcf7-form label,
.form-container #bookingForm label {
    color: #ffffff !important;
}

/* Labels en modal */
.modal-body label,
.modal-body .wpcf7-form label,
.modal-body #bookingFormModal label {
    color: #000 !important;
}

/* 5. ESTILOS PARA SPAN DENTRO DE LABELS (REEMPLAZAN A LOS ICONOS) */
.form-container label span,
.modal-body label span,
.wpcf7-form label span {
    display: block ;
    margin-bottom: 0.4rem !important;
    font-weight: 600 !important;
}

/* 6. CAMPOS DE FORMULARIO UNIFICADOS */
.wpcf7-form-control:not([type="submit"]),
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
#bookingForm input,
#bookingForm select,
#bookingFormModal input,
#bookingFormModal select {
    width: 100% !important;
    padding: 0.7rem !important;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    box-sizing: border-box !important;
    color: #333 !important;
    margin: 0 !important;
}

/* 7. ESTADOS DE FOCO */
.wpcf7-form-control:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
#bookingForm input:focus,
#bookingForm select:focus,
#bookingFormModal input:focus,
#bookingFormModal select:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(205, 25, 21, 0.1) !important;
}

/* 8. BOTONES DE ENVÍO UNIFICADOS */
.wpcf7-submit,
.wpcf7 input[type="submit"],
#bookingForm .btn-submit-modal,
#bookingFormModal .btn-submit-modal {
    width: 100% !important;
    padding: 1.1rem !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    margin-top: 1rem !important;
}

/* Icono para botones de envío */
.wpcf7-submit::before,
.wpcf7 input[type="submit"]::before {
    content: "\f1d8" !important; /* Icono avión de papel */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
}

/* Hover de botones */
.wpcf7-submit:hover,
.wpcf7 input[type="submit"]:hover,
#bookingForm .btn-submit-modal:hover,
#bookingFormModal .btn-submit-modal:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(205, 25, 21, 0.4) !important;
}

/* 9. FORM-INDICATOR (para el formulario del home) */
.form-indicator {
    text-align: center !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    margin: 10px 0 !important;
    font-style: italic !important;
    opacity: 0.9 !important;
}

/* 10. ADICIONAL FIELDS - COMPORTAMIENTO DINÁMICO */
.additional-fields {
    animation: fadeIn 0.5s ease forwards !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-top: 1rem !important;
    margin-top: 0.5rem !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 11. ESTILOS PARA SELECT ESPECÍFICOS */
.wpcf7-select,
#bookingForm select,
#bookingFormModal select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CD1915' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.7rem center !important;
    background-size: 1em !important;
    padding-right: 2.5rem !important;
}

/* 12. MENSAJES DE ERROR/ÉXITO DE CF7 */
.wpcf7-not-valid-tip {
    color: #ff6b6b !important;
    font-size: 0.85rem !important;
    margin-top: 0.3rem !important;
    font-weight: 500 !important;
}

.wpcf7-response-output {
    margin: 1rem 0 0 !important;
    padding: 0.8rem 1rem !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.wpcf7-mail-sent-ok {
    background: rgba(40, 167, 69, 0.2) !important;
    color: #fff !important;
    border: 1px solid rgba(40, 167, 69, 0.3) !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background: rgba(220, 53, 69, 0.2) !important;
    color: #fff !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
}

/* 13. RESPONSIVE */
@media (max-width: 768px) {
    .wpcf7-form-control:not([type="submit"]),
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="date"],
    .wpcf7 select {
        padding: 0.8rem !important;
        font-size: 1rem !important;
    }
    
    .wpcf7-submit,
    .wpcf7 input[type="submit"] {
        padding: 1rem !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .form-container label span,
    .modal-body label span,
    .wpcf7-form label span {
        font-size: 0.9rem !important;
    }
}

#modalAdditionalFields {
  display: block;
}


/* ============================================
   LAYOUT MEJORADO PARA LA SECCIÓN DE RECORRIDO
   ============================================ */

.journey-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Para desktop: dos columnas */
@media (min-width: 992px) {
  .journey-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  /* Columna izquierda: mapa + botón */
  .journey-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
  }
  
  /* Ajustar el mapa para que ocupe más espacio */
  .journey-left-column .journey-map {
    flex: 1;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Contenedor del botón en columna izquierda */
  .journey-btn-container {
    text-align: center;
    padding: 1rem 0;
  }
  
  /* Ajustar el botón para que se vea mejor en columna */
  .journey-btn-container .btn-reservar-inline {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Ajustar el journey-info para que ocupe toda la altura */
  .journey-info {
    min-height: 500px;
    display: flex;
    flex-direction: column;
  }
  
  .info-content {
    flex-grow: 1;
  }
}

/* Ajustes para tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .journey-left-column .journey-map {
    min-height: 320px;
  }
}

/* Para móvil: mantener una columna */
@media (max-width: 767px) {
  .journey-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .journey-btn-container {
    padding: 1rem 0 0;
  }
  
  .journey-btn-container .btn-reservar-inline {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Ocultar el botón duplicado que estaba después del mapa */
  .journey-section .container-btn-inline {
    display: none;
  }
}

/* Ajustes para la línea del mapa en layout de dos columnas */
@media (min-width: 992px) {
  .journey-map {
    min-height: 380px;
    padding: 2.5rem 1.5rem;
  }
  
  .journey-line {
    top: 53%;
    transform: translateY(-50%);
  }
}

/* Mejoras visuales para el botón en columna */
.journey-btn-container .btn-reservar-inline {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secundary) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(205, 25, 21, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.journey-btn-container .btn-reservar-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(205, 25, 21, 0.5);
  background: linear-gradient(135deg, var(--secundary) 0%, var(--primary) 100%);
}

.journey-btn-container .btn-reservar-inline i {
  font-size: 1.2rem;
}

/* Asegurar que la sección del recorrido tenga buen espaciado */
.journey-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  max-width: 1400px;
  margin: 0 auto;
}

/* Eliminar el contenedor de botón duplicado que estaba fuera */
.journey-section .container-btn-inline {
  display: none;
}

.field-icon svg {
  margin-right: .5rem;
  color: #fff;
}

.field-label {
  color: #fff;
  padding-left: .5rem;
}

.form-container.visible > h3 > svg {
  color: var(--primary);
}

.cf-turnstile > div {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

#form-modal-f7 .field-label  {
  color: #000;
}

#form-modal-f7 .field-icon svg {
  color: var(--primary);
  padding-left: .5rem;
  width: inherit;
}

@media (max-width: 1200px) {
  .feature-icon {
    margin-right: .3rem;
  }
}
.info-details ul svg {
  color: var(--primary);
}

 .journey-btn-container {
    text-align: center;
  }