/* =========================================================
   JURIS — ESTUDIO LABORAL · sistema de diseño (muestra Krea Estudios)
   Arquetipo: Audaz / decidido — defensa del trabajador
   Tipografías: Sora (titulares geométricos 700-800) · Work Sans (cuerpo/UI)
   Paleta: azul profundo #16307A · azul #1E40AF · ámbar #F4A124 · slate #0F172A
   NOTA: mismas clases que el sitio de referencia, identidad totalmente distinta.
   ========================================================= */

:root{
  /* azules / base */
  --navy:    #16307A;   /* azul profundo (bloques sólidos) */
  --navy-2:  #1E40AF;   /* azul medio (hover, acentos fríos) */
  --navy-3:  #0F1B45;   /* azul casi negro (topbar/footer) */
  --ink:     #16223D;   /* texto principal sobre claro */
  --slate:   #0F172A;   /* slate oscuro */

  /* ámbar (acento energético) */
  --gold:    #F4A124;   /* ámbar (mantengo nombre de variable por compatibilidad) */
  --gold-2:  #FFB845;   /* ámbar claro (hover/highlights) */
  --gold-3:  #C97E12;   /* ámbar profundo (texto ámbar sobre claro, AA) */

  /* neutros */
  --cream:   #EEF2F8;   /* gris azulado claro (secciones alternas) */
  --paper:   #FFFFFF;   /* fondo base */
  --paper-2: #E3E9F4;   /* gris azulado más marcado */
  --line:    #DCE3F0;   /* líneas suaves */
  --line-2:  #C5D0E6;   /* líneas marcadas */
  --muted:   #51607A;   /* texto secundario (AA sobre blanco) */
  --muted-2: #74819A;   /* texto terciario */
  --white:   #ffffff;

  /* sombras marcadas pero limpias */
  --shadow-sm: 0 2px 4px rgba(15,27,69,.08), 0 1px 2px rgba(15,27,69,.05);
  --shadow:    0 22px 48px -22px rgba(15,27,69,.34);
  --shadow-lg: 0 50px 90px -38px rgba(15,27,69,.55);
  --shadow-gold: 0 16px 34px -14px rgba(244,161,36,.62);

  --sans:    'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --display: 'Sora', 'Work Sans', -apple-system, system-ui, sans-serif;
  /* alias de compatibilidad: si alguna clase usa --serif, que no rompa */
  --serif:   'Sora', 'Work Sans', system-ui, sans-serif;

  --container: 1240px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

/* ---------- reset ---------- */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; scroll-behavior:smooth; }
body{ font-family:var(--sans); color:var(--ink); background:var(--paper); line-height:1.62; font-size:17px; overflow-x:hidden; }
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:800; color:var(--navy); line-height:1.06; letter-spacing:-0.02em; }
::selection{ background:var(--gold); color:var(--navy-3); }

/* ---------- layout helpers ---------- */
.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }
@media(max-width:640px){ .container{ padding:0 20px; } }
.section{ padding:108px 0; }
.section-sm{ padding:74px 0; }
@media(max-width:780px){ .section{ padding:74px 0; } }

/* eyebrow: Work Sans bold mayúsculas con barra ámbar gruesa */
.eyebrow{
  display:inline-flex; align-items:center; gap:11px;
  font-family:var(--sans); font-weight:700; font-size:13px;
  letter-spacing:.16em; text-transform:uppercase; color:var(--gold-3);
}
.eyebrow::before{ content:""; width:30px; height:3px; border-radius:2px; background:var(--gold); }
.eyebrow.center{ justify-content:center; }
.eyebrow.center::after{ content:""; width:30px; height:3px; border-radius:2px; background:var(--gold); }

.h-xl{ font-size:clamp(44px,6.6vw,76px); line-height:1.02; letter-spacing:-0.03em; }
.h-lg{ font-size:clamp(32px,4.8vw,54px); letter-spacing:-0.025em; }
.h-md{ font-size:clamp(25px,3.1vw,36px); letter-spacing:-0.02em; }
.lead{ font-size:clamp(18px,2vw,21px); color:var(--muted); line-height:1.6; font-family:var(--sans); font-weight:400; }
.text-muted{ color:var(--muted); }

/* resaltado ámbar reutilizable (palabra clave) */
.hl{ color:var(--gold-3); position:relative; }
.underline-gold{ position:relative; white-space:nowrap; }
.underline-gold::after{ content:""; position:absolute; left:-2px; right:-2px; bottom:.06em; height:.34em; background:var(--gold); z-index:-1; border-radius:3px; }

