/* ── Variables ── */
:root {
  --orange: #E85D04;
  --orange-dark: #C44D03;
  --orange-pale: #FFF3E0;
  --teal: #0EA5E9;
  --dark: #1A1A2E;
  --text: #374151;
  --text-light: #6B7280;
  --cream: #FFFBF5;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --nav-h: 90px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, sans-serif;
  --radius: 14px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── Custom cursor ── */
#cursor, #cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%);
  transition: opacity .3s;
}
#cursor { width: 8px; height: 8px; background: var(--orange); }
#cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(232,93,4,.5);
  transition: width .2s, height .2s;
}
@media (pointer: coarse) { #cursor, #cursor-ring { display: none; } }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange); color: var(--white);
  padding: .875rem 2rem; border-radius: 100px;
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,.35); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid currentColor; color: var(--text);
  padding: .875rem 2rem; border-radius: 100px;
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  transition: background .2s, color .2s, transform .15s;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--text); color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── WhatsApp fijo ── */
.wa-fixed {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 900; transition: transform .2s, box-shadow .2s;
}
.wa-fixed svg { width: 28px; height: 28px; }
.wa-fixed:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(12px); box-shadow: 0 1px 20px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; height: var(--nav-h);
  display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 80px; width: auto;
  transition: filter .3s;
  filter: brightness(0) invert(1);
}
#navbar.scrolled .logo-img { filter: none; }
.logo-img-footer { filter: brightness(0) invert(1); height: 70px; }
.nav-links { display: flex; gap: 2rem; margin-left: auto; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.85);
  padding: .45rem 1rem; border-radius: 100px;
  transition: color .2s, background .2s, backdrop-filter .2s;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
#navbar.scrolled .nav-links a { color: var(--text-light); }
#navbar.scrolled .nav-links a:hover {
  color: var(--orange);
  background: rgba(232,93,4,.08);
  backdrop-filter: none;
}
.btn-nav {
  background: var(--orange); color: var(--white);
  padding: .6rem 1.4rem; border-radius: 100px;
  font-size: .85rem; font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--orange-dark); }
.ham-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.ham-btn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
#navbar.scrolled .ham-btn span { background: var(--dark); }
.ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; }
.ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-menu {
  display: none; flex-direction: column; gap: 1rem;
  background: var(--white); padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.mob-menu.open { display: flex; }
.mob-menu ul { display: flex; flex-direction: column; gap: .75rem; }
.mob-menu a { font-size: 1rem; font-weight: 500; color: var(--text); padding: .5rem 0; border-bottom: 1px solid var(--border); }
.mob-menu .btn-primary { margin-top: .5rem; justify-content: center; }

/* ── Hero ── */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: var(--nav-h) 1.5rem 0;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem 1.25rem; border-radius: 100px;
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 520px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-ctas .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.6); }
.hero-ctas .btn-ghost:hover { background: rgba(255,255,255,.15); color: var(--white); }
.hero-dots {
  position: absolute; bottom: 10rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem; z-index: 2;
}
@media (max-width: 600px) {
  .hero-dots { bottom: 3rem; }
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: background .3s, transform .3s;
}
.dot.active { background: var(--white); transform: scale(1.3); }
.hero-scroll-hint {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ── Trust bar ── */
.trust-bar { background: var(--dark); padding: 1.5rem 2rem; }
.trust-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; color: var(--white); }
.trust-item strong { font-family: var(--font-serif); font-size: 1.75rem; color: var(--orange); }
.trust-item span { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 300; }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ── Sections ── */
.section { padding: 6rem 2rem; position: relative; isolation: isolate; }
.section-cream { background: var(--cream); }
.section-header {
  max-width: 1200px; margin: 0 auto 3.5rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.section-header-center {
  max-width: 1200px; margin: 0 auto 3.5rem; text-align: center;
}
.section-label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--orange); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--dark); line-height: 1.2;
}
.section-sub { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; margin-top: .75rem; }

/* ── Intereses Carousel ── */
.carousel-wrap {
  max-width: 1200px; margin: 0 auto;
  position: relative; display: flex; align-items: center; gap: 1rem;
}
.carousel-track {
  display: flex; gap: 1.25rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: .5rem 0 1rem;
  scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none; }
.int-card {
  flex: 0 0 300px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer;
  scroll-snap-align: start;
  transition: transform .25s, box-shadow .25s;
}
.int-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.int-card.active-interest { outline: 3px solid var(--orange); }
.int-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.int-card:hover img { transform: scale(1.04); }
.int-card-body { padding: 1.25rem 1.5rem; background: var(--white); }
.int-card-body h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--dark); margin-bottom: .4rem; }
.int-card-body p { font-size: .875rem; color: var(--text-light); line-height: 1.6; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--dark);
  transition: background .2s, color .2s, transform .15s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--orange); color: var(--white); transform: scale(1.08); }
