/* ═══════════════════════════════════════════════
   IDC Honduras — main.css
   Alex Toro
   www.alextoro.lat
   ═══════════════════════════════════════════════ */

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

/* ─────────────────────────────────────────────
   TOKENS
   ───────────────────────────────────────────── */
:root {
  --c-bg:       #f5f7fa;
  --c-white:    #ffffff;
  --c-surface:  #eef1f6;
  --c-card:     #ffffff;
  --c-border:   #dde3ec;
  --c-text:     #1a2636;
  --c-muted:    #5a6a7e;
  --c-dim:      #8fa0b5;
  --c-accent:   #FDC42E;
  --c-accent2:  #e6b020;
  --c-green:    #99C733;
  --c-green2:   #126519;
  --c-primary:  #124489;
  --c-primary2: #0F2C5F;
  --c-blue:     #0F2C5F;
  --c-dark:     #08192e;
  --r:          8px;
  --nav-h:      68px;
  --pad-x:      clamp(20px, 6vw, 100px);
  --pad-sec:    clamp(72px, 9vw, 120px);
}

/* ─────────────────────────────────────────────
   BASE
   ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Urbanist', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 2px; }

/* ─────────────────────────────────────────────
   NAV
   Estado base   -> transparente (index sobre hero)
   .scrolled     -> blanco, via JS al hacer scroll
   .nav--solid   -> blanco fijo (paginas internas)
   ───────────────────────────────────────────── */
nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background .35s, box-shadow .35s;
  background: rgba(0,0,0,0);
  margin-top:5px;
}
nav.scrolled,
nav.nav--solid {
  background: rgba(255,255,255,1);
  box-shadow: 0 1px 0 var(--c-border);
  backdrop-filter: blur(16px);
    margin-top:0px;
}

.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; flex-shrink:0; }
.nav-logo-img {
  height: 45px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .35s, height .35s;
}
nav.scrolled .nav-logo-img,
nav.nav--solid .nav-logo-img { filter: none; height: 36px; }

.nav-links { display:flex; align-items:center; list-style:none; gap:4px; }
.nav-links a {
  font-size: 17px; color: rgba(255,255,255,.82);
  text-decoration: none; padding: 8px 14px;
  border-radius: 6px; font-weight: 600; white-space: nowrap;
  transition: color .2s, background .2s;
}
nav.scrolled .nav-links a,
nav.nav--solid .nav-links a { color: var(--c-muted); }
.nav-links a:hover { background: rgba(255,255,255,.12); color: #fff; }
nav.scrolled .nav-links a:hover,
nav.nav--solid .nav-links a:hover { background: var(--c-surface); color: var(--c-text); }

.nav-btn { background: var(--c-primary)!important; color: #fff!important; padding: 9px 20px!important; border-radius: 6px; }
.nav-btn:hover { background: var(--c-green2)!important; }

/* Nav active — mismo efecto que hover */
nav.scrolled .nav-links li.active > a,
nav.nav--solid .nav-links li.active > a {
  background: var(--c-surface);
  color: var(--c-text) !important;
}
nav:not(.scrolled):not(.nav--solid) .nav-links li.active > a {
  background: rgba(255,255,255,.12);
  color: #fff !important;
}

.nav-burger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:6px; }
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, background .3s;
}
nav.scrolled .nav-burger span,
nav.nav--solid .nav-burger span { background: var(--c-text); }

@media (max-width:860px) {
  .nav-burger { display:flex; }
    .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: auto;
    z-index: 600;  
    background: #fff;
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 0; transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid var(--c-border);
    padding: 8px 0 32px; 
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 16px !important;
    color: var(--c-text) !important;
    padding: 15px 28px !important;
    display: block;
    border-bottom: 1px solid var(--c-border);
    border-radius: 0 !important;
    background: none !important;
  }
  .nav-links a:hover,
  .nav-links li.active > a {
    background: var(--c-surface) !important;
    color: var(--c-primary) !important;
  }
  .nav-links li:last-child { padding: 20px 28px 0; }
  .nav-links li:last-child a {
    background: var(--c-primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
    border-bottom: none !important;
    text-align: center;
    padding: 14px 20px !important;
  }
  .nav-links li:last-child a:hover {
    background: var(--c-primary2) !important;
    color: #fff !important;
  }
  
  .nav-burger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
    .nav-burger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .nav-burger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }
    
    .nav-logo-img {
      height: 30px;
    }
    nav.scrolled .nav--solid,
    nav.scrolled .nav-logo-img{
        height:25px;
    }
    nav.nav--solid .nav-logo-img {
        height:30px;
    }
}