.center{ text-align:center; }
.section-head{ max-width:740px; margin:0 auto 60px; }
.section-head.center{ text-align:center; }
.section-head.left{ margin-left:0; text-align:left; }
.section-head h2{ margin:18px 0 0; }
.section-head p{ margin-top:18px; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--sans); font-weight:700; font-size:15.5px; letter-spacing:.005em;
  padding:16px 30px; border-radius:var(--radius);
  transition:transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-gold{ background:var(--gold); color:var(--navy-3); box-shadow:var(--shadow-gold); }
.btn-gold:hover{ background:var(--gold-2); transform:translateY(-3px); }
.btn-navy{ background:var(--navy); color:#fff; box-shadow:0 14px 30px -16px rgba(22,48,122,.85); }
.btn-navy:hover{ background:var(--navy-2); transform:translateY(-3px); }
.btn-outline{ border:2px solid var(--navy); color:var(--navy); background:transparent; padding:14px 28px; }
.btn-outline:hover{ background:var(--navy); color:#fff; transform:translateY(-2px); }
.btn-ghost-light{ border:2px solid rgba(255,255,255,.4); color:#fff; padding:14px 28px; }
.btn-ghost-light:hover{ background:rgba(255,255,255,.12); border-color:#fff; }
.link-arrow{ display:inline-flex; align-items:center; gap:8px; font-weight:700; color:var(--navy); font-size:15px; transition:gap .2s, color .2s; }
.link-arrow svg{ width:17px; height:17px; transition:transform .2s; }
.link-arrow:hover{ color:var(--gold-3); }
.link-arrow:hover svg{ transform:translateX(5px); }

/* ---------- top bar + nav ---------- */
.topbar{ background:var(--navy-3); color:rgba(255,255,255,.74); font-size:13px; }
.topbar .container{ display:flex; justify-content:space-between; align-items:center; height:44px; }
.topbar a{ color:rgba(255,255,255,.84); transition:color .2s; }
.topbar a:hover{ color:var(--gold-2); }
.topbar .tb-left{ display:flex; gap:24px; align-items:center; }
.topbar .tb-right{ display:flex; gap:20px; align-items:center; }
.topbar .tb-item{ display:inline-flex; gap:8px; align-items:center; font-weight:500; }
.topbar svg{ width:14px; height:14px; opacity:.85; color:var(--gold-2); }
@media(max-width:860px){ .topbar .tb-left .tb-item:nth-child(2){ display:none; } .topbar .tb-right{ display:none; } }

.nav{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.9); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border-bottom:1px solid var(--line); transition:box-shadow .3s, background .3s; }
.nav.scrolled{ box-shadow:0 14px 34px -24px rgba(15,27,69,.6); background:rgba(255,255,255,.95); }
.nav .container{ display:flex; align-items:center; justify-content:space-between; height:80px; }
.brand{ display:flex; align-items:center; gap:13px; }
.brand .mark{ width:46px; height:46px; border-radius:12px; background:var(--navy); display:grid; place-items:center; flex-shrink:0; box-shadow:0 10px 22px -12px rgba(22,48,122,.7); }
.brand .mark svg{ width:25px; height:25px; }
.brand .bt{ line-height:1; }
.brand .bt .name{ font-family:var(--display); font-weight:800; font-size:24px; color:var(--navy); letter-spacing:-0.02em; }
.brand .bt .sub{ display:block; font-family:var(--sans); font-size:10.5px; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color:var(--gold-3); margin-top:4px; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a.navlink{ font-size:15.5px; font-weight:600; color:var(--ink); position:relative; padding:5px 0; transition:color .2s; }
.nav-links a.navlink::after{ content:""; position:absolute; left:0; bottom:-3px; width:0; height:3px; border-radius:2px; background:var(--gold); transition:width .25s; }
.nav-links a.navlink:hover{ color:var(--navy); }
.nav-links a.navlink:hover::after,.nav-links a.navlink.active::after{ width:100%; }
.nav-links a.navlink.active{ color:var(--navy); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; width:48px; height:48px; border-radius:var(--radius); border:2px solid var(--line-2); }
.nav-toggle span{ display:block; width:20px; height:2.4px; border-radius:2px; background:var(--navy); margin:4px auto; transition:.25s; }
@media(max-width:1040px){
  .nav-links{ position:fixed; inset:0 0 0 auto; width:min(86vw,360px); flex-direction:column; align-items:flex-start; justify-content:flex-start; gap:6px; background:var(--paper); padding:108px 32px 40px; transform:translateX(100%); transition:transform .3s ease; box-shadow:var(--shadow-lg); z-index:55; }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a.navlink{ font-size:20px; width:100%; padding:15px 0; border-bottom:1px solid var(--line); }
  .nav-links a.navlink::after{ display:none; }
  .nav-links .btn{ margin-top:22px; width:100%; justify-content:center; }
  .nav-toggle{ display:block; z-index:60; }
  .nav-toggle.open span:nth-child(1){ transform:translateY(6.4px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-6.4px) rotate(-45deg); }
  .nav-cta .btn-gold{ display:none; }
}

/* ---------- hero ---------- */
.hero{ position:relative; background:var(--navy); color:#fff; overflow:hidden; }
/* duotono azul: la foto se tiñe; gradiente fuerte a la izquierda para el texto */
.hero .hero-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; filter:grayscale(100%) contrast(1.08) brightness(.86); }
.hero::before{ content:""; position:absolute; inset:0; z-index:2; background:linear-gradient(102deg, rgba(15,27,69,.97) 0%, rgba(22,48,122,.92) 40%, rgba(22,48,122,.6) 70%, rgba(30,64,175,.42) 100%); mix-blend-mode:multiply; }
.hero::after{ content:""; position:absolute; inset:0; z-index:2; background:radial-gradient(120% 90% at 88% 8%, rgba(244,161,36,.18), transparent 55%); }
.hero .container{ position:relative; z-index:3; padding-top:104px; padding-bottom:0; }
.hero-inner{ max-width:760px; }
.hero .eyebrow{ color:var(--gold-2); }
.hero .eyebrow::before{ background:var(--gold); }
.hero h1{ color:#fff; margin:24px 0 0; font-size:clamp(44px,6.6vw,76px); line-height:1.02; letter-spacing:-0.03em; font-weight:800; }
.hero h1 .em{ color:var(--gold-2); }
.hero h1 .underline-gold::after{ background:var(--gold); opacity:.92; }
.hero p.lead{ color:rgba(255,255,255,.86); margin-top:24px; max-width:56ch; font-size:clamp(17px,2vw,20px); }
.hero-actions{ margin-top:36px; display:flex; gap:16px; flex-wrap:wrap; }
.hero-trust{ margin-top:50px; padding-top:30px; border-top:1px solid rgba(255,255,255,.16); display:flex; gap:48px; flex-wrap:wrap; }
.hero-trust .ht{ display:flex; flex-direction:column; gap:4px; }
.hero-trust .ht b{ font-family:var(--display); font-size:38px; color:#fff; font-weight:800; line-height:1; letter-spacing:-0.02em; }
.hero-trust .ht b em{ color:var(--gold-2); font-style:normal; }
.hero-trust .ht span{ font-size:13.5px; color:rgba(255,255,255,.7); font-weight:500; }
@media(max-width:780px){ .hero-trust{ gap:30px 34px; } .hero-trust .ht b{ font-size:31px; } }

/* stat strip pegada al borde inferior del hero — números gigantes en barra ámbar/azul */
.hero-stats{ position:relative; z-index:3; margin-top:64px; background:var(--gold); }
.hero-stats .container{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; padding:0; }
.hero-stats .hs{ padding:30px 28px; border-right:1px solid rgba(15,27,69,.16); }
.hero-stats .hs:last-child{ border-right:none; }
.hero-stats .hs b{ font-family:var(--display); font-size:clamp(32px,4vw,46px); font-weight:800; color:var(--navy-3); line-height:1; letter-spacing:-0.02em; display:block; }
.hero-stats .hs span{ display:block; margin-top:8px; font-size:13.5px; font-weight:600; color:rgba(15,27,69,.78); }
@media(max-width:880px){ .hero-stats .container{ grid-template-columns:repeat(2,1fr); } .hero-stats .hs:nth-child(2){ border-right:none; } .hero-stats .hs:nth-child(1),.hero-stats .hs:nth-child(2){ border-bottom:1px solid rgba(15,27,69,.16); } }
@media(max-width:880px){ .hero .container{ padding-bottom:0; } }

/* ---------- logo / trust strip ---------- */
.trustbar{ background:var(--navy-3); border-bottom:1px solid rgba(255,255,255,.08); }
.trustbar .container{ display:flex; align-items:center; gap:38px; padding-top:28px; padding-bottom:28px; flex-wrap:wrap; justify-content:center; }
.trustbar .tlabel{ font-size:12.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2); font-weight:700; }
.trustbar .tlogos{ display:flex; gap:42px; align-items:center; flex-wrap:wrap; justify-content:center; }
.trustbar .tlogo{ display:inline-flex; align-items:center; gap:9px; font-family:var(--display); font-weight:700; font-size:18px; color:rgba(255,255,255,.62); letter-spacing:-0.01em; transition:color .2s; }
.trustbar .tlogo:hover{ color:#fff; }
.trustbar .tlogo svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; }

/* ---------- split feature ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:74px; align-items:center; }
.split.reverse .split-media{ order:2; }
@media(max-width:920px){ .split{ grid-template-columns:1fr; gap:54px; } .split.reverse .split-media{ order:0; } }
.split-media{ position:relative; }
.split-media img{ width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow); object-fit:cover; }
/* marco ámbar geométrico desplazado */
.split-media .frame{ position:absolute; inset:20px -20px -20px 20px; border:3px solid var(--gold); border-radius:var(--radius-lg); z-index:-1; }
.split-media .badge-card{ position:absolute; right:-16px; bottom:-24px; background:var(--navy); color:#fff; padding:24px 28px; border-radius:var(--radius-lg); box-shadow:var(--shadow); max-width:240px; }
.split-media .badge-card b{ font-family:var(--display); font-size:42px; font-weight:800; display:block; line-height:1; color:var(--gold-2); letter-spacing:-0.02em; }
.split-media .badge-card span{ font-size:13.5px; color:rgba(255,255,255,.82); display:block; margin-top:6px; font-weight:500; }
.split-body h2{ margin:18px 0 0; }
.split-body p{ margin-top:20px; color:var(--muted); }
.split-body .checklist{ margin-top:28px; display:flex; flex-direction:column; gap:15px; }
.split-body .checklist li{ display:flex; gap:14px; align-items:flex-start; font-size:16px; color:var(--ink); font-weight:500; }
.split-body .checklist svg{ width:24px; height:24px; flex-shrink:0; color:var(--gold-3); margin-top:1px; }
.split-body .split-actions{ margin-top:36px; display:flex; gap:18px; flex-wrap:wrap; align-items:center; }

/* ---------- practice areas grid ---------- */
.areas-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media(max-width:980px){ .areas-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .areas-grid{ grid-template-columns:1fr; } }
.area-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; transition:transform .25s, box-shadow .25s, border-color .25s; }
.area-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent; }
.area-card .ac-media{ position:relative; aspect-ratio:16/10; overflow:hidden; }
.area-card .ac-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.area-card:hover .ac-media img{ transform:scale(1.06); }
.area-card .ac-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(22,48,122,0) 35%, rgba(15,27,69,.62)); }
.area-card .ac-ic{ position:absolute; left:18px; bottom:14px; z-index:2; width:48px; height:48px; border-radius:12px; background:var(--gold); display:grid; place-items:center; box-shadow:0 10px 20px -10px rgba(244,161,36,.8); }
.area-card .ac-ic svg{ width:24px; height:24px; color:var(--navy-3); }
.area-card .ac-body{ padding:24px 24px 26px; display:flex; flex-direction:column; gap:12px; flex:1; }
.area-card h3{ font-size:21px; font-weight:700; }
.area-card p{ font-size:15px; color:var(--muted); flex:1; line-height:1.55; }
.area-card .link-arrow{ font-size:14.5px; }

/* simple area list (no photo) for inner pages */
.area-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:0; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:var(--white); box-shadow:var(--shadow-sm); }
@media(max-width:760px){ .area-list{ grid-template-columns:1fr; } }
.area-list .ali{ padding:38px 36px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; flex-direction:column; gap:14px; transition:background .25s; position:relative; }
.area-list .ali::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:0; background:var(--gold); transition:width .25s; }
.area-list .ali:hover{ background:var(--cream); }
.area-list .ali:hover::before{ width:4px; }
.area-list .ali .num{ font-family:var(--display); font-weight:800; color:var(--gold-3); font-size:19px; letter-spacing:.02em; }
.area-list .ali h3{ font-size:23px; font-weight:700; }
.area-list .ali p{ color:var(--muted); font-size:15.5px; line-height:1.55; }
.area-list .ali ul{ display:flex; flex-direction:column; gap:8px; margin-top:4px; }
.area-list .ali ul li{ font-size:14.5px; color:var(--ink); display:flex; gap:10px; align-items:flex-start; font-weight:500; }
.area-list .ali ul li::before{ content:""; width:7px; height:7px; border-radius:2px; background:var(--gold); margin-top:7px; flex-shrink:0; }