.carousel-btn svg { width: 20px; height: 20px; }

/* ── Interest panel ── */
.interest-panel {
  max-width: 1200px; margin: 2.5rem auto 0;
  background: var(--cream); border-radius: 20px;
  border: 1px solid var(--border); padding: 2.5rem;
  animation: fadeSlide .35s ease;
}
@keyframes fadeSlide { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.interest-panel-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem;
}
.interest-panel-header h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dark); }
.interest-panel-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--border);
  font-size: 1.25rem; color: var(--text-light); display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.interest-panel-close:hover { background: var(--dark); color: var(--white); }
.interest-panel-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.ip-card {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow); cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.ip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ip-card img { width: 100%; height: 160px; object-fit: cover; transition: transform .4s; }
.ip-card:hover img { transform: scale(1.04); }
.ip-card-body { padding: 1rem 1.25rem; }
.ip-card-body h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--dark); margin-bottom: .25rem; }
.ip-card-body p { font-size: .8rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }
.ip-card-body .btn-primary { font-size: .8rem; padding: .55rem 1.1rem; }
.interest-panel-cta { text-align: center; margin-top: 2rem; }
@media (max-width: 768px) { .interest-panel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .interest-panel-grid { grid-template-columns: 1fr 1fr; } }

/* ── Equipo ── */
.equipo-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.equipo-card {
  text-align: center; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2.5rem 2rem;
  box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
}
.equipo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.equipo-card img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1.25rem; border: 3px solid var(--orange-pale);
}
.equipo-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--dark); margin-bottom: .35rem; }
.equipo-spec {
  display: inline-block; font-size: .75rem; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.equipo-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.equipo-flags { font-size: 1.4rem; letter-spacing: .25rem; }
@media (max-width: 768px) { .equipo-grid { grid-template-columns: 1fr; } }

/* ── Footer social ── */
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

/* ── Quiz ── */
.quiz-header { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.quiz-box {
  max-width: 760px; margin: 0 auto;
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-lg); padding: 2.5rem;
  border: 1px solid var(--border);
}
.quiz-progress {
  height: 4px; background: var(--border); border-radius: 2px; margin-bottom: .5rem;
}
.quiz-progress-fill {
  height: 100%; background: var(--orange); border-radius: 2px;
  width: 20%; transition: width .4s ease;
}
.quiz-progress-label { font-size: .8rem; color: var(--text-light); margin-bottom: 2rem; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 1.75rem; }
.quiz-options {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .875rem;
}
.quiz-options-3 { grid-template-columns: repeat(3, 1fr); }
.quiz-opt {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1rem; cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
}
.quiz-opt:hover { border-color: var(--orange); background: var(--orange-pale); transform: translateY(-2px); }
.quiz-opt.selected { border-color: var(--orange); background: var(--orange-pale); }
.opt-icon { font-size: 1.75rem; }
.opt-label { font-size: .9rem; font-weight: 600; color: var(--dark); }
.opt-sub { font-size: .75rem; color: var(--text-light); }
.quiz-dates-input {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.quiz-dates-input label {
  font-size: .82rem; font-weight: 600; color: var(--text-light);
}
.quiz-dates-input label span { font-weight: 400; }

/* Trigger */
.date-trigger {
  display: flex; align-items: center; gap: .75rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: .75rem 1rem; cursor: pointer; background: var(--white);
  transition: border-color .2s; user-select: none;
}
.date-trigger:hover, .date-trigger.active { border-color: var(--orange); }
.date-trigger > svg { color: var(--text-light); flex-shrink: 0; }
.date-trigger > span { flex: 1; font-size: .9rem; color: var(--text-light); transition: color .2s; }
.date-trigger.active > span { color: var(--dark); }
.date-clear {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--border); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.date-clear:hover { background: var(--dark); color: var(--white); }

/* Picker panel */
.date-picker {
  margin-top: .5rem; border: 1.5px solid var(--border);
  border-radius: 16px; background: var(--white);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.dp-nav {
  display: flex; align-items: flex-start; gap: .5rem; padding: 1.25rem 1rem 1rem;
}
.dp-arrow {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); color: var(--dark); margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.dp-arrow:hover { background: var(--orange-pale); color: var(--orange); }
.dp-months-wrap { flex: 1; display: flex; gap: 2rem; }
.dp-month { flex: 1; min-width: 0; }
.dp-month-title {
  text-align: center; font-size: .875rem; font-weight: 600;
  color: var(--dark); margin-bottom: .75rem;
}
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.dp-day-name {
  text-align: center; font-size: .68rem; font-weight: 600;
  color: var(--text-light); padding: .2rem 0 .4rem;
}
/* Cell wrapper — handles range fill */
.dp-cell {
  position: relative; display: flex;
  align-items: center; justify-content: center; padding: 2px 0;
}
.dp-cell::before {
  content: ''; position: absolute;
  top: 2px; bottom: 2px; left: 0; right: 0;
  pointer-events: none; z-index: 0;
}
.dp-cell-range::before { background: var(--orange-pale); }
.dp-cell-start::before { left: 50%; background: var(--orange-pale); }
.dp-cell-end::before { right: 50%; background: var(--orange-pale); }
.dp-cell-start.dp-cell-end::before { display: none; }
/* Day button */
.dp-day {
  position: relative; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; cursor: pointer; border: none;
  background: transparent; color: var(--dark); font-family: inherit;
  transition: background .12s, color .12s;
}
.dp-day:hover:not(:disabled) { background: var(--orange-pale); }
.dp-day.dp-today { font-weight: 700; color: var(--orange); }
.dp-day.dp-start, .dp-day.dp-end {
  background: var(--orange) !important; color: var(--white) !important;
  font-weight: 600;
}
.dp-day:disabled { color: #d1d5db; cursor: not-allowed; }
.dp-empty { pointer-events: none; }

/* Footer */
.dp-footer {
  border-top: 1px solid var(--border);
  padding: .875rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.dp-sel-text { font-size: .83rem; color: var(--text-light); }
.dp-sel-text.confirmed { color: var(--dark); font-weight: 500; }
.dp-confirm { padding: .5rem 1.25rem; font-size: .83rem; }

@media (max-width: 640px) {
  .dp-months-wrap { flex-direction: column; gap: 1.25rem; }
  .dp-day { width: 30px; height: 30px; font-size: .75rem; }
}

.quiz-nav { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 2rem; }
.quiz-nav .btn-primary:disabled { background: var(--border); color: var(--text-light); cursor: not-allowed; transform: none; box-shadow: none; }

/* Results */
.quiz-results { max-width: 1100px; margin: 3rem auto 0; }
.results-header { text-align: center; margin-bottom: 2.5rem; }
.results-header h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); margin-bottom: .75rem; }
.results-reason { color: var(--text-light); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.result-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--white);
  transition: transform .25s;
}
.result-card:hover { transform: translateY(-6px); }
.result-card img { width: 100%; height: 200px; object-fit: cover; }
.result-body { padding: 1.5rem; }
.result-rank { font-size: .75rem; font-weight: 700; color: var(--orange); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.result-body h4 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--dark); margin-bottom: .5rem; }
.result-why { font-size: .85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.25rem; }
.result-card .btn-primary { font-size: .85rem; padding: .7rem 1.5rem; }

/* ── Steps ── */
.steps-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.step-card {
  text-align: center; padding: 2.5rem 2rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--white); transition: box-shadow .2s;
}
.step-card:hover { box-shadow: var(--shadow-lg); }
.step-num { font-size: .75rem; font-weight: 700; color: var(--orange); letter-spacing: .15em; margin-bottom: 1.5rem; }
.step-icon svg { width: 56px; height: 56px; margin: 0 auto 1.25rem; }
.step-card h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--dark); margin-bottom: .75rem; }
.step-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

