/* ===========================================
   TURISMO LAKE PUCÓN — Estilos globales
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --green-deep: #0F3D2E;
  --green-deep-2: #1B5E20;
  --green-soft: #E8F1EC;
  --orange-sun: #F39C12;
  --orange-sun-dark: #D17F0A;
  --navy-deep: #0D3B66;
  --cyan-water: #29B6F6;
  --cream: #FAF7F2;
  --cream-2: #F2EDE3;
  --dark: #1A1A1A;
  --dark-soft: #3A3A3A;
  --gray: #6B6B6B;
  --gray-light: #D9D5CB;
  --white: #FFFFFF;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body: 'Manrope', system-ui, sans-serif;

  --max-w: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 7rem);

  --shadow-sm: 0 4px 12px rgba(15, 61, 46, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 61, 46, 0.15);
  --shadow-lg: 0 24px 64px rgba(15, 61, 46, 0.22);

  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Tipografía editorial */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange-sun);
  margin-bottom: 1rem;
  display: inline-block;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ===========================================
   BOTONES
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--orange-sun);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.35);
}
.btn-primary:hover {
  background: var(--orange-sun-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(243, 156, 18, 0.45);
}

.btn-secondary {
  background: var(--green-deep);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--green-deep-2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* ===========================================
   HEADER STICKY
   =========================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(15, 61, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 0.6rem 0; box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.scrolled .logo-link img { height: 46px; }

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-main a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange-sun);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange-sun);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-sun-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* Submenu dropdown */
.has-submenu { position: relative; }
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu a {
  display: block;
  padding: 0.7rem 1.4rem;
  color: var(--dark);
  font-size: 0.92rem;
}
.submenu a:hover { background: var(--cream); color: var(--green-deep); }
.submenu a::after { display: none; }

/* ===========================================
   HERO
   =========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-deep);
  color: var(--white);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.hero-slide.active {
  opacity: 1;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(15, 61, 46, 0.55), rgba(15, 61, 46, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--orange-sun);
  transform: scale(1.3);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-sun);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--white);
}
.google-badge .stars { color: #FFC107; letter-spacing: 1px; }

/* ===========================================
   SECCIONES BASE
   =========================================== */

section { padding: var(--section-y) 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header.left { text-align: left; }
.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin: 1rem auto 0;
}
.section-header.left p { margin-left: 0; }

/* ===========================================
   SOBRE NOSOTROS
   =========================================== */

.about {
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}
.about-text h2 em {
  font-style: italic;
  color: var(--orange-sun);
}
.about-text p {
  font-size: 1.05rem;
  color: var(--dark-soft);
  margin-bottom: 1.2rem;
}

.about-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--orange-sun);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green-deep);
  line-height: 1.4;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-deep) url('img/about.jpg') center/cover;
  box-shadow: var(--shadow-lg);
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,61,46,0.3));
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-badge-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--orange-sun);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.88rem;
  color: var(--dark-soft);
  line-height: 1.3;
}
.about-badge-text strong { color: var(--green-deep); }

/* ===========================================
   PROGRAMAS TURÍSTICOS
   =========================================== */

.programs {
  background: var(--white);
  position: relative;
}

.program-group {
  margin-bottom: 4rem;
}
.program-group:last-child { margin-bottom: 0; }

.program-group-title {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}
.program-group-title h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-deep);
}
.program-group-title .count {
  font-family: var(--ff-body);
  color: var(--orange-sun);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.program-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.program-card:hover .program-card-img {
  transform: scale(1.06);
}

.program-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
              rgba(0,0,0,0) 30%,
              rgba(15,61,46,0.4) 60%,
              rgba(15,61,46,0.92) 100%);
}

.program-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
  z-index: 2;
}
.program-card-content h4 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.program-card-content p {
  font-size: 0.88rem;
  opacity: 0.9;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-sun);
  letter-spacing: 0.04em;
}
.program-card-link::after {
  content: '→';
  transition: transform 0.3s;
}
.program-card:hover .program-card-link::after {
  transform: translateX(4px);
}

/* ===========================================
   POR QUÉ ELEGIRNOS
   =========================================== */

.why {
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why h2 { color: var(--white); }
.why .eyebrow { color: var(--orange-sun); }
.why .section-header p { color: rgba(255,255,255,0.8); }

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.why-stat { text-align: center; }
.why-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--orange-sun);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: "lnum";
}
.why-stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.why-feature {
  text-align: left;
}
.why-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(243, 156, 18, 0.15);
  border: 1px solid var(--orange-sun);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.why-feature h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.why-feature p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ===========================================
   TESTIMONIOS
   =========================================== */

.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--orange-sun);
  line-height: 1;
  font-weight: 700;
}

.testimonial-stars {
  color: #FFC107;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 500;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-deep);
}
.testimonial-source {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===========================================
   FORMULARIO CONTACTO
   =========================================== */

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}
.contact-info h2 em {
  font-style: italic;
  color: var(--orange-sun);
}
.contact-info > p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-item-value {
  font-weight: 600;
  color: var(--green-deep);
  font-size: 1rem;
}
.contact-item-value a { color: inherit; }
.contact-item-value a:hover { color: var(--orange-sun); }

