/* ============================================
   DUA Travel — Sistema de diseño global
   Extraído de index.html monolito
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* --- Variables --- */
:root {
  --blue-deep: #0a1628;
  --blue-dark: #0f2044;
  --blue-mid: #1a3a8f;
  --blue-brand: #2563eb;
  --blue-light: #60a5fa;
  --blue-pale: #93c5fd;
  --purple: #7c3aed;
  --purple-soft: #a78bfa;
  --red: #dc2626;
  --red-soft: #f87171;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-05: rgba(255,255,255,0.05);
}

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  background: var(--blue-deep);
  color: var(--white);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Background decorativo --- */
.bg-fixed {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(124,58,237,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(37,99,235,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(220,38,38,0.08) 0%, transparent 40%),
    var(--blue-deep);
  z-index: 0;
}

/* --- Aviones animados --- */
.plane { position: fixed; font-size: 1.5rem; opacity: 0.08; animation: fly linear infinite; z-index: 1; pointer-events: none; }
.plane:nth-child(1) { top: 12%; animation-duration: 24s; font-size: 2rem; }
.plane:nth-child(2) { top: 38%; animation-duration: 19s; animation-delay: -8s; font-size: 1.2rem; opacity: 0.12; }
.plane:nth-child(3) { top: 65%; animation-duration: 28s; animation-delay: -14s; font-size: 1.6rem; opacity: 0.06; }
.plane:nth-child(4) { top: 82%; animation-duration: 16s; animation-delay: -3s; font-size: 1rem; opacity: 0.1; }
@keyframes fly { from { transform: translateX(-5vw) rotate(-3deg); } to { transform: translateX(105vw) rotate(-3deg); } }

/* --- Estrellas --- */
.stars { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.star { position: absolute; width: 2px; height: 2px; background: white; border-radius: 50%; animation: twinkle ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0.05; } 50% { opacity: 0.5; } }

/* --- Layout --- */
.page { position: relative; z-index: 10; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  padding: 0 2rem;
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 80px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--white-70); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue-brand); color: white !important;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #1d4ed8; transform: translateY(-1px); }
.menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- Lang toggle --- */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--white-50);
  text-decoration: none; padding: 6px 12px;
  border: 1px solid var(--white-10); border-radius: 6px;
  transition: all 0.2s;
}
.lang-toggle:hover { color: var(--white); border-color: var(--white-20); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 64px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 2rem;
  padding: 4rem 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple-soft);
  margin: 0 auto;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero h1 em {
  font-style: normal; font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--white-50);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-10);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 11px; color: var(--white-50); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-brand), var(--purple));
  color: white;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.5); }
.btn-ghost {
  background: var(--white-05);
  border: 1px solid var(--white-20);
  color: var(--white-70);
}
.btn-ghost:hover { background: var(--white-10); border-color: var(--white-20); color: var(--white); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--purple-soft); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 0.5rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--white-50);
  max-width: 560px; font-weight: 300; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0.5rem auto 0; }
.accent-bar { width: 50px; height: 3px; background: linear-gradient(90deg, var(--red), var(--purple)); border-radius: 2px; margin: 1.5rem auto 0; }

/* ============================================
   SERVICIOS (cards grid)
   ============================================ */
#servicios { border-top: 1px solid var(--white-05); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: rgba(15,32,68,0.8);
  padding: 2rem 1.5rem;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.service-card:hover { background: rgba(26,58,143,0.3); }
a.service-card {
  border: 1.5px solid var(--white-10);
  border-radius: 12px;
  background: rgba(15,32,68,0.6);
}
a.service-card:hover { border-color: var(--blue-brand); }
a.service-card .service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--blue-light);
  margin-top: 0.8rem; letter-spacing: 0.05em;
}
a.service-card .service-cta::after { content: '→'; transition: transform 0.2s; }
a.service-card:hover .service-cta::after { transform: translateX(4px); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.service-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.service-desc { font-size: 13px; color: var(--white-50); line-height: 1.6; }

/* ============================================
   MIGRATORIO
   ============================================ */
#migratorio { border-top: 1px solid var(--white-05); }
.migra-box {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(37,99,235,0.1));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.migra-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem; font-weight: 700; color: var(--white);
  margin-bottom: 1rem;
}
.migra-content p { font-size: 15px; color: var(--white-70); line-height: 1.7; margin-bottom: 1rem; }
.migra-list { list-style: none; margin: 1.5rem 0; }
.migra-list li {
  font-size: 14px; color: var(--white-70);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--white-05);
  display: flex; align-items: center; gap: 10px;
}
.migra-list li::before { content: '✓'; color: var(--purple-soft); font-weight: 700; }
.migra-flag { font-size: 6rem; text-align: center; opacity: 0.7; }
.migra-flag span { display: block; font-size: 1rem; color: var(--white-50); margin-top: 0.5rem; }