/* ── Nosotros ── */
.nosotros-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.nosotros-img-wrap { position: relative; }
.nosotros-img-wrap img {
  width: 100%; border-radius: 20px; object-fit: cover;
  height: 520px;
}
.nosotros-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--orange); color: var(--white);
  padding: 1.25rem 1.75rem; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.nosotros-badge strong { display: block; font-family: var(--font-serif); font-size: 2.25rem; line-height: 1; }
.nosotros-badge span { font-size: .8rem; opacity: .9; line-height: 1.4; }
.nosotros-content { padding-right: 1rem; }
.nosotros-lead { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; margin: 1rem 0 2rem; }
.nosotros-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.nosotros-list li { display: flex; gap: 1rem; align-items: flex-start; }
.nosotros-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0; margin-top: 2px;
}
.nosotros-list strong { display: block; color: var(--dark); font-weight: 600; margin-bottom: .25rem; }
.nosotros-list p { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ── Testimonios marquee ── */
.testi-marquee-wrap {
  overflow: hidden; cursor: grab; user-select: none;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.testi-marquee-wrap.paused .testi-row { animation-play-state: paused; }
.testi-row { display: flex; gap: 1.5rem; width: max-content; }
.testi-row-1 { animation: scroll-left 60s linear infinite; }
.testi-row-2 { animation: scroll-right 55s linear infinite; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.testi-card {
  width: 340px; flex-shrink: 0;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2rem;
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--orange); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card p { font-size: .9rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .875rem; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: .9rem; color: var(--dark); }
.testi-author span { font-size: .78rem; color: var(--text-light); }

/* ── Contact ── */
.contact-section {
  position: relative; padding: 7rem 2rem;
  display: flex; align-items: center; justify-content: center;
}
.contact-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.contact-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,46,.82);
}
.contact-content {
  position: relative; z-index: 2;
  max-width: 680px; width: 100%;
}
.section-label.light { color: rgba(255,255,255,.7); }
.section-title.light { color: var(--white); }
.section-sub.light { color: rgba(255,255,255,.7); }
.contact-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 10px;
  color: var(--white); padding: .875rem 1rem;
  font-size: .9rem; transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: rgba(255,255,255,.18); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; }