/* ─────────────────────────────────────────────
   SECTION HELPERS
   ───────────────────────────────────────────── */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-primary); margin-bottom: 14px;
}
.sec-eyebrow::before { content:''; width:18px; height:1.5px; background:var(--c-primary); }
.sec-h2 {
  font-size: clamp(26px,3.2vw,46px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1;
  color: var(--c-text); margin-bottom: 14px;
}
.sec-sub { font-size:15px; color:var(--c-muted); font-weight:400; line-height:1.7; max-width:500px; }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--r);
  font-family: 'Urbanist', sans-serif; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .2s; letter-spacing: -.01em;
}
.btn-fill { background: var(--c-primary); color: #fff; }
.btn-fill:hover { background: var(--c-primary2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(18,68,137,.3); }
.btn-ghost { background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   FORMS  (compartido index + contacto)
   ───────────────────────────────────────────── */
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.fld { display:flex; flex-direction:column; gap:6px; }
.fld.full { grid-column:1/-1; }
.fld label { font-size:11px; font-weight:700; color:var(--c-muted); letter-spacing:.08em; text-transform:uppercase; }
.fld input, .fld select, .fld textarea {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  border-radius: 8px; padding: 12px 14px;
  font-family: 'Urbanist', sans-serif; font-size: 14px; color: var(--c-text);
  outline: none; transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none; line-height: 1.5;
}
.fld input::placeholder, .fld textarea::placeholder { color: var(--c-dim); }
.fld textarea { resize: vertical; min-height: 110px; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  border-color: var(--c-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(18,68,137,.08);
}
.sel-wrap { position:relative; }
.sel-wrap::after {
  content:''; position:absolute; right:14px; top:50%;
  transform:translateY(-30%); border:5px solid transparent;
  border-top-color:var(--c-muted); pointer-events:none;
}
.fld select { cursor:pointer; width:100%; }

.form-submit {
  width:100%; margin-top:18px; padding:14px;
  background: var(--c-primary); color:#fff; border:none; border-radius:9px;
  font-family:'Urbanist',sans-serif; font-size:15px; font-weight:700;
  cursor:pointer; transition:background .2s,transform .2s,box-shadow .2s;
  display:flex; align-items:center; justify-content:center; gap:10px;
}
.form-submit:hover { background:var(--c-primary2); transform:translateY(-2px); box-shadow:0 12px 32px rgba(18,68,137,.28); }
.form-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; box-shadow:none; }
.form-submit svg { width:17px; height:17px; stroke:#fff; }

.form-msg { display:none; margin-top:16px; padding:14px 18px; border-radius:9px; font-size:14px; font-weight:600; line-height:1.5; }
.form-msg.ok  { background:#eafaf1; color:#1a7a3a; border:1px solid #a8e6bf; display:block; }
.form-msg.err { background:#fef2f2; color:#9b1c1c; border:1px solid #fca5a5; display:block; }

/* Radio pills (contacto.php) */
.radio-group { display:flex; gap:8px; flex-wrap:wrap; }
.radio-pill input { display:none; }
.radio-pill label {
  display:inline-block; padding:8px 16px; border-radius:10px;
  border:1.5px solid var(--c-border); font-size:13px; font-weight:600;
  color:var(--c-muted); cursor:pointer; transition:all .2s;
}
.radio-pill input:checked + label { background:var(--c-primary); border-color:var(--c-primary); color:#fff; }
.radio-pill label:hover { border-color:var(--c-primary); color:var(--c-primary); }

@media (max-width:860px) { .form-grid { grid-template-columns:1fr; } }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
footer { background: #0a1e3d; overflow: hidden; }
.footer-body { display:grid; grid-template-columns:1fr 1.5fr; min-height:420px; }

.footer-left {
  padding: 56px var(--pad-x) 40px;
  display: flex; flex-direction: column; gap: 28px;
  background: #0d2548; border-right: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display:inline-flex; align-items:center; text-decoration:none; }
.footer-brand-text { font-size:14px; color:rgba(255,255,255,.38); line-height:1.8; max-width:400px; }

.footer-socials { display:flex; gap:9px; }
.fsoc {
  width:30px; height:30px; background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12); border-radius:10%;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.42); text-decoration:none; transition:all .2s;
}
.fsoc svg { width:13px; height:13px; }
.fsoc:hover { background:rgba(18,68,137,.2); border-color:rgba(18,68,137,.5); color:#6fa8e8; }

.footer-ci-list { display:flex; flex-direction:column; gap:10px; }
.fci { display:flex; align-items:flex-start; gap:9px; font-size:14px; color:rgba(255,255,255,.38); line-height:1.5; }
.fci svg { width:13px; height:13px; stroke:var(--c-primary); flex-shrink:0; margin-top:2px; }
.fci a { color:rgba(255,255,255,.38); text-decoration:none; transition:color .2s; }
.fci a:hover { color:#6fa8e8; }

.footer-copy { font-size:13px; color:rgba(255,255,255,.22); margin-top:auto; padding-top:16px; }
.footer-right-wrap { display:flex; flex-direction:column; justify-content:space-between; }
.footer-right {
  padding: 56px clamp(36px,5vw,80px) 40px;
  display: flex; flex-direction: column; justify-content: center; flex:1; gap:28px;
}
.footer-headline {
  font-size: clamp(30px,4vw,58px); font-weight: 900;
  line-height: 1.0; letter-spacing: -.04em;
  background: #fff;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: .02em;
  transition: gap .25s, color .2s; position: relative; width: fit-content;
}
.footer-cta-link::after { content:''; position:absolute; bottom:-3px; left:50%; right:50%; height:1.5px; background:rgba(255,255,255,.5); transition:left .25s,right .25s; }
.footer-cta-link:hover { gap:18px; color:#6fa8e8; }
.footer-cta-link:hover::after { left:0; right:0; background:#6fa8e8; }
.footer-cta-arrow {
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s,border-color .2s; flex-shrink:0;
}
.footer-cta-link:hover .footer-cta-arrow { background:rgba(18,68,137,.25); border-color:rgba(18,68,137,.5); }
.footer-cta-arrow svg { width:14px; height:14px; stroke:#fff; }

.footer-bottom {
  display:flex; align-items:center; justify-content:flex-end;
  gap:24px; padding:18px clamp(36px,5vw,80px) 22px;
  border-top:1px solid rgba(255,255,255,.08); flex-wrap:wrap;
}
.footer-bottom-email {
  font-size:14px; color:rgba(255,255,255,.35);
  text-decoration:none; transition:color .2s; margin-right:auto; position:relative;
}
.footer-bottom-email::after { content:''; position:absolute; bottom:-2px; left:50%; right:50%; height:1px; background:var(--c-primary); transition:left .25s,right .25s; }
.footer-bottom-email:hover { color:#6fa8e8; }
.footer-bottom-email:hover::after { left:0; right:0; }

.footer-nav { display:flex; gap:24px; list-style:none; flex-wrap:wrap; }
.footer-nav a { font-size:14px; color:rgba(255,255,255,.35); text-decoration:none; transition:color .2s; position:relative; }
.footer-nav a::after { content:''; position:absolute; bottom:-2px; left:50%; right:50%; height:1px; background:var(--c-primary); transition:left .25s,right .25s; }
.footer-nav a:hover { color:#6fa8e8; }
.footer-nav a:hover::after { left:0; right:0; }
.text-accent {
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green2) 100%);
  -webkit-background-clip: text;
}
@media (max-width:860px) {
  .footer-body { grid-template-columns:1fr; }
  .footer-left { border-right:none; border-bottom:1px solid rgba(255,255,255,.08); padding-bottom:40px; }
  .footer-right { padding-top:40px; }
  .footer-headline { font-size:clamp(28px,8vw,46px); }
  .footer-bottom { justify-content:flex-start; }
}


/* ─────────────────────────────────────────────
   FABs — base compartida (solo dimensiones/forma)
   ───────────────────────────────────────────── */
.fab {
  width: 50px; height: 50px; border-radius: 10%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────────────
   SPEED DIAL — contenedor fixed
   ───────────────────────────────────────────── */
.fab-dial {
  position: fixed; right: 24px; bottom: 84px; z-index: 600;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

/* Ítems ocultos por defecto */
.fab-dial-item {
  opacity: 0; pointer-events: none;
  transform: translateY(8px) scale(.88);
  transition: opacity .2s, transform .2s;
}
.fab-dial.open .fab-dial-item {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.fab-dial.open .fab-wa        { transition-delay: .06s; }
.fab-dial.open .fab-call-item { transition-delay: .02s; }

/* Botón principal — teléfono azul con glow */
.fab-call {
  background: var(--c-primary);
  box-shadow: 0 6px 20px rgba(18,68,137,.4);
  animation: glow 3s infinite;
}
.fab-call svg { stroke: #fff; fill: none; }

.fab-dial-icon-close { display: none; }
.fab-dial.open .fab-dial-icon-phone { display: none; }
.fab-dial.open .fab-dial-icon-close { display: block; }
.fab-dial.open .fab-call { animation: none; background: var(--c-primary2); }

/* WhatsApp */
.fab-wa { background: #25d366; box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.fab-wa svg { fill: #fff; }
.fab-wa:hover { background: #1ebe5d; }

/* Llamar */
.fab-call-item { background: var(--c-primary); box-shadow: 0 6px 20px rgba(18,68,137,.4); }
.fab-call-item svg { stroke: #fff; fill: none; }
.fab-call-item:hover { background: var(--c-primary2); }

@keyframes glow {
  0%,100% { box-shadow: 0 6px 20px rgba(18,68,137,.4); }
  50%      { box-shadow: 0 6px 30px rgba(18,68,137,.65), 0 0 0 9px rgba(18,68,137,.08); }
}

/* Tooltips */
.fab-tip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-text); color: #fff;
  font-family: 'Urbanist', sans-serif; font-size: 12px; font-weight: 500;
  white-space: nowrap; padding: 6px 12px; border-radius: 6px;
  pointer-events: none; opacity: 0; transition: opacity .2s, transform .2s;
}
.fab-dial-item:hover .fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ─────────────────────────────────────────────
   FAB BACK TO TOP 
   ───────────────────────────────────────────── */
.fab-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 601;
  background: var(--c-white); border: 1px solid var(--c-border);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top svg { width: 18px; height: 18px; stroke: var(--c-text); fill: none; }

@media (max-width:500px) {
  .fab-dial { right: 16px; bottom: 86px; }
  .fab-top  { right: 16px; bottom: 24px; z-index: 601; }
  .fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
}
/* ─────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────── */
.sr { opacity:0; transform:translateY(24px); transition:opacity .65s ease,transform .65s ease; }
.sr.d1 { transition-delay:.1s; }
.sr.d2 { transition-delay:.2s; }
.sr.d3 { transition-delay:.3s; }
.sr.d4 { transition-delay:.4s; }
.sr.on { opacity:1; transform:translateY(0); }

/* ─────────────────────────────────────────────
   PAGE LOADER
   ───────────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.pl-logo img {
  height: 84px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  animation: plPulse 1.4s ease-in-out infinite;
}
@keyframes plPulse {
  0%,100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .55; transform: scale(.95); }
}
.pl-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,.12); border-radius: 99px; overflow: hidden;
}
.pl-bar span {
  display: block; height: 100%;
  background: var(--c-primary);
  border-radius: 99px;
  width: 0%;
  transition: width .3s ease;
}


/* ═══════════════════════════════════════════════
   INDEX — HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg-wrap {
  position: absolute;
  inset: clamp(12px,2vw,24px);
  top: calc(var(--nav-h) + clamp(12px,2vw,24px));
  border-radius: 20px; overflow: hidden; z-index: 0;
}
.hero-bg-wrap img { width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.75); }
.hero-bg-wrap::after {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(0,0,0,.32) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.05) 100%),
    linear-gradient(to top,   rgba(0,0,0,.2)  0%, rgba(0,0,0,0)   50%);
}
.hero-content {
  position:relative; z-index:2;
  display:flex; flex-direction:column; justify-content:center; flex:1;
  padding:90px var(--pad-x) 0; max-width:740px;
}
.hero-h1 { font-size:clamp(42px,5.5vw,80px); font-weight:900; line-height:1.03; letter-spacing:-.035em; color:#fff; margin-bottom:22px; }
.hero-h1 .line { display:block; overflow:hidden; }
.hero-h1 .word { display:inline-block; animation:wUp .75s cubic-bezier(.16,1,.3,1) both; }
.hero-h1 .acc {
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green2) 100%); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  isolation:isolate; padding-bottom:0.05em;
}
.w1{animation-delay:.1s} .w2{animation-delay:.2s} .w3{animation-delay:.3s} .w4{animation-delay:.4s} .w5{animation-delay:.5s}
@keyframes wUp { from{transform:translateY(105%);opacity:0} to{transform:translateY(0);opacity:1} }

.hero-desc {
  font-size:clamp(14px,1.3vw,16px); color:rgba(255,255,255,.65);
  font-weight:400; line-height:1.75; max-width:420px; margin-bottom:38px;
  opacity:0; animation:fUp .8s .65s forwards;
}
@keyframes fUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; opacity:0; animation:fUp .8s .8s forwards; }

.hero-bottom {
  position:relative; z-index:2;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:32px var(--pad-x) clamp(28px,4vw,52px); flex-wrap:wrap;
}
.hero-stats { display:flex; gap:40px; flex-wrap:wrap; opacity:0; animation:fUp .8s 1s forwards; }
.stat-num { font-size:34px; font-weight:800; color:#fff; letter-spacing:-.04em; line-height:1; }
.stat-num em { font-style:normal; color:var(--c-primary); }
.stat-lbl { font-size:10px; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.1em; margin-top:4px; font-weight:500; }

.brand-pills { display:flex; gap:10px; flex-wrap:wrap; opacity:0; animation:fUp .8s 1.1s forwards; }
.brand-pill {
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:10px; padding:10px 16px 10px 10px;
  cursor:pointer; text-decoration:none; color:inherit;
  transition:background .25s,border-color .25s;
}
.brand-pill:hover { background:rgba(18,68,137,.15); border-color:rgba(18,68,137,.4); }
.brand-pill-logo { width:44px; height:30px; border-radius:5px; overflow:hidden; background:#fff; flex-shrink:0; }
.brand-pill-logo img { width:100%; height:100%; object-fit:cover; }
.brand-pill-name { font-size:12px; font-weight:600; color:rgba(255,255,255,.9); }

@media (max-width:860px) {
  .hero-bg-wrap { inset:clamp(8px,2vw,16px); top:calc(var(--nav-h) + clamp(8px,2vw,16px)); border-radius:14px; }
  .hero-content { padding:40px var(--pad-x) 0; max-width:100%; }
  .hero-bottom { flex-direction:column; align-items:flex-start; gap:20px; }
}
@media (max-width:500px) { .brand-pill-name { display:none; } }

/* Panel logos vertical — hero */
.hero-brands-panel {
  position: absolute;
  right: clamp(28px, 4vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-brand-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px 30px 24px 24px;
  text-decoration: none;
  transition: background .25s, border-color .25s, transform .2s;
  animation: fUp .8s 1.1s both;
}
.hero-brand-item:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  transform: translateX(-4px);
}
.hero-brand-logo {
  width: 110px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.hero-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}
/* Ocultar brand-pills del hero-bottom (reemplazado por panel) */
.hero .brand-pills { display: none; }
@media (max-width: 860px) {
  .hero-brands-panel { display: none; }
  .hero .brand-pills { display: flex; }
}

/* ═══════════════════════════════════════════════
   INDEX — BRANDS
   ═══════════════════════════════════════════════ */
#brands { background:var(--c-white); padding:var(--pad-sec) var(--pad-x); }
.brands-top { display:flex; align-items:flex-end; justify-content:space-between; gap:32px; margin-bottom:48px; flex-wrap:wrap; }
.brands-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.brand-card {
  background:var(--c-card); border:1px solid var(--c-border); border-radius:14px;
  overflow:hidden; text-decoration:none; color:inherit; display:flex; flex-direction:column;
  transition:transform .3s,box-shadow .3s;
}
.brand-card:hover { transform:translateY(-6px); box-shadow:0 20px 56px rgba(0,0,0,.09); }
.brand-card-img { width:100%; aspect-ratio:16/9; overflow:hidden; }
.brand-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .55s; filter:brightness(.9); }
.brand-card:hover .brand-card-img img { transform:scale(1.05); filter:brightness(1); }
.brand-card-body { padding:22px 24px 26px; flex:1; display:flex; flex-direction:column; }
.brand-card-name { font-size:17px; font-weight:700; color:var(--c-text); margin-bottom:8px; letter-spacing:-.01em; }
.brand-card-desc { font-size:13px; color:var(--c-muted); line-height:1.65; flex:1; margin-bottom:18px; }
.brand-card-cta {
  display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:600;
  color:var(--c-primary); letter-spacing:.06em; text-transform:uppercase;
  transition:gap .2s; position:relative; width:fit-content;
}
.brand-card-cta::after { content:''; position:absolute; bottom:-2px; left:50%; right:50%; height:1.5px; background:var(--c-primary); transition:left .25s,right .25s; }
.brand-card:hover .brand-card-cta { gap:12px; }
.brand-card:hover .brand-card-cta::after { left:0; right:0; }
@media (max-width:768px) { .brands-grid { grid-template-columns:1fr; max-width:460px; } }

/* ═══════════════════════════════════════════════
   INDEX — ABOUT (NOSOTROS)
   ═══════════════════════════════════════════════ */
#nosotros { background:var(--c-bg); display:grid; grid-template-columns:1fr 1fr; gap:0; align-items:stretch; }
.about-visual { position:relative; overflow:hidden; min-height:520px; }
.about-visual img { width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.7); transition:transform 7s ease; }
.about-visual:hover img { transform:scale(1.04); }
.about-visual-ov { position:absolute; inset:0; background:linear-gradient(to right,transparent 50%,var(--c-bg) 100%); }
.about-badge { position:absolute; top:36px; left:36px; background:var(--c-primary); color:#fff; padding:18px 24px; border-radius:12px; box-shadow:0 12px 32px rgba(18,68,137,.35); }
.about-badge-num { font-size:48px; font-weight:900; line-height:1; letter-spacing:-.05em; }
.about-badge-lbl { font-size:10px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; opacity:.85; margin-top:4px; }
.about-content { padding:var(--pad-sec) var(--pad-x) var(--pad-sec) clamp(36px,4.5vw,64px); display:flex; flex-direction:column; justify-content:center; background:var(--c-bg); }
.about-body { font-size:15px; color:var(--c-muted); line-height:1.8; margin-bottom:18px; }
.about-feats { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:30px; }
.about-feat { background:var(--c-white); border:1px solid var(--c-border); border-radius:10px; padding:16px 18px; transition:border-color .25s,transform .25s,box-shadow .25s; }
.about-feat:hover { border-color:var(--c-primary); transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.06); }
.about-feat-icon { width:30px; height:30px; background:rgba(18,68,137,.1); border-radius:6px; display:flex; align-items:center; justify-content:center; margin-bottom:10px; }
.about-feat-icon svg { width:14px; height:14px; stroke:var(--c-primary); }
.about-feat-title { font-size:13px; font-weight:700; color:var(--c-text); margin-bottom:3px; }
.about-feat-text { font-size:12px; color:var(--c-muted); line-height:1.5; }
@media (max-width:860px) {
  #nosotros { grid-template-columns:1fr; }
  .about-visual { min-height:280px; }
  .about-visual-ov { background:linear-gradient(to bottom,transparent 60%,var(--c-bg) 100%); }
  .about-content { padding:48px var(--pad-x); }
  .about-feats { grid-template-columns:1fr; }
}


/* ═══════════════════════════════════════════════
   INDEX — TIMELINE
   ═══════════════════════════════════════════════ */
#timeline {
  background: var(--c-white);
  padding: var(--pad-sec) var(--pad-x);
  border-top: 1px solid var(--c-border);
  overflow: hidden;
}
.tl-head { margin-bottom: clamp(56px, 8vw, 88px); }

.tl-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: 580px;
  align-items: center;
}


.tl-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 50px;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
}
.tl-seg {
  flex: 1;
  height: 100%;
}

.tl-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.tl-top {
  justify-content: center;
}
.tl-top .tl-text {
  order: 1;
  margin-bottom: 76px;
}
.tl-top .tl-dot  { order: 2; }
.tl-top .tl-logo {
  order: 3;
  margin-top: 76px;
}

.tl-bottom {
  justify-content: center;
}
.tl-bottom .tl-logo {
  order: 1;
  margin-bottom: 76px;
}
.tl-bottom .tl-dot  { order: 2; }
.tl-bottom .tl-text {
  order: 3;
  margin-top: 76px;
}

/* Dot central */
.tl-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-white);
  border: 3px solid var(--c-white);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  flex-shrink: 0;
  z-index: 3;
}


.tl-top .tl-dot::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 76px;
  background: var(--c-border);
}

.tl-bottom .tl-dot::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 76px;
  background: var(--c-border);
}

.tl-dot {
  position: relative;
}

/* Logo circular */
.tl-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--c-border);
  background: var(--c-white);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.tl-item:hover .tl-logo {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
}
.tl-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto */
.tl-text {
  text-align: center;
  padding: 0 10px;
}
.tl-year {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.tl-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 6px;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.tl-desc {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.65;
}

/* Mobile — stack vertical */
@media (max-width: 860px) {
  .tl-wrap {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-left: 56px;
  }
  .tl-line {
    top: 0; bottom: 0;
    left: 20px; right: auto;
    width: 4px; height: auto;
    transform: none;
    border-radius: 2px;
  }
  .tl-item {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 40px;
    height: auto;
  }
  .tl-top .tl-text,
  .tl-bottom .tl-text,
  .tl-top .tl-logo,
  .tl-bottom .tl-logo { order: unset; margin: 0; }

  .tl-dot {
    position: absolute;
    left: -43px;
    top: 10px;
    flex-shrink: 0;
  }
  .tl-logo {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }
  .tl-text { text-align: left; padding: 0; }

  /* En mobile siempre: logo primero, texto después */
  .tl-item .tl-logo { order: 1 !important; }
  .tl-item .tl-text { order: 2 !important; }
  .tl-item .tl-dot  { order: 0 !important; }
}

/* ═══════════════════════════════════════════════
   INDEX — ANUNCIO HISTÓRICO
   ═══════════════════════════════════════════════ */
#historia-anuncio {
  background: var(--c-bg);
  padding: var(--pad-sec) var(--pad-x);
  border-top: 1px solid var(--c-border);
}
.hist-inner {
  display: grid;
   grid-template-columns: 0.3fr 1.1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}


.hist-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0,0,0,.16);
}
.hist-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.hist-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hist-body {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.hist-caption {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-dim);
}

@media (max-width: 860px) {
  .hist-inner {
    grid-template-columns: 1fr;
  }
  .hist-frame {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════
   INDEX — SERVICIOS
   ═══════════════════════════════════════════════ */
#servicios {
  background: var(--c-white);
  padding: var(--pad-sec) var(--pad-x);
  border-top: 1px solid var(--c-border);
}
.srv-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.srv-text {
  display: flex;
  flex-direction: column;
}
.srv-body {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.85;
  margin-top: 8px;
}
.srv-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 860px) {
  .srv-inner {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════════
   INDEX — LOCATIONS + MAP + CONTACT PREVIEW
   (loc-card tambien reutilizado en contacto.php)
   ═══════════════════════════════════════════════ */
#ubicaciones { background:var(--c-bg); padding:var(--pad-sec) var(--pad-x); }
.locations-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:44px; flex-wrap:wrap; gap:20px; }
.locations-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
.locs-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }

.loc-card { background:var(--c-card); border:1px solid var(--c-border); border-radius:12px; overflow:hidden; transition:transform .3s,box-shadow .3s,border-color .3s; text-decoration: none; }
.loc-card:hover { transform:translateY(-5px); box-shadow:0 16px 48px rgba(0,0,0,.08); border-color:var(--c-primary); }
.loc-img { aspect-ratio:4/3; overflow:hidden; position:relative; }
.loc-img img { width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.8); transition:transform .55s,filter .55s; }
.loc-card:hover .loc-img img { transform:scale(1.07); filter:brightness(.95); }
.loc-tag { position:absolute; top:10px; left:10px; background:var(--c-primary); color:#fff; font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:4px 9px; border-radius:100px; }
.loc-body { padding:16px 18px; }
.loc-city { font-size:15px; font-weight:700; color:var(--c-text); margin-bottom:5px; letter-spacing:-.01em; }
.loc-airport { font-size:12px; color:var(--c-muted); line-height:1.5; display:flex; align-items:flex-start; gap:5px; }
.loc-airport svg { width:12px; height:12px; stroke:var(--c-primary); flex-shrink:0; margin-top:2px; }

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

.map-wrap { position:relative; height:400px; overflow:hidden; }
.map-wrap iframe { width:100%; height:100%; display:block; border:none; filter:grayscale(.2); }
.map-card { position:absolute; top:28px; left:var(--pad-x); background:rgba(255,255,255,.97); border:1px solid var(--c-border); border-radius:12px; padding:22px 24px; max-width:265px; box-shadow:0 16px 48px rgba(0,0,0,.1); backdrop-filter:blur(12px); }
.map-card-title { font-size:14px; font-weight:700; color:var(--c-text); margin-bottom:5px; }
.map-card-addr { font-size:12px; color:var(--c-muted); line-height:1.6; margin-bottom:14px; }
.map-card-link { display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:600; color:var(--c-primary); text-decoration:none; letter-spacing:.08em; text-transform:uppercase; transition:gap .2s; }
.map-card-link:hover { gap:9px; }

#contacto-preview { background:var(--c-bg); padding:var(--pad-sec) var(--pad-x); display:grid; grid-template-columns:1fr 1.3fr; gap:68px; align-items:start; }
.contact-info-list { display:flex; flex-direction:column; gap:12px; margin-top:38px; }
.contact-info-item { display:flex; align-items:flex-start; gap:14px; background:var(--c-white); border:1px solid var(--c-border); border-radius:10px; padding:15px 18px; transition:border-color .25s,box-shadow .25s; }
.contact-info-item:hover { border-color:var(--c-primary); box-shadow:0 4px 16px rgba(0,0,0,.05); }
.contact-icon { width:34px; height:34px; background:rgba(18,68,137,.1); border-radius:7px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-icon svg { width:15px; height:15px; stroke:var(--c-primary); }
.ci-lbl { font-size:10px; color:var(--c-dim); letter-spacing:.1em; text-transform:uppercase; font-weight:600; margin-bottom:3px; }
.ci-val { font-size:13px; color:var(--c-text); line-height:1.6; }
.ci-val a { color:var(--c-text); text-decoration:none; transition:color .2s; }
.ci-val a:hover { color:var(--c-primary); }

.form-card { background:var(--c-white); border:1px solid var(--c-border); border-radius:16px; padding:38px; box-shadow:0 4px 24px rgba(0,0,0,.05); }
.form-card-title { font-size:20px; font-weight:800; color:var(--c-text); margin-bottom:4px; letter-spacing:-.02em; }
.form-card-sub { font-size:13px; color:var(--c-muted); margin-bottom:30px; }

@media (max-width:860px) { #contacto-preview { grid-template-columns:1fr; gap:38px; } }


/* ═══════════════════════════════════════════════
   CONTACTO.PHP
   ═══════════════════════════════════════════════ */
.contact-outer { background:var(--c-bg); padding:clamp(56px,8vw,96px) var(--pad-x); }
.contact-layout { display:grid; grid-template-columns:1fr 1.45fr; gap:56px; align-items:start; }

.info-panel { display:flex; flex-direction:column; gap:10px; }
.info-card {
  background:var(--c-white); border:1px solid var(--c-border); border-radius:12px;
  padding:20px 22px; display:flex; align-items:flex-start; gap:14px;
  transition:border-color .25s,box-shadow .25s,transform .25s;
}
.info-card:hover { border-color:var(--c-primary); box-shadow:0 6px 24px rgba(0,0,0,.06); transform:translateY(-2px); }
.info-card-icon { width:38px; height:38px; background:rgba(18,68,137,.1); border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-card-icon svg { width:16px; height:16px; stroke:var(--c-primary); }
.info-card-lbl { font-size:10px; color:var(--c-dim); letter-spacing:.12em; text-transform:uppercase; font-weight:700; margin-bottom:4px; }
.info-card-val { font-size:14px; color:var(--c-text); line-height:1.65; }
.info-card-val a { color:var(--c-text); text-decoration:none; transition:color .2s; }
.info-card-val a:hover { color:var(--c-primary); }

.hours-grid { display:grid; grid-template-columns:1fr 1fr; gap:6px 16px; margin-top:6px; }
.hours-row { font-size:13px; color:var(--c-muted); display:flex; justify-content:space-between; padding-bottom:6px; border-bottom:1px solid var(--c-border); }
.hours-row:last-child, .hours-row:nth-last-child(2) { border-bottom:none; }
.hours-day { font-weight:600; color:var(--c-text); }

.wa-cta {
  display:flex; align-items:center; gap:12px; background:#25d366; color:#fff;
  border-radius:12px; padding:18px 22px; text-decoration:none;
  font-weight:700; font-size:15px; margin-top:4px;
  transition:background .2s,transform .2s,box-shadow .2s;
  width: fit-content;
}
.wa-cta:hover { background:#1ebe5d; transform:translateY(-2px); box-shadow:0 10px 28px rgba(37,211,102,.32); }
.wa-cta svg { width:24px; height:24px; fill:#fff; flex-shrink:0; }
.wa-cta-text { display:flex; flex-direction:column; }
.wa-cta-label { font-size:11px; font-weight:500; opacity:.8; letter-spacing:.04em; }

.brands-mini { display:flex; gap:10px; flex-wrap:wrap; margin-top:4px; }
.brand-mini-pill {
  display:flex; align-items:center; gap:8px;
  background:var(--c-white); border:1px solid var(--c-border);
  border-radius:8px; padding:8px 14px 8px 10px;
  text-decoration:none; transition:border-color .2s,box-shadow .2s;
}
.brand-mini-pill:hover { border-color:var(--c-primary); box-shadow:0 4px 14px rgba(0,0,0,.06); }
.brand-mini-pill img { width:40px; height:26px; object-fit:cover; border-radius:4px; background:#fff; }
.brand-mini-pill span { font-size:12px; font-weight:600; color:var(--c-text); }

.contact-form-card { background:var(--c-white); border:1px solid var(--c-border); border-radius:18px; padding:44px; box-shadow:0 6px 32px rgba(0,0,0,.06); }
.contact-form-title { font-size:24px; font-weight:900; color:var(--c-text); letter-spacing:-.03em; margin-bottom:4px; }
.contact-form-sub { font-size:14px; color:var(--c-muted); margin-bottom:32px; line-height:1.6; }

.map-section { background:var(--c-white); }
.map-section-header { padding:clamp(40px,6vw,72px) var(--pad-x) 32px; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.map-section .map-wrap { height:440px; }

.locs-strip { background:var(--c-bg); padding:clamp(48px,7vw,80px) var(--pad-x); }
.locs-strip-head { margin-bottom:36px; }
.locs-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }

@media (max-width:900px) {
  .contact-layout { grid-template-columns:1fr; gap:36px; }
  .contact-form-card { padding:28px 22px; }
  .locs-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:500px) { .locs-grid { grid-template-columns:1fr; } }


/* ═══════════════════════════════════════════════
   PAGINAS INTERNAS 
   ═══════════════════════════════════════════════ */
.page-header { background:#0F2C5F; padding:var(--nav-h) 0 0; }
.page-header-inner { padding:48px var(--pad-x) 44px; }

.breadcrumb { display:flex; align-items:center; gap:7px; margin-bottom:20px; }
.breadcrumb a { font-size:12px; color:rgba(255,255,255,.55); text-decoration:none; font-weight:500; letter-spacing:.04em; transition:color .2s; }
.breadcrumb a:hover { color:rgba(255,255,255,.85); }
.breadcrumb-sep { color:rgba(255,255,255,.3); font-size:11px; }
.breadcrumb-current { font-size:12px; color:rgba(255,255,255,.55); font-weight:500; letter-spacing:.04em; }

.page-header h1 { font-size:clamp(28px,4vw,48px); font-weight:900; color:#fff; letter-spacing:-.035em; line-height:1.05; margin-bottom:16px; }
.page-header-sub { font-size:16px; color:rgba(255,255,255,.65); max-width:540px; line-height:1.7; }
.page-header-meta { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }

.update-badge { display:inline-flex; align-items:center; gap:7px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); border-radius:100px; padding:5px 14px 5px 9px; font-size:11px; font-weight:600; color:rgba(255,255,255,.75); letter-spacing:.07em; text-transform:uppercase; }
.update-dot { width:6px; height:6px; background:rgba(255,255,255,.55); border-radius:50%; }

/* ═══════════════════════════════════════════════
   PAGINAS LEGALES 
   ═══════════════════════════════════════════════ */
.content-outer { background:var(--c-white); padding:clamp(48px,7vw,96px) var(--pad-x); }
.content-section { margin-bottom:44px; }

.section-heading { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.section-num { width:28px; height:28px; background:var(--c-primary); color:#fff; border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; flex-shrink:0; letter-spacing:-.01em; }
.section-heading h2 { font-size:clamp(17px,2vw,22px); font-weight:800; color:var(--c-text); letter-spacing:-.025em; line-height:1.15; }

.content-section p { font-size:15px; color:var(--c-muted); line-height:1.85; margin-bottom:14px; }
.content-section p:last-child { margin-bottom:0; }
.content-section strong { color:var(--c-text); font-weight:700; }
.content-section ul { list-style:none; margin:0 0 14px; padding:0; display:flex; flex-direction:column; gap:8px; }
.content-section ul li { font-size:15px; color:var(--c-muted); line-height:1.7; padding-left:20px; position:relative; }
.content-section ul li::before { content:''; position:absolute; left:0; top:10px; width:6px; height:6px; background:var(--c-primary); border-radius:50%; opacity:.6; }
.content-divider { border:none; border-top:1px solid var(--c-border); margin:0 0 44px; }

/* ═══════════════════════════════════════════════
   CTA CARD 
   ═══════════════════════════════════════════════ */
.cta-card {
  background:var(--c-white); border:1px solid var(--c-border); border-radius:16px;
  padding:32px 36px; display:flex; align-items:center; justify-content:space-between;
  gap:32px; flex-wrap:wrap; margin-top:56px; box-shadow:0 4px 24px rgba(0,0,0,.05);
}
.cta-left { display:flex; align-items:center; gap:20px; flex:1; min-width:240px; }
.cta-icon-wrap { width:48px; height:48px; background:rgba(18,68,137,.1); border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cta-icon-wrap svg { width:20px; height:20px; stroke:var(--c-primary); }
.cta-text-title { font-size:18px; font-weight:800; color:var(--c-text); letter-spacing:-.025em; margin-bottom:4px; }
.cta-text-sub { font-size:13px; color:var(--c-muted); line-height:1.6; }
.cta-info { display:flex; flex-direction:column; gap:8px; flex:1; min-width:200px; }
.cta-info-row { display:flex; align-items:center; gap:9px; font-size:13px; color:var(--c-muted); }
.cta-info-row svg { width:14px; height:14px; stroke:var(--c-primary); flex-shrink:0; }
.cta-info-row a { color:var(--c-text); text-decoration:none; font-weight:500; transition:color .2s; }
.cta-info-row a:hover { color:var(--c-primary); }
.cta-buttons { display:flex; flex-direction:column; gap:9px; flex-shrink:0; min-width:172px; }
.cta-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:12px 20px; border-radius:var(--r);
  font-family:'Urbanist',sans-serif; font-size:14px; font-weight:700;
  text-decoration:none; cursor:pointer; border:none; transition:all .2s; letter-spacing:-.01em;
}
.cta-btn-wa { background:#25d366; color:#fff; }
.cta-btn-wa:hover { background:#1ebe5d; transform:translateY(-2px); box-shadow:0 8px 22px rgba(37,211,102,.28); }
.cta-btn-wa svg { width:16px; height:16px; fill:#fff; }
.cta-btn-call { background:var(--c-primary); color:#fff; }
.cta-btn-call:hover { background:var(--c-primary2); transform:translateY(-2px); box-shadow:0 8px 22px rgba(18,68,137,.28); }
.cta-btn-call svg { width:16px; height:16px; stroke:#fff; fill:none; }

@media (max-width:768px) {
  .cta-card { padding:24px 22px; flex-direction:column; align-items:flex-start; }
  .cta-buttons { width:100%; flex-direction:row; }
  .cta-btn { flex:1; }
}