/* ============================================
   POR QUÉ DUA
   ============================================ */
#porquedua { border-top: 1px solid var(--white-05); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  transition: transform 0.2s, border-color 0.2s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--white-20); }
.why-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 0.75rem;
}
.why-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.why-desc { font-size: 13px; color: var(--white-50); line-height: 1.5; }

/* ============================================
   PROCESO (steps)
   ============================================ */
#proceso { border-top: 1px solid var(--white-05); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step { text-align: center; padding: 0 1.5rem; position: relative; }
.step::after {
  content: '';
  position: absolute; top: 24px; left: 60%; right: -40%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-brand), var(--purple));
  opacity: 0.3;
}
.step:last-child::after { display: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-brand), var(--purple));
  color: white; font-weight: 700; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  position: relative; z-index: 2;
}
.step-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.step-desc { font-size: 12px; color: var(--white-50); line-height: 1.5; }

/* ============================================
   EQUIPO
   ============================================ */
#nosotros { border-top: 1px solid var(--white-05); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.team-member {
  background: rgba(15,32,68,0.6);
  border: 1.5px solid var(--white-10);
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-member:hover { border-color: var(--blue-brand); }
.team-member .team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--blue-brand);
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}
.team-member .team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-member .team-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.team-member .team-role { font-size: 12px; color: var(--purple-soft); font-weight: 500; margin-bottom: 0.5rem; }
.team-member .team-detail {
  font-size: 11px; color: var(--white-50); line-height: 1.4;
  display: flex; align-items: center; gap: 0.3rem;
}
.team-member .team-detail + .team-detail { margin-top: 2px; }
.team-member .team-detail svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.6; }
.team-bio { font-size: 13px; color: var(--white-50); line-height: 1.6; }
.team-story {
  text-align: center;
  font-size: 15px; font-style: italic;
  color: var(--white-50);
  max-width: 600px; margin: 0 auto;
  line-height: 1.8;
  padding: 2rem;
  border-top: 1px solid var(--white-10);
}

/* ============================================
   VIDEOS
   ============================================ */
#videos { border-top: 1px solid var(--white-05); }
.videos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.video-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
}
.video-card .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-card .video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-card .video-info {
  padding: 1.25rem 1.5rem;
}
.video-card .video-title {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 0.4rem;
}
.video-card .video-desc {
  font-size: 13px; color: var(--white-50); line-height: 1.5;
}

/* ============================================
   DESTINOS
   ============================================ */
#destinos { border-top: 1px solid var(--white-05); }
.dest-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.dest-tag {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--blue-pale);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.dest-tag:hover { background: rgba(37,99,235,0.25); transform: translateY(-2px); }
.flag { width: 20px; height: 20px; vertical-align: middle; margin-right: 4px; }

/* ============================================
   TESTIMONIOS
   ============================================ */
#testimonios { border-top: 1px solid var(--white-05); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.testimonial-text {
  font-size: 14px; font-style: italic; color: var(--white-50);
  line-height: 1.6; margin-bottom: 1rem;
}
.testimonial-author { font-size: 12px; color: var(--white-20); font-weight: 500; }

/* ============================================
   REDES SOCIALES
   ============================================ */
#redes { border-top: 1px solid var(--white-05); }
.social-grid { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-card {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 50px;
  text-decoration: none; font-size: 15px; font-weight: 600;
  transition: all 0.3s; border: 1px solid var(--white-10);
}
.social-card:hover { transform: translateY(-3px); }
.social-card svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-card.wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); color: #86efac; }
.social-card.wa:hover { background: rgba(37,211,102,0.2); }
.social-card.ig { background: rgba(131,58,180,0.12); border-color: rgba(131,58,180,0.3); color: #e9a8ff; }
.social-card.ig:hover { background: rgba(131,58,180,0.2); }
.social-card.fb { background: rgba(24,119,242,0.12); border-color: rgba(24,119,242,0.3); color: var(--blue-pale); }
.social-card.fb:hover { background: rgba(24,119,242,0.2); }
.social-card.tk { background: var(--white-05); border-color: var(--white-10); color: var(--white-70); }
.social-card.tk:hover { background: var(--white-10); }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid var(--white-05);
}
.cta-final h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 1rem;
}
.cta-final p { font-size: 1.05rem; color: var(--white-50); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-social { display: flex; gap: 12px; justify-content: center; margin-top: 2rem; }
.cta-social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white-10); border: 1px solid var(--white-10);
  color: var(--white-50); transition: all 0.2s; text-decoration: none;
}
.cta-social a:hover { background: var(--white-20); color: var(--white); transform: translateY(-2px); }
.cta-social a svg { width: 20px; height: 20px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  border-top: 1px solid var(--white-10);
  padding: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; color: var(--white-50);
}
.footer-brand em { color: var(--red); font-style: normal; }
.footer-info { font-size: 12px; color: var(--white-20); text-align: right; }
.footer-info a { color: var(--white-50); text-decoration: none; }