/* ── Footer ── */
.footer { background: var(--dark); color: var(--white); padding: 4rem 2rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 260px; }
.footer-links h4, .footer-contact h4 { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.6); margin-top: .75rem; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: var(--white);
  padding: .6rem 1.25rem; border-radius: 100px;
  font-size: .85rem; font-weight: 600;
  transition: opacity .2s;
}
.footer-wa:hover { opacity: .85; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--orange); transition: opacity .2s; }
.footer-bottom a:hover { opacity: .75; }

/* ── Language toggle ── */
.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 100px;
  padding: .28rem .72rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-sans);
  transition: background .2s, color .2s, border-color .2s;
}
#navbar.scrolled .lang-btn { color: var(--dark); border-color: rgba(26,36,64,.4); }
.lang-btn:hover { background: rgba(255,255,255,.15); }
#navbar.scrolled .lang-btn:hover { background: rgba(26,36,64,.07); }

/* ── Background decorations ── */
.bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.bg-deco .deco-icon {
  position: absolute;
  color: var(--dark);
  opacity: .055;
}

/* ── Fade animation ── */
.fade { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade.on { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nosotros-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros-img-wrap img { height: 380px; }
  .nosotros-badge { right: 1rem; bottom: -1rem; }
  .nosotros-content { padding-right: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ── Todos nuestros destinos ── */
.dest-header { margin-bottom: 1.5rem; }
.dest-subtitle { color: var(--text-light); margin-top: .4rem; font-size: 1rem; }
.dest-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 2.25rem;
}
.dest-pill {
  padding: .45rem 1.2rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 2rem;
  background: #fff;
  color: var(--text);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.dest-pill:hover { border-color: var(--orange); color: var(--orange); }
.dest-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.dest-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.dest-card-img { position: relative; height: 180px; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dest-card:hover .dest-card-img img { transform: scale(1.07); }
.dest-card-badge {
  position: absolute; top: .7rem; left: .7rem;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: .22rem .6rem;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
}
.dest-card-body { padding: 1rem 1.1rem 1.15rem; }
.dest-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: .2rem;
}
.dest-card-body p { font-size: .8rem; color: var(--text-light); margin-bottom: .75rem; }
.btn-dest {
  display: inline-block;
  padding: .38rem 1rem;
  background: var(--orange);
  color: #fff;
  border-radius: 2rem;
  font-size: .8rem; font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn-dest:hover { background: var(--orange-dark); }
.dest-more { text-align: center; margin-top: 2.5rem; }
.btn-ghost-orange {
  padding: .65rem 2rem;
  border: 2px solid var(--orange);
  border-radius: 2rem;
  background: transparent;
  color: var(--orange);
  font-size: .95rem; font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-ghost-orange:hover { background: var(--orange); color: #fff; }

@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .ham-btn { display: flex; }
  .steps-grid, .testi-grid, .results-grid { grid-template-columns: 1fr; }
  .quiz-options-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .int-card { flex: 0 0 260px; }
  .carousel-btn { display: none; }
  .carousel-track { padding: .5rem 1rem; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { gap: 1.5rem; display: grid; grid-template-columns: repeat(2, auto); justify-content: center; }
  .trust-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .quiz-box { padding: 1.75rem 1.25rem; }
  .quiz-options { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.75rem; }
}
