/* ============================================
   V | Bitácora Viajera Asia — Landing Page
   ============================================ */

:root {
  --dark: #2a2520;
  --dark-deep: #1f1a16;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --gold-faint: #f0e6d3;
  --cream: #faf7f2;
  --charcoal: #2d2d2d;
  --warm-gray: #7a6e63;
  --white: #ffffff;
  --terracotta: #c17c59;
  --whatsapp: #25D366;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Utilidades ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow-light {
  color: var(--gold-light);
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 40px auto;
}

.gold-divider-sm {
  width: 40px;
  margin: 28px auto;
}

.gold-divider-lg {
  width: 48px;
  margin: 0 auto;
}

/* ---------- Botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  width: 100%;
}

.btn-gold:hover {
  background: #a37709;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

/* ---------- Navegación ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(42, 37, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 24px;
  transition: transform 0.2s ease;
}

.nav-whatsapp:hover {
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 64px;
  background:
    linear-gradient(
      180deg,
      rgba(42, 37, 32, 0.35) 0%,
      rgba(58, 45, 25, 0.30) 45%,
      rgba(42, 37, 32, 0.75) 100%
    ),
    url('images/Desert_Safari_Jaisalmer.jpg') center / cover no-repeat;
}

.hero-content {
  max-width: 800px;
}

.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 4px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(16px, 2.4vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-route {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--gold-light);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Espejo emocional ---------- */

.mirror {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 120px) 24px;
  text-align: center;
  background: var(--cream);
}

.mirror-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 28px;
}

.mirror-text {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

.mirror-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}

/* ---------- Transiciones visuales ---------- */

.photo-break {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.photo-break picture {
  display: block;
  width: 100%;
}

.photo-break img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 16px;
}

.photo-break-tall img {
  max-height: 650px;
}

/* ---------- Diferenciadores ---------- */

.differentiators {
  background: var(--dark);
  color: var(--white);
  padding: clamp(72px, 10vw, 110px) 24px;
  margin-top: clamp(48px, 6vw, 72px);
}

.diff-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.diff-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.diff-intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  line-height: 1.8;
  margin: 0 auto 48px;
  text-align: center;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 28px 36px;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(184, 134, 11, 0.3);
}

.diff-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(212, 168, 67, 0.12) 100%);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  color: var(--gold-light);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.1);
}

.diff-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ---------- Fundadora ---------- */

.founder {
  background: var(--cream);
  padding: clamp(72px, 10vw, 110px) 24px;
}

.founder-block {
  max-width: 840px;
  margin: 0 auto;
  background: var(--gold-faint);
  border-radius: 20px;
  padding: clamp(32px, 6vw, 56px);
}

.founder-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 28px;
}

.founder-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.founder-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 12px;
}

.founder-bio {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: center;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 24px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

.founder-instagram-wrap {
  text-align: center;
}

.founder-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--gold);
  transition: color 0.2s ease;
}

.founder-instagram:hover {
  color: var(--gold);
}

.founder-instagram svg {
  color: var(--gold);
}

/* ---------- La ruta ---------- */

.route {
  background: var(--white);
  padding: clamp(72px, 10vw, 110px) 24px;
  text-align: center;
}

.route-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 56px;
}

.timeline {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  text-align: left;
  padding-left: 21px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-faint) 60%, transparent 100%);
}

.timeline-item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 72px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: -21px;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
}

.timeline-node-featured {
  width: 50px;
  height: 50px;
  left: -25px;
  background: var(--gold);
  border-color: var(--gold-light);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(184, 134, 11, 0.18);
}

.timeline-card {
  background: var(--cream);
  border: 1px solid var(--gold-faint);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(42, 37, 32, 0.04);
  transition: box-shadow 0.3s ease;
}

.timeline-card:hover {
  box-shadow: 0 6px 24px rgba(42, 37, 32, 0.08);
}

.timeline-card-featured {
  background: var(--gold-faint);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.1);
}

.timeline-card-featured:hover {
  box-shadow: 0 8px 32px rgba(184, 134, 11, 0.15);
}

.timeline-badge {
  display: inline-block;
  background: var(--warm-gray);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.timeline-badge-gold {
  background: var(--gold);
}

.timeline-place {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.timeline-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.timeline-heading-featured {
  font-size: 26px;
}

.timeline-text {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.timeline-photo-sm {
  height: 500px;
  margin-top: 16px;
}

.timeline-photo-featured-wrap {
  position: relative;
}

.timeline-photo-featured {
  height: 550px;
}

.photo-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---------- Inversión ---------- */

.investment {
  background: var(--cream);
  padding: clamp(72px, 10vw, 110px) 24px;
  text-align: center;
}

.investment-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 48px;
}

.investment-grid {
  max-width: 920px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.price-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-radius: 20px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price-circle {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.25) 0%, transparent 70%);
}

.price-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 10px;
}

.price-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.deposit-separator {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 28px auto;
}

.price-amount-sm {
  font-size: 44px;
}

.price-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 24px;
}

.included-card {
  background: var(--white);
  border: 1px solid var(--gold-faint);
  border-radius: 20px;
  padding: 36px;
}

.included-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.included-list {
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 11px;
  line-height: 1.5;
}

.included-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 4px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}

.included-separator {
  height: 1px;
  background: var(--gold-faint);
  margin: 22px 0;
}

.not-included-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--warm-gray);
  margin-bottom: 10px;
}

.not-included-list {
  list-style: none;
}

.not-included-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 7px;
}

.not-included-list li::before {
  content: '·';
  position: absolute;
  left: 6px;
  font-weight: 700;
}

/* Alojamiento */