.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  font-size: 1rem;
}
.social-link:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 0.98rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange-sun);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
}
.form-textarea {
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}

.form-message {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-size: 0.92rem;
  display: none;
}
.form-message.success {
  background: #E8F5E9;
  color: #2E7D32;
  display: block;
}
.form-message.error {
  background: #FFEBEE;
  color: #C62828;
  display: block;
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.4rem;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-sun);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange-sun);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a {
  color: var(--orange-sun);
  font-weight: 600;
}

/* ===========================================
   WHATSAPP FLOATING BUTTON
   =========================================== */

.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  animation: pulse 2s infinite;
  transition: transform 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.08);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===========================================
   REVEAL ON SCROLL
   =========================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 968px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .why-features { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--green-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .nav-main.open { right: 0; }
  .nav-main a { font-size: 1.1rem; }
  .nav-cta { align-self: stretch; text-align: center; }
  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    min-width: 0;
  }
  .submenu a { color: rgba(255,255,255,0.8); padding: 0.5rem 0; }
  .submenu a:hover { background: transparent; color: var(--orange-sun); }

  .hero { min-height: 88vh; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-float {
    width: 56px;
    height: 56px;
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .why-stats { grid-template-columns: 1fr 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem 1.4rem; }
}

/* ===========================================
   PÁGINAS DE TOUR
   =========================================== */

.tour-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 3.5rem;
  background-size: cover;
  background-position: center;
  background-color: var(--green-deep);
  color: var(--white);
  overflow: hidden;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,61,46,0.2) 0%, rgba(15,61,46,0.85) 100%);
}
.tour-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.tour-hero h1 {
  color: var(--white);
  margin: 0.5rem 0 1.2rem;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}
.tour-hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--orange-sun);
}
.tour-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.5;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--orange-sun); }
.breadcrumb span { color: rgba(255, 255, 255, 0.4); }

/* Quick Info */
.tour-quickinfo {
  padding: 3rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-light);
}
.quickinfo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.quickinfo-card {
  background: var(--white);
  padding: 1.4rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: transform 0.25s, box-shadow 0.25s;
}
.quickinfo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.quickinfo-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.quickinfo-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.quickinfo-value {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--green-deep);
}

/* Descripción */
.tour-description {
  background: var(--white);
}
.tour-desc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.tour-desc-text .lead {
  font-size: 1.15rem;
  color: var(--dark-soft);
  margin-bottom: 1.3rem;
  line-height: 1.6;
}
.tour-desc-text p {
  margin-bottom: 1.2rem;
  color: var(--dark-soft);
  font-size: 1.02rem;
}
.tour-desc-text h2 em {
  font-style: italic;
  color: var(--orange-sun);
}
.tour-desc-visual {
  position: sticky;
  top: 6rem;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tour-desc-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Incluye / No incluye */
.tour-includes {
  background: var(--cream);
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.includes-col h3 {
  margin: 0.5rem 0 2rem;
  font-size: 1.8rem;
}
.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.includes-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 2rem;
  position: relative;
}
.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.not-included .includes-list li::before {
  content: '✕';
  background: var(--orange-sun);
}
.includes-list strong {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--green-deep);
}
.includes-list span {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.45;
}

/* Itinerario / Timeline */
.tour-itinerary {
  background: var(--white);
}
.timeline {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 14px;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item.last { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--orange-sun);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--orange-sun);
}
.timeline-time {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--orange-sun);
  margin-bottom: 0.3rem;
}
.timeline-content h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  color: var(--dark-soft);
  font-size: 0.97rem;
  line-height: 1.5;
}

/* Qué llevar */
.tour-bring {
  background: var(--cream);
}
.bring-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.bring-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.bring-text h2 em {
  font-style: italic;
  color: var(--orange-sun);
}
.bring-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
}
.bring-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--dark-soft);
  border: 1px solid var(--gray-light);
}
.bring-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Galería */
.tour-gallery {
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  transition: transform 0.4s;
  cursor: zoom-in;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* CTA final */
.tour-cta-final {
  background: var(--white);
  padding-top: 0;
}
.cta-final-box {
  background: var(--green-deep);
  color: var(--white);
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(243,156,18,0.15) 0%, transparent 70%);
}
.cta-final-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-final-box h2 em {
  font-style: italic;
  color: var(--orange-sun);
}
.cta-final-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}
.cta-final-box .btn { position: relative; z-index: 1; }

/* Tours relacionados */
.tour-related {
  background: var(--cream);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Responsive de páginas de tour */
@media (max-width: 968px) {
  .tour-desc-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tour-desc-visual { position: static; aspect-ratio: 16/10; }
  .includes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bring-grid { grid-template-columns: 1fr; gap: 2rem; }
  .quickinfo-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .quickinfo-grid { grid-template-columns: repeat(2, 1fr); }
  .bring-list { grid-template-columns: 1fr; }
  .cta-final-box { padding: 3rem 1.5rem; }
  .timeline { padding-left: 1.5rem; }
  .timeline-item::before { left: -1.5rem; }
}

/* ===========================================
   UTILIDADES
   =========================================== */

.no-scroll { overflow: hidden; }
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  text-align: center;
}

.footer-bottom > div {
  flex: 0 1 auto;
}