/* ============================================
   LANDING — Componentes de servicio (inspirados en diana.html)
   ============================================ */

/* --- Info Cards --- */
.info-card {
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  border-radius: 12px;
  padding: 28px 30px;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.info-card:hover { border-color: var(--blue-brand); }
.info-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 16px;
}
.info-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-90);
}
.info-card-badge {
  background: var(--blue-brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.info-card-body { font-size: 14px; color: var(--white-50); line-height: 1.7; }
.info-card-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 18px;
}
.info-card-label {
  color: var(--white-20);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.info-card-value {
  font-size: 14px;
  color: var(--white-90);
  font-weight: 500;
}

/* --- Timeline (proceso vertical) --- */
.timeline { position: relative; padding-left: 30px; margin-top: 24px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--white-10);
}
.timeline-item { position: relative; margin-bottom: 34px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue-brand);
  border: 3px solid var(--blue-deep);
  box-shadow: 0 0 0 2px var(--blue-brand);
}
.timeline-phase {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white-90);
  margin-bottom: 6px;
}
.timeline-body {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

/* --- Comparison block (antes/después) --- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.comparison-card {
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  border-radius: 12px;
  overflow: hidden;
}
.comparison-header {
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}
.comparison-card.before .comparison-header { background: rgba(220,38,38,0.3); }
.comparison-card.after .comparison-header { background: rgba(37,99,235,0.4); }
.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 24px;
  border-bottom: 1px solid var(--white-05);
  font-size: 14px;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-label { color: var(--white-50); }
.comparison-value {
  font-weight: 700;
  color: var(--white-90);
  font-family: 'Poppins', sans-serif;
}

/* --- Tags (badges) --- */
.tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.tag-blue { background: rgba(37,99,235,0.2); color: var(--blue-light); border: 1px solid rgba(37,99,235,0.3); }
.tag-green { background: rgba(5,150,105,0.2); color: #34d399; border: 1px solid rgba(5,150,105,0.3); }
.tag-amber { background: rgba(217,119,6,0.2); color: #fbbf24; border: 1px solid rgba(217,119,6,0.3); }
.tag-red { background: rgba(220,38,38,0.2); color: var(--red-soft); border: 1px solid rgba(220,38,38,0.3); }
.tag-purple { background: rgba(124,58,237,0.2); color: var(--purple-soft); border: 1px solid rgba(124,58,237,0.3); }

/* --- Callout (nota destacada) --- */
.callout {
  background: var(--white-05);
  border-left: 4px solid var(--blue-brand);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.7;
}
.callout-amber { border-left-color: #d97706; }
.callout-green { border-left-color: #059669; }
.callout strong { color: var(--white-90); }

/* --- Country / Feature cards (grid) --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.feature-card {
  background: var(--white-05);
  border: 1.5px solid var(--white-10);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--blue-brand); transform: translateY(-2px); }
.feature-card-icon { font-size: 2rem; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.feature-card-icon img.flag-icon { width: 32px; height: 32px; }
.feature-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white-90);
  margin-bottom: 8px;
}
.feature-card-body { font-size: 14px; color: var(--white-50); line-height: 1.65; }
.feature-card-tags { margin-top: 12px; }

/* --- Stat highlight --- */
.stat-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- Problem list (pain points) --- */
.problem-list { list-style: none; margin: 16px 0; }
.problem-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--white-05);
  font-size: 15px;
  color: var(--white-70);
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red-soft);
  font-weight: 700;
}

/* --- Solution list --- */
.solution-list { list-style: none; margin: 16px 0; }
.solution-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--white-05);
  font-size: 15px;
  color: var(--white-70);
}
.solution-list li:last-child { border-bottom: none; }
.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

/* --- Team card (nosotros) --- */
.team-card {
  background: rgba(15,32,68,0.6);
  border: 1.5px solid var(--white-10);
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: var(--blue-brand); }
.team-card-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-brand);
  margin-bottom: 1rem;
}
.team-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-90);
  margin-bottom: 2px;
}
.team-card-role {
  font-size: 13px;
  color: var(--blue-light);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-card-bio {
  font-size: 14px;
  color: var(--white-50);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(10,22,40,0.97);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--white-10);
  }
  .migra-box { grid-template-columns: 1fr; }
  .migra-flag { font-size: 4rem; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .step::after { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .videos-grid { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .info-card-detail { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  footer { flex-direction: column; text-align: center; }
  .footer-info { text-align: center; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
}
