/* ===========================================================
   CONSULTORES 365 — HOME v2
   Aligned to brief: Monda titulares, Avenir body,
   soft radii (6-8/4px), soft shadows, Lucide-style icons.
   =========================================================== */

@font-face { font-family:'Avenir LT'; src:url('fonts/AvenirLT-Light.ttf') format('truetype'); font-weight:300; font-display:swap; }
@font-face { font-family:'Avenir LT'; src:url('fonts/AvenirLT-Book.ttf') format('truetype'); font-weight:400; font-display:swap; }
@font-face { font-family:'Avenir LT'; src:url('fonts/AvenirLT-Roman.ttf') format('truetype'); font-weight:500; font-display:swap; }
@font-face { font-family:'Avenir LT'; src:url('fonts/AvenirLT-Medium.ttf') format('truetype'); font-weight:600; font-display:swap; }
@font-face { font-family:'Avenir LT'; src:url('fonts/AvenirLT-Heavy.ttf') format('truetype'); font-weight:800; font-display:swap; }
@font-face { font-family:'Avenir LT'; src:url('fonts/AvenirLT-Black.ttf') format('truetype'); font-weight:900; font-display:swap; }
@font-face { font-family:'Monda'; src:url('fonts/Monda-Regular.ttf') format('truetype'); font-weight:400; font-display:swap; }
@font-face { font-family:'Monda'; src:url('fonts/Monda-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }

:root {
  --c-blue:   #27619F;
  --c-navy:   #283E56;
  --c-green:  #8FBE95;
  --c-yellow: #EDD257;
  --c-orange: #D27B4C;
  --ink:      #1a1a1a;
  --text:     #283E56;
  --muted:    #666666;
  --line:     #E5E5E5;
  --soft:     #F8F9FA;
  --white:    #FFFFFF;

  --sans: 'Avenir LT', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --display: 'Monda', var(--sans);

  --r-card: 8px;
  --r-cta:  6px;
  --r-tag:  4px;

  --shadow-xs: 0 1px 2px rgba(40,62,86,.05);
  --shadow-sm: 0 2px 8px rgba(40,62,86,.06);
  --shadow-md: 0 6px 20px rgba(40,62,86,.08);
  --shadow-hero:0 18px 50px -20px rgba(40,62,86,.25);

  --max: 1200px;
  --gutter: clamp(20px, 3vw, 40px);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); font-weight: 400;
  color: var(--text); background: var(--white);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-family: var(--display); font-weight: 700; color: var(--c-navy); letter-spacing: -.01em; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-cta);
  font-family: var(--sans); font-weight: 800; font-size: 16px;
  letter-spacing: .01em; line-height: 1;
  transition: all .2s ease;
}
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-xl { padding: 18px 36px; font-size: 18px; }
.btn-primary { background: var(--c-blue); color: var(--white); }
.btn-primary:hover { background: var(--c-navy); }
.btn-outline { border: 2px solid var(--c-blue); color: var(--c-blue); padding: 12px 26px; }
.btn-outline:hover { background: var(--c-blue); color: var(--white); }
.btn-hero-primary { background: var(--white); color: var(--c-blue); }
.btn-hero-primary:hover { background: var(--c-navy); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn .ico-arrow { transition: transform .2s ease; }
.btn:hover .ico-arrow { transform: translateX(3px); }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-blue); font-weight: 700; font-size: 15px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.btn-link:hover { gap: 10px; border-color: var(--c-blue); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(170%) blur(12px);
  -webkit-backdrop-filter: saturate(170%) blur(12px);
  transition: box-shadow .2s ease, border-color .2s ease, transform .3s ease;
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.nav.hidden { transform: translateY(-100%); }
.nav.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.nav-logo { height: 28px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 14.5px; color: var(--c-navy);
  padding: 8px 0; position: relative;
}
.nav-links a::after {
  content:''; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 2px; background: var(--c-blue);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; gap: 16px; align-items: center; padding-right: env(safe-area-inset-right); }
.nav-cta .cta-short { display: none; }
.nav-cta .cta-long { display: inline; }
.lang-switch { font-family: var(--sans); font-size: 12.5px; font-weight: 700; color: var(--muted); letter-spacing: .05em; }
.lang-switch a { cursor: pointer; padding: 0 2px; }
.lang-switch a.on { color: var(--c-navy); }
.lang-switch span { color: var(--line); }
.menu-btn { display: none; width: 40px; height: 40px; border-radius: 6px; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  content:''; display: block; width: 20px; height: 2px; background: var(--c-navy);
}
.menu-btn span { position: relative; margin: 0 auto; }
.menu-btn span::before { position: absolute; left: 0; top: -6px; }
.menu-btn span::after  { position: absolute; left: 0; top:  6px; }

/* ---------- 1. HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  color: var(--white);
  padding: clamp(80px, 12vw, 150px) 0 clamp(90px, 12vw, 160px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; display: block; }
.hero-bg::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39,97,159,.4), rgba(40,62,86,.55));
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.pre-header {
  display: inline-block;
  font-family: var(--sans); font-weight: 600;
  font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5.8vw, 68px);
  line-height: 1.05; color: var(--white);
  letter-spacing: -.015em; text-wrap: balance;
  margin: 0 0 24px;
}
.hero h1 em { font-style: normal; color: var(--c-green); }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(255,255,255,.9); max-width: 64ch;
  line-height: 1.55; margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-ctas .btn-link { color: var(--white); border-color: transparent; }
.hero-ctas .btn-link:hover { color: var(--c-green); border-color: var(--c-green); }
.hero-proof {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,.85);
}
.hero-proof li { display: flex; align-items: center; gap: 8px; }

/* ---------- Sections base ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section.bg-soft { background: var(--soft); }
.sec-head { max-width: 860px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1;
  letter-spacing: -.01em; color: var(--c-navy);
  text-wrap: balance; margin: 0 0 16px;
}
.sec-head .sec-lede {
  font-size: 17.5px; color: var(--muted); line-height: 1.6; margin: 12px 0 0;
  max-width: 70ch;
}
.sec-head.center .sec-lede { margin-left: auto; margin-right: auto; }
.sec-head .sec-sub { font-size: 17px; color: var(--muted); margin: 8px 0 0; }
.sec-head .sec-sub em { font-style: italic; color: var(--c-primary); font-weight: 500; }
.sec-head.center .sec-sub { margin-left: auto; margin-right: auto; max-width: 56ch; }
.eyebrow {
  display: inline-block;
  font-family: var(--sans); font-weight: 700;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-blue); margin-bottom: 14px;
}
.center-cta { text-align: center; margin-top: 48px; }

/* ---------- 2. STAKES ---------- */
.stakes-intro {
  max-width: 820px; margin: 0 auto 44px;
  font-size: 17px; color: var(--muted); line-height: 1.7;
  text-wrap: pretty; text-align: center;
}
.stakes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.stakes-4 {
  grid-template-columns: repeat(3, 1fr);
}
.stake-deepfake {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(210,123,76,.04), rgba(237,210,87,.04)) !important;
  border-color: rgba(210,123,76,.35) !important;
}
.stake-deepfake em {
  font-style: italic; color: var(--c-orange); font-weight: 600;
}
.stake-deepfake h3 { color: var(--c-navy); }
.ico-wrap.danger { background: rgba(210,123,76,.15); color: var(--c-orange); }
.stake {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 28px 24px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.stake:hover { border-color: var(--c-blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ico-wrap {
  width: 52px; height: 52px; border-radius: var(--r-card);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.ico-wrap.warning { background: rgba(237,210,87,.18); color: var(--c-orange); }
.stake h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; color: var(--c-navy); margin: 0 0 10px; line-height: 1.25;
  letter-spacing: -.005em;
}
.stake p { font-size: 15.5px; color: var(--muted); margin: 0; line-height: 1.55; }

.stakes-closer {
  text-align: center; margin-top: 64px; margin-bottom: 8px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px); color: var(--c-navy);
}

/* ---------- 3. VALUE PROPOSITION ---------- */
.values {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 8px;
}
.value {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 28px 24px;
  transition: all .2s ease;
}
.value:hover { border-color: var(--c-blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ico-line {
  width: 52px; height: 52px; border-radius: var(--r-card);
  background: rgba(39,97,159,.08); color: var(--c-blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.ico-line.sm { width: 42px; height: 42px; margin-bottom: 14px; }
.value h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 19px; color: var(--c-navy); margin: 0 0 8px; line-height: 1.2;
}
.value p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ---------- 4. GUIDE ---------- */
.guide-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 72px; align-items: start;
}
.guide-grid.guide-solo { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
.guide-copy h2 { margin-bottom: 24px; text-wrap: balance; }
.guide-copy p { margin: 0 0 18px; color: var(--text); font-size: 17px; line-height: 1.7; }
.guide-copy p strong { color: var(--c-navy); font-weight: 900; }

.guide-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.photo-ph {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, rgba(39,97,159,.06) 0 12px, rgba(39,97,159,.02) 12px 13px),
    var(--soft);
  border-radius: var(--r-card);
  border: 1px dashed rgba(39,97,159,.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--muted); font-family: var(--sans); font-weight: 500; font-size: 13px;
  letter-spacing: .04em;
}
.testimonial {
  margin: 0; padding: 28px;
  background: var(--c-navy); color: var(--white);
  border-radius: var(--r-card);
  position: relative;
  box-shadow: var(--shadow-md);
}
.testimonial .quote { position: absolute; top: 18px; right: 20px; opacity: .35; }
.testimonial blockquote {
  font-family: var(--display); font-weight: 700;
  font-size: 19px; line-height: 1.35;
  color: var(--white); margin: 0 0 16px;
  text-wrap: balance;
}
.testimonial figcaption {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  color: var(--white); letter-spacing: .01em;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.2);
}
.testimonial figcaption span { font-weight: 400; color: rgba(255,255,255,.7); }

/* ---------- 5. PLAN ---------- */
.plan {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.plan-step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 32px 28px;
  transition: all .2s ease;
}
.plan-step:hover { border-color: var(--c-blue); box-shadow: var(--shadow-md); }
.plan-num {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 56px; line-height: 1; color: var(--c-blue);
  margin-bottom: 14px; letter-spacing: -.02em;
}
.plan-step h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 22px; color: var(--c-navy); margin: 0 0 10px; line-height: 1.2;
}
.plan-step p { font-size: 15.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ---------- 6. EXPLAIN ---------- */
.explain {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.explain h2 { margin-bottom: 22px; }
.explain p {
  font-size: 18px; color: var(--text); line-height: 1.75;
  margin: 0 0 22px; text-align: left;
}
.explain p strong { color: var(--c-navy); font-weight: 900; }

/* ---------- 7. PAQUETES ---------- */
.packages {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}
.pkg {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.pkg:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pkg.featured {
  border: 2px solid var(--c-blue);
  box-shadow: var(--shadow-hero);
  transform: translateY(-10px);
}
.pkg.featured:hover { transform: translateY(-14px); }
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-blue); color: var(--white);
  font-family: var(--sans); font-weight: 800; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
}
.pkg-ico {
  width: 52px; height: 52px; border-radius: var(--r-card);
  background: rgba(39,97,159,.08); color: var(--c-blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pkg-ico.featured { background: var(--c-blue); color: var(--white); }
.pkg h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 26px; color: var(--c-navy); margin: 0 0 6px;
}
.pkg-for {
  font-size: 14.5px; color: var(--muted); margin: 0 0 22px;
  font-style: italic; line-height: 1.45; min-height: 42px;
}
.pkg-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14.5px; color: var(--text);
}
.pkg-list li {
  position: relative; padding-left: 26px; line-height: 1.5;
}
.pkg-list li::before {
  content:''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--c-green);
  border-bottom: 2.5px solid var(--c-green);
  transform: rotate(-45deg);
}
.pkg-list li em {
  font-style: italic; color: var(--c-primary); font-weight: 500;
}
.pkg-price {
  font-family: var(--display); font-weight: 700;
  font-size: 28px; color: var(--c-navy);
  margin: auto 0 20px; padding-top: 20px;
  border-top: 1px solid var(--line);
  letter-spacing: -.01em;
}
.pkg-price small {
  display: inline-block;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  color: var(--muted); margin-left: 4px;
}
.pkg-bonus {
  margin: 14px 0 0; font-size: 13px; color: var(--c-green);
  line-height: 1.5; font-weight: 500;
}
.pkg-bonus strong { color: var(--c-navy); font-weight: 800; }

.pkg-filter {
  text-align: center; font-size: 14px; color: var(--muted);
  max-width: 720px; margin: 0 auto 32px; font-style: italic;
  line-height: 1.55;
}

.guarantee {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--soft);
  border-left: 4px solid var(--c-green);
  padding: 22px 26px; border-radius: 0 var(--r-card) var(--r-card) 0;
  max-width: 960px; margin: 0 auto;
}
.guarantee .g-ico { flex-shrink: 0; margin-top: 2px; }
.guarantee strong { color: var(--c-navy); font-family: var(--display); font-weight: 700; font-size: 17px; display: block; margin-bottom: 6px; }
.guarantee p { margin: 0; font-size: 15px; color: var(--text); line-height: 1.6; }

/* ---------- 8. JUNK DRAWER ---------- */
.junk {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.junk-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 24px;
  transition: all .2s ease;
}
.junk-item:hover { border-color: var(--c-blue); box-shadow: var(--shadow-sm); }
.junk-item h4 {
  font-family: var(--display); font-weight: 700;
  font-size: 16px; color: var(--c-navy); margin: 0 0 8px; line-height: 1.3;
}
.junk-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- 9. FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 24px; position: relative;
  font-family: var(--display); font-weight: 700;
  font-size: 17px; color: var(--c-navy); line-height: 1.4;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
  border: 1.5px solid var(--line); background: transparent;
  position: relative; transition: all .2s ease;
}
.faq-plus::before, .faq-plus::after {
  content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 10px; height: 1.6px; background: var(--c-navy);
  transition: transform .2s ease, opacity .2s ease;
}
.faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .faq-plus { background: var(--c-blue); border-color: var(--c-blue); }
.faq-item[open] .faq-plus::before, .faq-item[open] .faq-plus::after { background: var(--white); }
.faq-item[open] .faq-plus::after { transform: translate(-50%,-50%) rotate(0); opacity: 0; }
.faq-body { padding: 0 24px 24px 24px; }
.faq-body p { margin: 0; font-size: 15.5px; color: var(--muted); line-height: 1.7; max-width: 70ch; }