/* ---------- stats band ---------- */
.statsband{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.statsband::after{ content:""; position:absolute; top:-40%; right:-8%; width:540px; height:540px; border-radius:50%; background:radial-gradient(circle, rgba(244,161,36,.2), transparent 68%); }
.statsband::before{ content:""; position:absolute; left:-12%; bottom:-50%; width:480px; height:480px; border-radius:50%; background:radial-gradient(circle, rgba(30,64,175,.5), transparent 70%); }
.statsband .container{ position:relative; z-index:2; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
@media(max-width:780px){ .stats-grid{ grid-template-columns:repeat(2,1fr); gap:40px 24px; } }
.stat{ text-align:left; }
.stat b{ font-family:var(--display); font-size:clamp(44px,5.4vw,62px); font-weight:800; color:var(--gold-2); line-height:1; display:block; letter-spacing:-0.03em; }
.stat span{ display:block; margin-top:12px; font-size:15px; color:rgba(255,255,255,.78); font-weight:500; }
.stat .stat-sep{ width:38px; height:3px; border-radius:2px; background:rgba(255,255,255,.22); margin:14px 0 0; }

/* ---------- destacado: ¿Tienes derecho a indemnización? ---------- */
.rights-band{ background:var(--cream); }
.rights{ display:grid; grid-template-columns:.95fr 1.05fr; gap:60px; align-items:center; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-xl); padding:14px; box-shadow:var(--shadow); overflow:hidden; }
@media(max-width:880px){ .rights{ grid-template-columns:1fr; gap:0; } }
.rights .rights-aside{ background:var(--navy); color:#fff; border-radius:16px; padding:46px 44px; position:relative; overflow:hidden; align-self:stretch; display:flex; flex-direction:column; justify-content:center; }
.rights .rights-aside::after{ content:""; position:absolute; right:-30%; top:-30%; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle, rgba(244,161,36,.24), transparent 70%); }
.rights .rights-aside .eyebrow{ color:var(--gold-2); }
.rights .rights-aside .eyebrow::before{ background:var(--gold); }
.rights .rights-aside h2{ color:#fff; margin:18px 0 0; font-size:clamp(28px,3.6vw,40px); position:relative; z-index:2; }
.rights .rights-aside p{ color:rgba(255,255,255,.84); margin-top:18px; position:relative; z-index:2; }
.rights .rights-aside .btn{ margin-top:30px; align-self:flex-start; position:relative; z-index:2; }
.rights .rights-body{ padding:32px 40px 32px 16px; }
@media(max-width:880px){ .rights .rights-body{ padding:34px 28px; } .rights .rights-aside{ padding:40px 30px; } }
.rights-body .rb-intro{ color:var(--muted); font-size:16px; margin-bottom:22px; }
.rights-check{ display:grid; gap:14px; }
.rights-check li{ display:flex; gap:14px; align-items:flex-start; font-size:16px; color:var(--ink); font-weight:500; padding:14px 16px; border:1px solid var(--line); border-radius:var(--radius); background:var(--paper); transition:border-color .2s, transform .2s; }
.rights-check li:hover{ border-color:var(--gold); transform:translateX(3px); }
.rights-check li svg{ width:24px; height:24px; flex-shrink:0; color:var(--gold-3); margin-top:1px; }

/* ---------- why / values ---------- */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
@media(max-width:900px){ .feature-grid{ grid-template-columns:1fr; gap:24px; } }
.feature{ padding:36px 32px; border:1px solid var(--line); border-radius:var(--radius-lg); background:var(--white); transition:transform .25s, box-shadow .25s, border-color .25s; position:relative; overflow:hidden; }
.feature::before{ content:""; position:absolute; left:0; top:0; height:4px; width:0; background:var(--gold); transition:width .3s; }
.feature:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
.feature:hover::before{ width:100%; }
.feature .f-ic{ width:58px; height:58px; border-radius:14px; background:var(--navy); display:grid; place-items:center; margin-bottom:22px; box-shadow:0 12px 24px -14px rgba(22,48,122,.7); }
.feature .f-ic svg{ width:28px; height:28px; color:var(--gold-2); }
.feature h3{ font-size:22px; margin-bottom:12px; font-weight:700; }
.feature p{ color:var(--muted); font-size:15.5px; line-height:1.58; }

/* ---------- process steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
@media(max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); gap:38px 24px; } }
@media(max-width:520px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:24px; }
/* línea de conexión entre pasos */
.steps .step::after{ content:""; position:absolute; top:36px; left:62px; right:-14px; height:3px; background:repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); }
.steps .step:last-child::after{ display:none; }
@media(max-width:900px){ .steps .step::after{ display:none; } }
.step .snum{ display:inline-grid; place-items:center; width:52px; height:52px; border-radius:14px; background:var(--gold); color:var(--navy-3); font-family:var(--display); font-size:22px; font-weight:800; line-height:1; position:relative; z-index:2; box-shadow:0 12px 24px -12px rgba(244,161,36,.8); }
.step h3{ font-size:20px; margin:18px 0 10px; font-weight:700; }
.step p{ color:var(--muted); font-size:15px; line-height:1.55; }

/* ---------- team ---------- */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
@media(max-width:980px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:520px){ .team-grid{ grid-template-columns:1fr; } }
.team-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; transition:transform .25s, box-shadow .25s, border-color .25s; }
.team-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent; }
.team-card .tc-photo{ aspect-ratio:3/3.5; overflow:hidden; position:relative; background:var(--paper-2); }
.team-card .tc-photo img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%) contrast(1.04); transition:transform .5s, filter .4s; }
.team-card:hover .tc-photo img{ transform:scale(1.04); filter:grayscale(0%); }
.team-card .tc-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(22,48,122,0) 55%, rgba(15,27,69,.55)); opacity:.5; transition:opacity .4s; }
.team-card:hover .tc-photo::after{ opacity:0; }
.team-card .tc-body{ padding:22px 22px 24px; }
.team-card .tc-body h3{ font-size:20px; font-weight:700; }
.team-card .tc-body .role{ color:var(--gold-3); font-size:13px; font-weight:700; letter-spacing:.03em; margin-top:5px; text-transform:uppercase; }
.team-card .tc-body p{ color:var(--muted); font-size:14.5px; margin-top:13px; line-height:1.55; }
.team-card .tc-tags{ display:flex; gap:7px; flex-wrap:wrap; margin-top:16px; }
.team-card .tc-tags span{ font-size:11.5px; font-weight:600; color:var(--navy); border:1px solid var(--line-2); padding:5px 11px; border-radius:999px; background:var(--cream); }