.hotels-block {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gold-faint);
  border-radius: 16px;
  padding: 36px;
  text-align: left;
}

.hotels-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 22px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.hotels-grid .hotel-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

.hotel-card {
  background: var(--cream);
  border: 1px solid var(--gold-faint);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card:hover {
  border-color: var(--gold);
  box-shadow: 0 3px 12px rgba(184, 134, 11, 0.08);
}

.hotel-city {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--terracotta);
  margin-bottom: 5px;
}

.hotel-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.hotel-nights {
  font-size: 12px;
  color: var(--warm-gray);
}

.hotels-disclaimer {
  border-left: 3px solid var(--gold);
  background: rgba(184, 134, 11, 0.04);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.6;
  text-align: center;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--white);
  padding: clamp(72px, 10vw, 110px) 24px;
  text-align: center;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 44px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--gold-faint);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
}

.faq-indicator {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  color: var(--dark);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq-item.open .faq-indicator {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.8;
}

/* ---------- CTA ---------- */

.cta {
  background: var(--dark);
  padding: clamp(72px, 10vw, 110px) 24px;
  text-align: center;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 44px;
}

.cta-steps {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.cta-step {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background 0.25s ease;
}

.cta-step:hover {
  background: rgba(255, 255, 255, 0.07);
}

.step-number {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
}

.cta-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.cta-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(184, 134, 11, 0.45);
  background: rgba(184, 134, 11, 0.12);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 36px;
}

.cta-scarcity svg {
  flex-shrink: 0;
}

.cta-whatsapp-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
  margin-bottom: 44px;
}

.cta-form-block {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 32px;
}

.cta-form-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#contact-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

#contact-form input:not([type="checkbox"]):hover {
  background: rgba(255, 255, 255, 0.1);
}

.phone-field {
  display: flex;
  gap: 8px;
}

.phone-field select {
  width: 110px;
  flex-shrink: 0;
  padding: 15px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.phone-field select:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.phone-field select:focus {
  outline: none;
  border-color: var(--gold-light);
}

.phone-field select option {
  background: var(--dark);
  color: var(--white);
}

.phone-field input {
  flex: 1;
  min-width: 0;
}

#contact-form input:not([type="checkbox"])::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#contact-form input:not([type="checkbox"]):focus {
  outline: none;
  border-color: var(--gold-light);
}

#contact-form input:not([type="checkbox"]).input-error {
  border-color: #d9534f;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 0 8px;
  color: var(--white);
}

.form-success svg {
  color: var(--whatsapp);
}

.form-success p {
  font-size: 15px;
}

/* ---------- Privacy consent (form) ---------- */

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 4px;
}

.privacy-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}

.privacy-consent span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.privacy-consent a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.privacy-consent a:hover {
  color: var(--gold-light);
}

.privacy-consent.consent-error input[type="checkbox"] {
  outline: 2px solid #d9534f;
  outline-offset: 1px;
}

/* ---------- Privacy modal ---------- */

.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-overlay.active {
  opacity: 1;
  visibility: visible;
}

.privacy-modal {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(32px, 5vw, 56px);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.privacy-overlay.active .privacy-modal {
  transform: none;
}

.privacy-close {
  position: sticky;
  top: 0;
  float: right;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gold-faint);
  border-radius: 50%;
  font-size: 22px;
  color: var(--dark);
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s ease;
}

.privacy-close:hover {
  background: var(--gold-faint);
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.privacy-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 28px;
  margin-bottom: 10px;
}

.privacy-content p,
.privacy-content li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.8;
}

.privacy-content p {
  margin-bottom: 12px;
}

.privacy-intro {
  font-size: 15px;
  color: var(--warm-gray);
}

.privacy-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.privacy-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}

.privacy-content li::before {
  content: '·';
  position: absolute;
  left: 6px;
  font-weight: 700;
  color: var(--gold);
}

.privacy-content strong {
  font-weight: 600;
  color: var(--dark);
}

.privacy-updated {
  margin-top: 24px;
  font-style: italic;
  color: var(--warm-gray);
}

/* ---------- Cierre ---------- */

.closing {
  background: var(--cream);
  padding: clamp(80px, 12vw, 140px) 24px;
  text-align: center;
}

.closing-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.45;
  margin: 44px auto;
  max-width: 720px;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--dark-deep);
  padding: 32px 24px 24px;
  text-align: center;
}

.footer-brand {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-separator {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto 16px;
}

.footer-credits {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

/* ---------- Botón flotante WhatsApp ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 99;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.55);
}

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .cta-steps {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-whatsapp span {
    display: none;
  }

  .nav-whatsapp {
    padding: 10px;
    border-radius: 50%;
  }

  .founder-photos {
    grid-template-columns: 1fr;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
  }

  .hotels-grid .hotel-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .hero-trust {
    gap: 14px 28px;
  }

  .timeline {
    padding-left: 16px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-node {
    width: 36px;
    height: 36px;
    left: -18px;
    font-size: 15px;
  }

  .timeline-node-featured {
    width: 42px;
    height: 42px;
    left: -21px;
    font-size: 18px;
  }

  .timeline-item {
    padding-left: 34px;
  }

  .timeline-card {
    padding: 22px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .photo-break img {
    max-height: 400px;
  }

  .photo-break-tall img {
    max-height: 420px;
  }

  .timeline-photo {
    height: 300px;
  }

  .timeline-photo-sm {
    height: 300px;
  }

  .timeline-photo-featured {
    height: 340px;
  }

  .price-amount {
    font-size: 48px;
  }

  .price-amount-sm {
    font-size: 36px;
  }

  .included-card,
  .hotels-block {
    padding: 26px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
}