/* ---------- 10. CTA BAND ---------- */
.cta-band {
  background: var(--c-blue); color: var(--white);
  padding: clamp(64px, 9vw, 110px) 0 calc(clamp(64px, 9vw, 110px) + env(safe-area-inset-bottom));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(143,190,149,.15), transparent 55%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 3.8vw, 48px); line-height: 1.1;
  color: var(--white); max-width: 22ch; margin: 0 auto 16px;
  text-wrap: balance;
}
.cta-band p {
  max-width: 54ch; margin: 0 auto 36px;
  font-size: 18px; color: rgba(255,255,255,.9); line-height: 1.55;
}
.cta-band p.cta-micro {
  margin: 48px auto 0;
  font-size: 13px; color: rgba(255,255,255,.72);
  letter-spacing: .02em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-navy); color: rgba(255,255,255,.85);
  padding: 72px 0 calc(32px + env(safe-area-inset-bottom));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.footer-emails {
  margin: 0 0 18px; display: flex; flex-direction: column; gap: 14px;
  font-size: 13.5px; line-height: 1.4;
}
.footer-emails dt {
  color: rgba(255,255,255,.5); font-weight: 600; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px;
}
.footer-emails dd { margin: 0; }
.footer-emails dd a {
  color: rgba(255,255,255,.92); font-size: 14px; font-weight: 500;
  word-break: break-word; overflow-wrap: anywhere;
}
.footer-emails dd a:hover { color: var(--c-green); }
.footer-emails dd a.crisis-link { color: #FBD36A; font-weight: 700; }
.footer-emails dd a.crisis-link:hover { color: #FFE8A3; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo { height: 36px; width: auto; margin-bottom: 18px; display: block; }
.footer-col.brand p { font-size: 14.5px; color: rgba(255,255,255,.62); max-width: 36ch; line-height: 1.55; margin: 0; }
.footer h6 {
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,.85); cursor: pointer; transition: color .2s ease; }
.footer ul li a:hover { color: var(--c-green); }
.footer address {
  font-style: normal; font-size: 14px; color: rgba(255,255,255,.72);
  line-height: 1.6; margin: 0 0 14px;
}
.footer-contact { margin: 0 0 18px; font-size: 14px; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,.9); }
.footer-contact a:hover { color: var(--c-green); }
.socials { flex-direction: row !important; gap: 8px !important; }
.socials li a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.08); font-weight: 700; font-size: 12px;
  color: var(--white);
}
.socials li a:hover { background: var(--c-blue); color: var(--white); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.5);
}
.footer-bot a { cursor: pointer; }
.footer-bot a:hover { color: var(--c-green); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Floating CTA (mobile) ---------- */
.floating-cta {
  position: fixed; z-index: 45;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  display: none;
  align-items: center; gap: 8px;
  background: var(--c-blue); color: var(--white);
  padding: 14px 20px; border-radius: 999px;
  font-family: var(--sans); font-weight: 800; font-size: 15px;
  line-height: 1; letter-spacing: .01em;
  box-shadow: 0 10px 24px rgba(39,97,159,.35), 0 2px 6px rgba(0,0,0,.12);
  min-height: 48px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  pointer-events: none;
}
.floating-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta:active { background: var(--c-navy); }
@media (max-width: 720px) {
  .floating-cta { display: inline-flex; }
}

/* ---------- Focus states (a11y) ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--c-blue); outline-offset: 3px; border-radius: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; gap: 40px; }
  .guide-side { position: static; }
  .packages { grid-template-columns: 1fr; }
  .pkg.featured { transform: none; }
  .pkg.featured:hover { transform: translateY(-2px); }
  .junk { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-inner { height: 60px; gap: 10px; }
  .nav-links { display: none; }
  .menu-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .nav-right .lang-switch { display: none; }
  .nav-cta .cta-short { display: inline; }
  .nav-cta .cta-long { display: none; }
  .nav-cta { padding: 10px 14px; font-size: 13px; min-height: 44px; }
  .stakes, .stakes-4, .values, .plan, .junk { grid-template-columns: 1fr; }
  .stake-deepfake { grid-column: span 1; }
  .hero { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
  .hero-sub { font-size: 16px; line-height: 1.4; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 28px; }
  .hero-ctas .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero-proof { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bot { flex-direction: column; gap: 10px; }
  .faq-item summary { min-height: 56px; padding: 22px 18px; }
  .cta-band { padding-bottom: calc(110px + env(safe-area-inset-bottom)); } /* room for floating CTA */
  body { font-size: 16px; }

  /* Mobile menu open state */
  body.menu-open .nav-links {
    display: flex;
    position: fixed;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 1.25rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
    gap: 4px;
    box-shadow: 0 12px 32px rgba(40, 62, 86, .14);
    border-top: 1px solid rgba(0, 0, 0, .06);
    z-index: 100;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  body.menu-open .nav-links a {
    padding: 14px 4px;
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
  }
  body.menu-open .nav-links a:last-child { border-bottom: none; }
  body.menu-open .nav-links a::after { display: none; } /* kill underline anim on mobile */
  body.menu-open { overflow: hidden; }
  body.menu-open .menu-btn span { background: transparent; }
  body.menu-open .menu-btn span::before { transform: rotate(45deg) translate(4px, 4px); }
  body.menu-open .menu-btn span::after { transform: rotate(-45deg) translate(4px, -4px); }

}

/* Skip link — fuera del media query para que se oculte en TODOS los viewports */
.skip-link { position: absolute; left: -9999px; top: 0; background: #283E56; color: #fff; padding: .6rem 1rem; z-index: 9999; text-decoration: none; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; top: 0; outline: 2px solid #8FBE95; outline-offset: -2px; }
@media (prefers-color-scheme: dark) {
  /* Keep brand colors but slightly soften surfaces if user ever opens in dark mode. */
  /* (Site is light by design — this just avoids visual breakage.) */
}

/* ============================================================
   CONTACT FORM + MODAL — sección #contacto y modal global
   ============================================================ */
.btn-auditoria { cursor: pointer; }

.cf-section { padding: clamp(60px, 8vw, 110px) 0; background: #f7f9fc; }
.cf-section .container { max-width: 1100px; }
.cf-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 820px) { .cf-grid { grid-template-columns: 1fr; } }

.cf-form { background: #fff; border-radius: 14px; padding: clamp(24px, 3vw, 36px); box-shadow: 0 12px 40px rgba(40,62,86,.08); border: 1px solid rgba(40,62,86,.06); }
.cf-form .cf-row { margin-bottom: 18px; }
.cf-form label { display: block; font-weight: 600; margin-bottom: 6px; color: #283E56; font-size: 14px; line-height: 1.3; }
.cf-form .cf-radios-label { display: block; font-weight: 600; margin-bottom: 10px; color: #283E56; font-size: 14px; }

.cf-form input[type=text], .cf-form input[type=email], .cf-form input[type=tel], .cf-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid rgba(40,62,86,.2);
  border-radius: 8px; font: inherit; color: #283E56; background: #fff;
  transition: border-color .15s, box-shadow .15s; box-sizing: border-box;
}
.cf-form input[type=text]:focus, .cf-form input[type=email]:focus, .cf-form input[type=tel]:focus, .cf-form textarea:focus {
  outline: none; border-color: #27619F; box-shadow: 0 0 0 3px rgba(39,97,159,.12);
}
.cf-form input:invalid:not(:placeholder-shown) { border-color: #d27b4c; }
.cf-form textarea { min-height: 110px; resize: vertical; }

.cf-form .cf-radios { display: flex; flex-direction: column; gap: 10px; }
.cf-form .cf-radio {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 1.5px solid rgba(40,62,86,.18); border-radius: 10px;
  cursor: pointer; transition: border-color .15s, background .15s;
  font-size: 14px; line-height: 1.4;
}
.cf-form .cf-radio small { color: rgba(40,62,86,.7); font-weight: 400; font-size: 12.5px; }
.cf-form .cf-radio:hover { border-color: #27619F; background: rgba(39,97,159,.04); }
.cf-form .cf-radio input[type=radio] { margin-top: 3px; accent-color: #27619F; flex-shrink: 0; cursor: pointer; }
.cf-form .cf-radio.is-active { border-color: #27619F; background: rgba(39,97,159,.06); }
.cf-form .cf-radio span strong { color: #283E56; font-weight: 700; }

.cf-form .cf-privacy { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: rgba(40,62,86,.85); line-height: 1.4; }
.cf-form .cf-privacy input[type=checkbox] { margin-top: 3px; accent-color: #27619F; flex-shrink: 0; cursor: pointer; }
.cf-form .cf-privacy label { font-weight: 400; margin: 0; color: rgba(40,62,86,.85); cursor: pointer; }
.cf-form .cf-privacy a { color: #27619F; text-decoration: underline; }

/* Honeypot — invisible para humanos */
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-form button[type=submit] {
  background: #283E56; color: #EDD257; font-weight: 800;
  padding: 14px 28px; border: none; border-radius: 8px;
  cursor: pointer; min-height: 50px; font-family: inherit; font-size: 16px;
  width: 100%; transition: background .15s, opacity .15s;
}
.cf-form button[type=submit]:hover:not(:disabled) { background: #1f3147; }
.cf-form button[type=submit]:disabled { opacity: .55; cursor: wait; }
.cf-form button[type=submit]:focus-visible { outline: 3px solid #EDD257; outline-offset: 2px; }
.cf-form .cf-note { font-size: 12.5px; color: rgba(40,62,86,.65); margin: 10px 0 0; text-align: center; }

.cf-status { margin-top: 14px; padding: 12px 14px; border-radius: 8px; font-size: 14px; line-height: 1.4; }
.cf-status.is-error { background: #fdecec; color: #a31515; border-left: 3px solid #a31515; }

.cf-success {
  padding: 32px; background: #eaf5ec; border-left: 4px solid #8FBE95;
  border-radius: 8px; outline: none;
}
.cf-success h3 { margin: 0 0 10px; color: #283E56; font-size: 1.4rem; }
.cf-success p { margin: 0 0 8px; color: #283E56; line-height: 1.5; }
.cf-success p:last-child { margin-bottom: 0; }
.cf-success a { color: #27619F; }

/* Aside con emails institucionales */
.cf-aside { padding-top: 8px; }
.cf-aside h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin: 0 0 12px; color: #283E56; line-height: 1.2; }
.cf-aside > p { color: rgba(40,62,86,.78); margin: 0; }
.cf-aside .cf-emails { list-style: none; padding: 0; margin: 24px 0 0; }
.cf-aside .cf-emails li { padding: 14px 0; border-top: 1px solid rgba(40,62,86,.1); }
.cf-aside .cf-emails strong { display: block; color: #283E56; font-size: 14px; margin-bottom: 4px; }
.cf-aside .cf-emails a { color: #27619F; text-decoration: none; word-break: break-all; font-size: 15px; }
.cf-aside .cf-emails a:hover { text-decoration: underline; }

/* ============ MODAL ============ */
.cf-modal-backdrop {
  position: fixed; inset: 0; background: rgba(20, 30, 45, .55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  z-index: 9500; display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; transition: opacity .2s;
  overflow-y: auto;
}
.cf-modal-backdrop.is-open { opacity: 1; }
.cf-modal {
  background: #fff; border-radius: 14px; max-width: 580px; width: 100%;
  max-height: calc(100vh - 32px); overflow-y: auto;
  transform: translateY(20px); transition: transform .25s ease-out;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  margin: auto;
}
.cf-modal-backdrop.is-open .cf-modal { transform: translateY(0); }
.cf-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0; gap: 12px;
}
.cf-modal-header h2 { margin: 0; font-size: 1.3rem; color: #283E56; line-height: 1.2; }
.cf-modal-close {
  background: none; border: none; font-size: 28px; cursor: pointer;
  color: #283E56; width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 0; line-height: 1;
}
.cf-modal-close:hover { background: rgba(40,62,86,.08); }
.cf-modal-close:focus-visible { outline: 2px solid #27619F; outline-offset: 2px; }
.cf-modal-body { padding: 16px 24px 24px; }
.cf-modal .cf-form { box-shadow: none; padding: 0; border: none; background: transparent; }

@media (prefers-reduced-motion: reduce) {
  .cf-modal-backdrop, .cf-modal { transition: none; transform: none; }
  .cf-form input, .cf-form textarea, .cf-form .cf-radio, .cf-form button[type=submit] { transition: none; }
}