/* ---------- testimonial (quote band) ---------- */
.quote-band{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.quote-band::after{ content:""; position:absolute; top:-30%; left:-6%; width:460px; height:460px; border-radius:50%; background:radial-gradient(circle, rgba(244,161,36,.16), transparent 68%); }
.quote{ max-width:940px; margin:0 auto; text-align:center; position:relative; z-index:2; }
.quote .qmark{ font-family:var(--display); font-weight:800; font-size:120px; line-height:.5; color:var(--gold); opacity:.9; }
.quote blockquote{ font-family:var(--display); font-weight:600; font-size:clamp(24px,3.1vw,36px); line-height:1.32; color:#fff; letter-spacing:-0.02em; margin:24px 0 30px; }
.quote .qby{ display:flex; align-items:center; gap:14px; justify-content:center; }
.quote .qby img{ width:58px; height:58px; border-radius:50%; object-fit:cover; border:2px solid var(--gold); }
.quote .qby .qn{ text-align:left; }
.quote .qby .qn b{ display:block; color:#fff; font-size:16px; font-weight:700; }
.quote .qby .qn span{ color:rgba(255,255,255,.7); font-size:14px; }

/* testimonials grid (inner) */
.tgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media(max-width:900px){ .tgrid{ grid-template-columns:1fr; } }
.tcard{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px 30px; box-shadow:var(--shadow-sm); transition:transform .25s, box-shadow .25s; }
.tcard:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.tcard .stars{ color:var(--gold); letter-spacing:3px; font-size:16px; }
.tcard blockquote{ font-size:16.5px; color:var(--ink); margin:16px 0 22px; line-height:1.6; }
.tcard .tby{ display:flex; align-items:center; gap:12px; }
.tcard .tby img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.tcard .tby b{ font-size:15px; color:var(--navy); font-weight:700; }
.tcard .tby span{ font-size:13px; color:var(--muted); display:block; }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; background:var(--navy); color:#fff; overflow:hidden; }
.cta-band .cta-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; filter:grayscale(100%) contrast(1.06) brightness(.8); }
.cta-band::before{ content:""; position:absolute; inset:0; background:linear-gradient(120deg, rgba(15,27,69,.95), rgba(22,48,122,.82)); mix-blend-mode:multiply; z-index:2; }
.cta-band::after{ content:""; position:absolute; inset:0; background:radial-gradient(90% 90% at 80% 20%, rgba(244,161,36,.2), transparent 55%); z-index:2; }
.cta-band .container{ position:relative; z-index:3; text-align:center; }
.cta-band h2{ color:#fff; max-width:20ch; margin:18px auto 0; font-size:clamp(34px,5vw,56px); }
.cta-band h2 .em{ color:var(--gold-2); }
.cta-band p{ color:rgba(255,255,255,.86); max-width:56ch; margin:20px auto 0; font-size:18px; }
.cta-band .cta-actions{ margin-top:38px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------- page header (inner pages) ---------- */
.pagehead{ position:relative; background:var(--navy); color:#fff; overflow:hidden; }
.pagehead .ph-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; filter:grayscale(100%) contrast(1.06) brightness(.82); }
.pagehead::before{ content:""; position:absolute; inset:0; background:linear-gradient(110deg, rgba(15,27,69,.96), rgba(22,48,122,.74)); mix-blend-mode:multiply; z-index:2; }
.pagehead::after{ content:""; position:absolute; inset:0; background:radial-gradient(80% 90% at 85% 15%, rgba(244,161,36,.16), transparent 55%); z-index:2; }
.pagehead .container{ position:relative; z-index:3; padding-top:84px; padding-bottom:84px; }
.pagehead .crumbs{ font-size:13.5px; color:rgba(255,255,255,.66); display:flex; gap:10px; align-items:center; font-weight:500; }
.pagehead .crumbs a:hover{ color:var(--gold-2); }
.pagehead .crumbs span{ opacity:.5; }
.pagehead h1{ color:#fff; margin-top:18px; font-size:clamp(38px,5.2vw,64px); letter-spacing:-0.03em; }
.pagehead p{ color:rgba(255,255,255,.84); margin-top:18px; max-width:60ch; font-size:18px; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:56px; align-items:start; }
@media(max-width:920px){ .contact-grid{ grid-template-columns:1fr; gap:44px; } }
.contact-info .ci-item{ display:flex; gap:16px; align-items:flex-start; padding:24px 0; border-bottom:1px solid var(--line); }
.contact-info .ci-item:first-child{ padding-top:0; }
.contact-info .ci-ic{ width:48px; height:48px; border-radius:12px; background:var(--navy); display:grid; place-items:center; flex-shrink:0; }
.contact-info .ci-ic svg{ width:23px; height:23px; color:var(--gold-2); }
.contact-info .ci-item h4{ font-family:var(--sans); font-weight:700; font-size:13px; color:var(--navy); text-transform:uppercase; letter-spacing:.08em; }
.contact-info .ci-item p,.contact-info .ci-item a{ color:var(--muted); font-size:16px; margin-top:5px; font-weight:500; }
.contact-info .ci-item a:hover{ color:var(--gold-3); }
.form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:40px 38px; box-shadow:var(--shadow); border-top:4px solid var(--gold); }
@media(max-width:520px){ .form-card{ padding:30px 22px; } }
.form-card h3{ font-size:25px; margin-bottom:8px; font-weight:700; }
.form-card .fc-sub{ color:var(--muted); font-size:15px; margin-bottom:26px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13.5px; font-weight:700; color:var(--navy); margin-bottom:7px; }
.field input,.field select,.field textarea{ width:100%; font-family:inherit; font-size:15.5px; color:var(--ink); background:var(--paper); border:1.5px solid var(--line-2); border-radius:var(--radius); padding:14px 15px; transition:border .2s, box-shadow .2s; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(244,161,36,.18); }
.field textarea{ resize:vertical; min-height:120px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.form-card .btn{ width:100%; justify-content:center; margin-top:6px; }
.form-note{ font-size:12.5px; color:var(--muted-2); text-align:center; margin-top:14px; }

.map-embed{ margin-top:30px; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); aspect-ratio:16/7; background:var(--paper-2); box-shadow:var(--shadow-sm); }
.map-embed iframe{ width:100%; height:100%; border:0; filter:grayscale(.25) contrast(1.05); }

/* ---------- faq ---------- */
.faq{ max-width:840px; margin:0 auto; }
.faq-item{ border:1px solid var(--line); border-radius:var(--radius); margin-bottom:14px; background:var(--white); transition:border-color .25s, box-shadow .25s; overflow:hidden; }
.faq-item.open{ border-color:var(--gold); box-shadow:var(--shadow-sm); }
.faq-q{ width:100%; text-align:left; display:flex; justify-content:space-between; gap:20px; align-items:center; padding:24px 26px; font-family:var(--display); font-size:19px; color:var(--navy); font-weight:700; letter-spacing:-0.01em; }
.faq-q .fic{ width:32px; height:32px; flex-shrink:0; border-radius:9px; border:2px solid var(--line-2); display:grid; place-items:center; transition:.25s; position:relative; }
.faq-q .fic::before,.faq-q .fic::after{ content:""; position:absolute; background:var(--navy); border-radius:2px; }
.faq-q .fic::before{ width:13px; height:2.4px; }
.faq-q .fic::after{ width:2.4px; height:13px; transition:transform .25s; }
.faq-item.open .faq-q .fic{ background:var(--gold); border-color:var(--gold); }
.faq-item.open .faq-q .fic::before,.faq-item.open .faq-q .fic::after{ background:var(--navy-3); }
.faq-item.open .faq-q .fic::after{ transform:scaleY(0); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a p{ padding:0 26px 26px; color:var(--muted); font-size:16px; line-height:1.65; }

/* ---------- footer ---------- */
.footer{ background:var(--navy-3); color:rgba(255,255,255,.74); padding:84px 0 0; position:relative; }
.footer::before{ content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--gold), var(--gold-2)); }
.footer .fcols{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:44px; padding-bottom:54px; border-bottom:1px solid rgba(255,255,255,.1); }
@media(max-width:920px){ .footer .fcols{ grid-template-columns:1fr 1fr; gap:40px 30px; } }
@media(max-width:520px){ .footer .fcols{ grid-template-columns:1fr; } }
.footer .fbrand .brand .mark{ box-shadow:none; }
.footer .fbrand .brand .bt .name{ color:#fff; }
.footer .fbrand p{ margin-top:18px; font-size:14.5px; color:rgba(255,255,255,.62); max-width:36ch; line-height:1.62; }
.footer .fbrand .socials{ margin-top:22px; display:flex; gap:12px; }
.footer .fbrand .socials a{ width:42px; height:42px; border-radius:11px; border:1px solid rgba(255,255,255,.16); display:grid; place-items:center; transition:.2s; }
.footer .fbrand .socials a:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy-3); transform:translateY(-2px); }
.footer .fbrand .socials svg{ width:18px; height:18px; color:#fff; }
.footer .fbrand .socials a:hover svg{ color:var(--navy-3); }
.footer h4{ font-family:var(--sans); color:#fff; font-size:13px; letter-spacing:.13em; text-transform:uppercase; font-weight:700; margin-bottom:20px; }
.footer ul li{ margin-bottom:12px; }
.footer ul a{ font-size:14.5px; color:rgba(255,255,255,.68); transition:color .2s, padding .2s; }
.footer ul a:hover{ color:var(--gold-2); padding-left:4px; }
.footer .fcontact li{ display:flex; gap:11px; align-items:flex-start; font-size:14.5px; color:rgba(255,255,255,.7); }
.footer .fcontact svg{ width:17px; height:17px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.footer .fcontact a{ color:rgba(255,255,255,.7); }
.footer .fcontact a:hover{ color:var(--gold-2); }
.footer .fbottom{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding:24px 0; font-size:13px; color:rgba(255,255,255,.5); }
.footer .fbottom a:hover{ color:var(--gold-2); }

/* ---------- floating whatsapp ---------- */
.wa-float{ position:fixed; right:22px; bottom:22px; z-index:80; width:60px; height:60px; border-radius:50%; background:#25D366; display:grid; place-items:center; box-shadow:0 16px 32px -10px rgba(37,211,102,.7); transition:transform .2s; }
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:31px; height:31px; color:#fff; }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.09s; } .reveal.d2{ transition-delay:.18s; } .reveal.d3{ transition-delay:.27s; } .reveal.d4{ transition-delay:.36s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  html{ scroll-behavior:auto; }
}
