/* =========================================================
   CUBRIR SERVICIOS — styles.css
   Mobile-first. Breakpoints: 768px (tablet), 1024px (desktop)
   ========================================================= */

/* -----------------------------------------------------------
   BW Quinta Pro — official brand typeface.
   These @font-face rules are ready to go: drop the licensed
   font files into /fonts (same names as below) and the whole
   site switches over automatically. Until those files exist,
   the browser silently falls back to Poppins (loaded via
   Google Fonts in each page's <head>), so nothing breaks.
   ----------------------------------------------------------- */
@font-face{
  font-family:'BW Quinta Pro';
  src:url('../fonts/BWQuintaPro-Regular.woff2') format('woff2'),
      url('../fonts/BWQuintaPro-Regular.woff') format('woff');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'BW Quinta Pro';
  src:url('../fonts/BWQuintaPro-Medium.woff2') format('woff2'),
      url('../fonts/BWQuintaPro-Medium.woff') format('woff');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'BW Quinta Pro';
  src:url('../fonts/BWQuintaPro-Bold.woff2') format('woff2'),
      url('../fonts/BWQuintaPro-Bold.woff') format('woff');
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'BW Quinta Pro';
  src:url('../fonts/BWQuintaPro-Black.woff2') format('woff2'),
      url('../fonts/BWQuintaPro-Black.woff') format('woff');
  font-weight:900; font-style:normal; font-display:swap;
}

:root{
  --navy:#01426a;
  --navy-950:#012c47;
  --navy-1000:#011c30;
  --lime:#c5e86c;
  --lime-dark:#9fca3e;
  --lime-tint:#eef8dc;
  --ink:#10263a;
  --slate:#5b7182;
  --slate-light:#8fa3b3;
  --white:#ffffff;
  --cloud:#f5f9fb;
  --border:#e1e9ee;

  --font-display:'BW Quinta Pro', 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body:'BW Quinta Pro', 'Poppins', 'Segoe UI', Arial, sans-serif;

  --container: 1240px;
  --radius: 14px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.01em; margin:0; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; border:none; cursor:pointer; background:none; }
input, textarea, select{ font-family:inherit; }

:focus-visible{ outline:3px solid var(--lime-dark); outline-offset:2px; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 20px; }
@media (min-width:768px){ .wrap{ padding:0 32px; } }
@media (min-width:1024px){ .wrap{ padding:0 40px; } }

section{ position:relative; }

.eyebrow{
  font-family:var(--font-display); text-transform:uppercase; font-size:12px;
  letter-spacing:0.13em; font-weight:700; color:var(--navy);
  display:flex; align-items:center; gap:9px;
}
.eyebrow.on-dark{ color:var(--lime); }
.eyebrow::before{ content:''; width:20px; height:2px; background:var(--lime-dark); border-radius:2px; flex:none; }
.eyebrow.on-dark::before{ background:var(--lime); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font-display); font-weight:700; font-size:14px;
  padding:14px 24px; border-radius:9px; cursor:pointer; white-space:nowrap;
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }
.btn-lime{ background:var(--lime); color:var(--navy-1000); }
.btn-lime:hover{ box-shadow:0 10px 24px -10px rgba(159,202,62,.55); }
.btn-outline{ background:transparent; border:1.5px solid rgba(255,255,255,.55); color:var(--white); }
.btn-navy{ background:var(--navy-1000); color:var(--white); }
.btn-navy:hover{ box-shadow:0 10px 24px -10px rgba(1,28,48,.5); }
.btn-ghost{ background:transparent; border:1.5px solid rgba(1,66,106,.35); color:var(--navy-1000); }
.btn-block{ width:100%; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  background:var(--white); border-bottom:1px solid var(--border);
  position:sticky; top:0; z-index:100;
}
.headerbar{
  max-width:var(--container); margin:0 auto; padding:0 20px;
  height:76px; display:flex; align-items:center; justify-content:space-between;
}
@media (min-width:768px){ .headerbar{ padding:0 32px; height:88px; } }
@media (min-width:1024px){ .headerbar{ padding:0 40px; height:96px; } }

.brand{ display:flex; align-items:center; gap:11px; }
.brand img{ height:36px; }
@media (min-width:768px){ .brand img{ height:42px; } }
.brand-word{ font-family:var(--font-display); font-weight:700; font-size:17px; color:var(--navy); line-height:1.05; }
.brand-word span{ color:var(--lime-dark); font-weight:700; display:block; font-size:9px; letter-spacing:0.2em; margin-top:2px; }
@media (min-width:768px){
  .brand-word{ font-size:20px; }
  .brand-word span{ font-size:10.5px; }
}

.nav-desktop{ display:none; }
@media (min-width:1024px){
  .nav-desktop{ display:flex; align-items:center; gap:36px; }
}
.navlinks{ display:flex; align-items:center; gap:30px; font-family:var(--font-display); font-size:14px; font-weight:700; color:var(--navy); }
.navlinks a{ position:relative; padding:6px 0; }
.navlinks li.has-drop{ position:relative; }
.drop-toggle{ display:flex; align-items:center; gap:6px; cursor:pointer; font:inherit; color:inherit; }
.navlinks .active > a, .navlinks .active{ color:var(--navy); }
.navlinks li.active > a::after, .navlinks a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:3px; background:var(--lime); border-radius:2px;
}
.dropdown{
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  padding-top:14px; min-width:230px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .15s ease, transform .15s ease;
}
li.has-drop:hover .dropdown, li.has-drop:focus-within .dropdown{
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
}
.dropdown-inner{
  background:var(--white); border:1px solid var(--border); border-radius:12px;
  box-shadow:0 20px 40px -18px rgba(1,66,106,.25); padding:10px;
}
.dropdown a{ display:block; padding:10px 12px; border-radius:8px; font-size:13.5px; color:var(--ink); font-weight:500; }
.dropdown a:hover{ background:var(--lime-tint); color:var(--navy); }

.header-cta{ display:none; }
@media (min-width:1024px){ .header-cta{ display:inline-flex; padding:12px 22px; font-size:13.5px; } }

/* Mobile hamburger */
.hamburger{
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; border-radius:8px;
}
@media (min-width:1024px){ .hamburger{ display:none; } }
.hamburger span{ display:block; width:22px; height:2px; background:var(--navy-1000); border-radius:2px; transition:transform .2s ease, opacity .2s ease; margin:0 auto; }
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:76px 0 0 0; background:var(--white); z-index:99;
  transform:translateX(100%); transition:transform .25s ease; overflow-y:auto;
  padding:24px 20px 40px;
}
.mobile-menu.open{ transform:translateX(0); }
@media (min-width:1024px){ .mobile-menu{ display:none !important; } }
.mobile-menu ul{ display:flex; flex-direction:column; }
.mobile-menu > ul > li{ border-bottom:1px solid var(--border); }
.mobile-menu a, .mobile-menu .drop-toggle{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 4px; font-family:var(--font-display); font-weight:700; font-size:16px; color:var(--navy-1000); width:100%;
}
.mobile-submenu{ display:none; padding-left:14px; }
.mobile-submenu.open{ display:block; }
.mobile-submenu a{ font-weight:500; font-size:14.5px; padding:12px 4px; color:var(--slate); }
.mobile-menu .btn{ margin-top:20px; width:100%; }
.mobile-menu .drop-toggle svg{ transition:transform .2s ease; }
.mobile-menu .drop-toggle.open svg{ transform:rotate(180deg); }

/* =========================================================
   PAGE HERO BAND (inner pages)
   ========================================================= */
.pagehero{
  background:linear-gradient(135deg, var(--navy-1000) 0%, var(--navy) 65%, #045487 100%);
  padding:44px 0 52px; position:relative; overflow:hidden;
}
.pagehero::before{
  content:''; position:absolute; top:-120px; right:-120px; width:320px; height:320px;
  clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); background:var(--lime); opacity:.10;
}
.crumbs{ display:flex; align-items:center; gap:8px; font-family:var(--font-display); font-size:12px; font-weight:700; color:#a9c2d2; margin-bottom:14px; position:relative; z-index:2; flex-wrap:wrap; }
.crumbs .sep{ color:#5c7f97; }
.crumbs .cur{ color:var(--lime); }
.pagehero h1{ color:var(--white); font-size:28px; line-height:1.2; position:relative; z-index:2; margin-bottom:12px; }
.pagehero p{ color:#c9d9e4; font-size:15px; max-width:600px; position:relative; z-index:2; line-height:1.6; }
@media (min-width:768px){ .pagehero h1{ font-size:36px; } .pagehero p{ font-size:16px; } }
@media (min-width:1024px){ .pagehero{ padding:56px 0 64px; } .pagehero h1{ font-size:42px; } }

/* Extra breathing room when a stats-strip card overlaps right below */
.pagehero--stats p{ padding-bottom:22px; }
@media (min-width:768px){ .pagehero--stats p{ padding-bottom:32px; } }

/* =========================================================
   HOME HERO
   ========================================================= */
.hero{
  background:linear-gradient(135deg, var(--navy-1000) 0%, var(--navy) 62%, #045487 100%);
  position:relative; overflow:hidden; padding:44px 0 96px;
}
.hero::before{
  content:''; position:absolute; top:-160px; right:-200px; width:420px; height:420px;
  background:var(--lime); clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); opacity:.12;
}
.hero::after{
  content:''; position:absolute; bottom:-200px; left:-140px; width:340px; height:340px;
  clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); background:var(--lime); opacity:.06;
}
.hero-grid{ display:flex; flex-direction:column; gap:40px; position:relative; z-index:2; }
@media (min-width:1024px){ .hero-grid{ display:grid; grid-template-columns:1.05fr .85fr; gap:50px; align-items:center; } }

.hero-tag{
  display:inline-flex; align-items:center; gap:8px; background:rgba(197,232,108,.14);
  border:1px solid rgba(197,232,108,.4); color:var(--lime);
  font-family:var(--font-display); font-size:11.5px; font-weight:700; letter-spacing:.06em;
  padding:8px 14px; border-radius:30px; margin-bottom:20px; text-transform:uppercase;
}
.hero h1{ color:var(--white); font-size:32px; line-height:1.15; margin-bottom:18px; letter-spacing:-.01em; }
.hero h1 em{ font-style:normal; color:var(--lime); }
.hero p.lead{ color:#c9d9e4; font-size:15.5px; line-height:1.6; max-width:520px; margin-bottom:28px; }
@media (min-width:768px){ .hero h1{ font-size:42px; } .hero p.lead{ font-size:17px; } }
@media (min-width:1024px){ .hero h1{ font-size:50px; } }

.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:36px; }
.hero-trustrow{ display:flex; flex-wrap:wrap; gap:18px 28px; align-items:center; }
.hero-trustrow .item{ display:flex; align-items:center; gap:9px; color:#dbe7ee; font-size:13px; font-family:var(--font-display); font-weight:500; }
.hero-trustrow svg{ flex:none; }

.quote-card{
  background:var(--white); border-radius:18px; padding:26px 22px;
  box-shadow:0 30px 60px -20px rgba(1,28,48,.55); position:relative; z-index:3;
}
@media (min-width:768px){ .quote-card{ padding:34px 32px 30px; } }
.qc-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:6px; }
.quote-card h3{ font-size:18px; color:var(--navy-1000); line-height:1.3; }
@media (min-width:768px){ .quote-card h3{ font-size:21px; } }
.badge{ background:var(--lime-tint); color:var(--navy); font-family:var(--font-display); font-weight:700; font-size:10.5px; padding:6px 10px; border-radius:20px; white-space:nowrap; }
.quote-card p.sub{ color:var(--slate); font-size:13.5px; margin:6px 0 20px; line-height:1.5; }
.field{ margin-bottom:14px; }
.field label{ display:block; font-family:var(--font-display); font-size:11px; font-weight:700; color:var(--slate); margin-bottom:6px; text-transform:uppercase; letter-spacing:.05em; }
.field select, .field input, .field textarea{
  width:100%; border:1.5px solid var(--border); border-radius:9px; padding:12px 13px; font-size:14px; color:var(--ink);
  background:#fbfdfe; appearance:none;
}
.field textarea{ resize:vertical; min-height:90px; }
.field-row{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:520px){ .field-row{ grid-template-columns:1fr 1fr; } }
.submit-btn{
  width:100%; margin-top:6px; background:var(--navy-1000); color:var(--white);
  border:none; padding:15px; border-radius:9px; font-family:var(--font-display); font-weight:700; font-size:14px;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.submit-btn:hover{ box-shadow:0 14px 28px -12px rgba(1,28,48,.5); }
.fineprint{ font-size:11px; color:var(--slate-light); text-align:center; margin-top:12px; }
.form-msg{ display:none; margin-top:14px; padding:12px 14px; border-radius:9px; font-size:13px; font-family:var(--font-display); font-weight:700; }
.form-msg.show{ display:block; }
.form-msg.ok{ background:var(--lime-tint); color:var(--navy-1000); }
.form-msg.err{ background:#fdeaea; color:#a3312f; }

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats-strip{ margin:-56px auto 0; padding:0 16px; position:relative; z-index:10; max-width:1180px; }
@media (min-width:768px){ .stats-strip{ padding:0 32px; margin-top:-64px; } }
.stats-card{
  background:var(--white); border-radius:16px; box-shadow:0 20px 50px -18px rgba(1,66,106,.22);
  display:grid; grid-template-columns:1fr 1fr; gap:0;
}
@media (min-width:768px){ .stats-card{ grid-template-columns:repeat(4,1fr); } }
.stat{ padding:20px 16px; display:flex; gap:12px; align-items:center; border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.stat:nth-child(2n){ border-right:none; }
@media (min-width:768px){
  .stat{ padding:26px 22px; border-bottom:none; }
  .stat:nth-child(2n){ border-right:1px solid var(--border); }
  .stat:last-child{ border-right:none; }
}
.icon-badge{ width:44px; height:44px; border-radius:11px; background:var(--lime-tint); display:flex; align-items:center; justify-content:center; flex:none; }
@media (min-width:768px){ .icon-badge{ width:52px; height:52px; } }
.stat .num{ font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--navy-1000); line-height:1; }
@media (min-width:768px){ .stat .num{ font-size:24px; } }
.stat .num .plus{ font-size:.75em; font-weight:600; }
.stat .lbl{ font-size:11.5px; color:var(--slate); margin-top:4px; line-height:1.3; }
@media (min-width:768px){ .stat .lbl{ font-size:13px; } }

/* =========================================================
   SECTION HEADS
   ========================================================= */
.sec-head{ max-width:640px; margin-bottom:36px; }
.sec-head.center{ margin:0 auto 40px; text-align:center; max-width:600px; }
.sec-head.center .eyebrow{ justify-content:center; }
.sec-head h2{ font-size:26px; color:var(--navy-1000); margin-top:12px; line-height:1.2; }
.sec-head p{ color:var(--slate); font-size:15px; margin-top:12px; line-height:1.6; }
@media (min-width:768px){ .sec-head h2{ font-size:34px; } .sec-head p{ font-size:16px; } .sec-head{ margin-bottom:50px; } }

/* =========================================================
   SERVICES GRID (home)
   ========================================================= */
.services{ padding:76px 0 60px; background:var(--white); }
@media (min-width:1024px){ .services{ padding:120px 0 90px; } }
.svc-grid{ display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px){ .svc-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:1024px){ .svc-grid{ grid-template-columns:repeat(3,1fr); gap:26px; } }

.svc-card{
  border:1.5px solid var(--border); border-radius:16px; overflow:hidden; background:var(--white);
  display:flex; flex-direction:column; transition:box-shadow .2s ease, transform .2s ease;
}
.svc-card:hover{ box-shadow:0 18px 40px -22px rgba(1,66,106,.35); transform:translateY(-2px); }
.svc-card .thumb{ height:150px; overflow:hidden; position:relative; }
.svc-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.svc-card .thumb::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(1,28,48,0) 40%, rgba(1,28,48,.35) 100%); }
.svc-card .body{ padding:22px 22px 24px; flex:1; display:flex; flex-direction:column; }
.svc-card .icon-wrap{ width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; background:var(--lime-tint); flex:none; margin-top:-38px; position:relative; z-index:2; box-shadow:0 8px 18px -8px rgba(0,0,0,.25); }
.svc-card h3{ font-size:17px; color:var(--navy-1000); margin-bottom:8px; }
.svc-card p{ color:var(--slate); font-size:14px; line-height:1.6; margin-bottom:16px; flex:1; }
.svc-card .more{ font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--navy); display:inline-flex; align-items:center; gap:6px; }
.svc-card.dark{ background:var(--navy-1000); border-color:var(--navy-1000); }
.svc-card.dark .body{ justify-content:center; }
.svc-card.dark h3{ color:var(--white); }
.svc-card.dark p{ color:#a9bfcd; }
.svc-card.dark .more{ color:var(--lime); }
.svc-card.dark .icon-wrap{ background:rgba(197,232,108,.16); margin-top:0; box-shadow:none; }

/* Category cards (Seguridad / Limpieza) */
.svc-cat-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
@media (min-width:768px){ .svc-cat-grid{ grid-template-columns:1fr 1fr; gap:28px; } }
.svc-cat-card{
  border:1.5px solid var(--border); border-radius:18px; overflow:hidden; background:var(--white);
  display:flex; flex-direction:column; transition:box-shadow .2s ease, transform .2s ease;
}
.svc-cat-card:hover{ box-shadow:0 20px 44px -24px rgba(1,66,106,.35); transform:translateY(-2px); }
.svc-cat-card .thumb{ height:190px; overflow:hidden; position:relative; }
@media (min-width:768px){ .svc-cat-card .thumb{ height:220px; } }
.svc-cat-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.svc-cat-card .thumb::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(1,28,48,0) 40%, rgba(1,28,48,.35) 100%); }
.svc-cat-card .body{ padding:24px 26px 28px; flex:1; display:flex; flex-direction:column; }
.svc-cat-card .icon-wrap{ width:48px; height:48px; border-radius:13px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; margin-top:-42px; position:relative; z-index:2; box-shadow:0 8px 18px -8px rgba(0,0,0,.25); }
.svc-cat-card h3{ font-size:21px; color:var(--navy-1000); margin-bottom:8px; }
.svc-cat-card > .body > p{ color:var(--slate); font-size:14.5px; line-height:1.6; margin-bottom:20px; }
.svc-sublist{ display:flex; flex-direction:column; gap:10px; margin-bottom:22px; }
.svc-subitem{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border:1px solid var(--border); border-radius:11px; padding:12px 14px;
  font-family:var(--font-display); font-weight:500; font-size:13.5px; color:var(--ink);
  transition:border-color .15s ease, background .15s ease;
}
.svc-subitem:hover{ border-color:var(--lime-dark); background:var(--lime-tint); }
.svc-subitem span{ display:flex; align-items:center; gap:9px; }
.svc-cat-card .more{ font-family:var(--font-display); font-weight:700; font-size:13.5px; color:var(--navy); display:inline-flex; align-items:center; gap:6px; margin-top:auto; }

.svc-help-banner{
  margin-top:24px; display:flex; flex-direction:column; gap:16px; align-items:flex-start;
  background:var(--cloud); border:1px solid var(--border); border-radius:18px; padding:26px 28px;
}
@media (min-width:768px){ .svc-help-banner{ flex-direction:row; align-items:center; gap:22px; } }
.svc-help-banner .icon-wrap{ width:48px; height:48px; border-radius:13px; display:flex; align-items:center; justify-content:center; background:var(--lime-tint); flex:none; }
.svc-help-banner h3{ font-size:16.5px; color:var(--navy-1000); margin-bottom:4px; }
.svc-help-banner p{ font-size:14px; color:var(--slate); }
.svc-help-banner .btn{ flex:none; }
@media (min-width:768px){ .svc-help-banner > div{ flex:1; } }

/* =========================================================
   FEATURE / COTIZADOR
   ========================================================= */
.feature{ background:var(--cloud); padding:64px 0; }
@media (min-width:1024px){ .feature{ padding:100px 0; } }
.feature-grid{ display:flex; flex-direction:column; gap:40px; }
@media (min-width:1024px){ .feature-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:70px; align-items:center; } }
.feature h2{ font-size:24px; color:var(--navy-1000); margin:12px 0 16px; line-height:1.25; }
.feature p.desc{ color:var(--slate); font-size:15px; line-height:1.7; margin-bottom:22px; max-width:480px; }
@media (min-width:768px){ .feature h2{ font-size:32px; } .feature p.desc{ font-size:16px; } }
.feature-list{ display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
.feature-list .fi{ display:flex; gap:12px; align-items:flex-start; }
.feature-list .fi .dot{ width:24px; height:24px; border-radius:7px; background:var(--navy); flex:none; display:flex; align-items:center; justify-content:center; margin-top:2px; }
.feature-list .fi strong{ font-family:var(--font-display); font-size:14px; color:var(--navy-1000); display:block; }
.feature-list .fi span{ font-size:13px; color:var(--slate); }

.mock-phone{ background:var(--navy-1000); border-radius:24px; padding:18px; box-shadow:0 40px 70px -30px rgba(1,44,71,.45); max-width:340px; margin:0 auto; }
@media (min-width:1024px){ .mock-phone{ margin-left:auto; margin-right:0; max-width:380px; } }
.mock-screen{ background:var(--white); border-radius:14px; padding:22px 20px; }
.mock-step-label{ font-family:var(--font-display); font-size:10.5px; color:var(--slate); text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; font-weight:700; }
.mock-progress{ height:6px; background:var(--border); border-radius:6px; margin-bottom:20px; overflow:hidden; }
.mock-progress i{ display:block; height:100%; width:42%; background:var(--lime); border-radius:6px; }
.mock-q{ font-family:var(--font-display); font-weight:700; font-size:15px; color:var(--navy-1000); margin-bottom:16px; line-height:1.35; }
.mock-opts{ display:flex; flex-direction:column; gap:9px; }
.mock-opt{ border:1.5px solid var(--border); border-radius:10px; padding:12px 14px; font-size:13px; font-family:var(--font-display); font-weight:700; color:var(--ink); display:flex; align-items:center; gap:10px; cursor:pointer; }
.mock-opt.sel, .mock-opt:hover{ border-color:var(--lime-dark); background:var(--lime-tint); color:var(--navy-1000); }

.cotizador-embed{ width:100%; max-width:560px; margin:0 auto; border:2px solid var(--navy); border-radius:24px; box-shadow:0 34px 70px -22px rgba(1,66,106,.45); background:var(--white); overflow:hidden; }
@media (min-width:1024px){ .cotizador-embed{ margin-left:auto; margin-right:0; } }
.cotizador-iframe{ width:100%; height:470px; border:none; display:block; overflow:hidden; }

/* =========================================================
   VALUES
   ========================================================= */
.values{ background:var(--navy-1000); padding:64px 0; position:relative; overflow:hidden; }
@media (min-width:1024px){ .values{ padding:110px 0; } }
.val-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px 20px; position:relative; z-index:2; }
@media (min-width:640px){ .val-grid{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:1024px){ .val-grid{ grid-template-columns:repeat(5,1fr); gap:24px; } }
.val-item{ text-align:center; padding:0 6px; }
.val-item .diamond{ width:52px; height:52px; margin:0 auto 16px; background:linear-gradient(135deg, var(--lime) 0%, #7fae2e 100%); clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); display:flex; align-items:center; justify-content:center; }
@media (min-width:768px){ .val-item .diamond{ width:64px; height:64px; margin-bottom:22px; } }
.val-item h4{ font-family:var(--font-display); color:var(--white); font-size:14px; margin-bottom:8px; }
.val-item p{ color:#93aabb; font-size:12.5px; line-height:1.6; }
@media (min-width:768px){ .val-item h4{ font-size:15.5px; } .val-item p{ font-size:13px; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi{ padding:64px 0; background:var(--white); }
@media (min-width:1024px){ .testi{ padding:110px 0; } }
.testi-grid{ display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:768px){ .testi-grid{ grid-template-columns:repeat(3,1fr); gap:26px; } }
.testi-card{ background:var(--cloud); border-radius:16px; padding:26px 24px; border:1px solid var(--border); }
.stars{ display:flex; gap:3px; margin-bottom:14px; }
.testi-card p.q{ font-size:14.5px; color:var(--ink); line-height:1.65; margin-bottom:20px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.avatar{ width:40px; height:40px; border-radius:50%; background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:14px; flex:none; }
.testi-who .name{ font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--navy-1000); }
.testi-who .role{ font-size:11.5px; color:var(--slate); }

.greviews-card{
  max-width:420px; margin:0 auto; text-align:center; background:var(--cloud);
  border:1px solid var(--border); border-radius:20px; padding:36px 32px;
}
.greviews-score{ font-family:var(--font-display); font-weight:900; font-size:48px; color:var(--navy-1000); line-height:1; }
.greviews-stars{ position:relative; display:inline-block; font-size:26px; line-height:1; letter-spacing:3px; margin:14px 0 10px; }
.greviews-stars .stars-bg{ color:var(--border); }
.greviews-stars .stars-fg{ position:absolute; top:0; left:0; width:var(--rating); overflow:hidden; white-space:nowrap; color:var(--lime-dark); }
.greviews-count{ font-size:13.5px; color:var(--slate); margin-bottom:22px; }

/* Reviews carousel */
.reviews-carousel{ max-width:1000px; margin:44px auto 0; }
.rc-track{
  display:flex; gap:18px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:4px 4px 8px; -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.rc-track::-webkit-scrollbar{ display:none; }
.rc-card{
  flex:0 0 82%; scroll-snap-align:start; background:var(--cloud); border:1px solid var(--border);
  border-radius:16px; padding:22px 22px 24px; display:flex; flex-direction:column;
}
@media (min-width:640px){ .rc-card{ flex-basis:46%; } }
@media (min-width:1024px){ .rc-card{ flex-basis:31%; } }
.rc-top{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.rc-avatar{ width:42px; height:42px; border-radius:50%; background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:14px; flex:none; }
.rc-name{ font-family:var(--font-display); font-weight:700; font-size:13.5px; color:var(--navy-1000); }
.rc-meta{ font-size:12px; color:var(--lime-dark); font-weight:600; }
.rc-text{ font-size:14px; color:var(--ink); line-height:1.6; }
.rc-controls{ display:flex; align-items:center; justify-content:center; gap:16px; margin-top:20px; }
.rc-arrow{ width:38px; height:38px; border-radius:50%; border:1px solid var(--border); background:var(--white); display:flex; align-items:center; justify-content:center; flex:none; }
.rc-arrow:hover{ border-color:var(--lime-dark); background:var(--lime-tint); }
.rc-dots{ display:flex; gap:7px; }
.rc-dot{ width:7px; height:7px; border-radius:50%; background:var(--border); transition:background .15s ease, transform .15s ease; }
.rc-dot.active{ background:var(--navy); transform:scale(1.3); }

/* =========================================================
   FAQ
   ========================================================= */
.faq{ background:var(--cloud); padding:64px 0; }
@media (min-width:1024px){ .faq{ padding:110px 0; } }
.faq-wrap{ max-width:820px; margin:0 auto; }
.faq-item{ background:var(--white); border:1px solid var(--border); border-radius:14px; padding:18px 18px; margin-bottom:12px; }
@media (min-width:768px){ .faq-item{ padding:22px 24px; } }
.faq-q{ display:flex; align-items:center; justify-content:space-between; gap:14px; font-family:var(--font-display); font-weight:700; font-size:14.5px; color:var(--navy-1000); width:100%; text-align:left; }
@media (min-width:768px){ .faq-q{ font-size:15.5px; } }
.faq-q .chev{ width:28px; height:28px; border-radius:8px; background:var(--lime-tint); display:flex; align-items:center; justify-content:center; flex:none; transition:transform .2s ease; }
.faq-item.open .faq-q .chev{ transform:rotate(180deg); }
.faq-a{ font-size:14px; color:var(--slate); line-height:1.65; margin-top:0; max-width:680px; max-height:0; overflow:hidden; transition:max-height .25s ease, margin-top .25s ease; }
.faq-item.open .faq-a{ margin-top:14px; max-height:220px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{ background:var(--lime); padding:48px 0; position:relative; overflow:hidden; }
@media (min-width:1024px){ .cta-banner{ padding:70px 0; } }
.cta-banner::after{ content:''; position:absolute; right:-60px; top:-90px; width:260px; height:260px; clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); background:rgba(1,66,106,.08); }
.cta-inner{ display:flex; flex-direction:column; gap:24px; align-items:flex-start; position:relative; z-index:2; }
@media (min-width:768px){ .cta-inner{ flex-direction:row; align-items:center; justify-content:space-between; gap:40px; } }
.cta-inner h2{ font-size:22px; color:var(--navy-1000); max-width:560px; line-height:1.25; }
@media (min-width:768px){ .cta-inner h2{ font-size:30px; } }
.cta-inner p{ color:#0b3350; font-size:14px; margin-top:8px; opacity:.85; }
.cta-btns{ display:flex; gap:12px; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--navy-1000); color:#9db4c3; padding:52px 0 0; }
@media (min-width:1024px){ .site-footer{ padding:80px 0 0; } }
.foot-grid{ display:grid; grid-template-columns:1fr; gap:36px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.08); }
@media (min-width:640px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:1024px){ .foot-grid{ grid-template-columns:1.3fr .85fr .85fr 1fr; gap:50px; padding-bottom:60px; } }
.foot-brand .brand-word{ color:var(--white); }
.foot-brand p{ margin-top:16px; font-size:13px; line-height:1.7; max-width:280px; color:#8ba0b1; }
.foot-social{ display:flex; gap:10px; margin-top:20px; }
.foot-social a{ width:38px; height:38px; border-radius:9px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; }
.site-footer h5{ font-family:var(--font-display); color:var(--white); font-size:13px; letter-spacing:.04em; margin-bottom:18px; text-transform:uppercase; }
.site-footer ul{ display:flex; flex-direction:column; gap:11px; }
.site-footer ul a{ font-size:13.5px; color:#9db4c3; }
.foot-contact .row{ display:flex; gap:12px; margin-bottom:15px; align-items:flex-start; font-size:13.5px; color:#9db4c3; line-height:1.5; }
.foot-bottom{ display:flex; flex-direction:column; gap:8px; padding:22px 0; font-size:12px; color:#71879a; text-align:center; }
@media (min-width:768px){ .foot-bottom{ flex-direction:row; justify-content:space-between; text-align:left; } }
.foot-bottom a{ color:#9db4c3; }

/* =========================================================
   QUIENES SOMOS PAGE
   ========================================================= */
.qs-intro{ padding:64px 0 56px; background:var(--white); }
@media (min-width:1024px){ .qs-intro{ padding:110px 0 90px; } }
.qs-grid{ display:flex; flex-direction:column; gap:36px; }
@media (min-width:1024px){ .qs-grid{ display:grid; grid-template-columns:1fr .8fr; gap:70px; align-items:start; } }
.qs-grid p.body{ color:var(--slate); font-size:15px; line-height:1.8; margin-bottom:18px; }
.qs-panel{ background:var(--navy-1000); border-radius:20px; padding:30px 26px; position:relative; overflow:hidden; }
.qs-panel::before{ content:''; position:absolute; top:-60px; right:-60px; width:180px; height:180px; clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); background:var(--lime); opacity:.10; }
.qs-panel h3{ color:var(--white); font-size:17px; margin-bottom:20px; position:relative; z-index:2; }
.qs-item{ display:flex; gap:12px; margin-bottom:20px; position:relative; z-index:2; }
.qs-item .n{ font-family:var(--font-display); font-weight:700; color:var(--lime); font-size:14px; flex:none; width:24px; }
.qs-item strong{ font-family:var(--font-display); color:var(--white); font-size:13.5px; display:block; margin-bottom:4px; }
.qs-item span{ color:#9db4c3; font-size:12.5px; line-height:1.5; }

/* Counters (Quienes Somos) */
.counters{ background:var(--navy-1000); padding:48px 0; position:relative; overflow:hidden; }
@media (min-width:1024px){ .counters{ padding:76px 0; } }
.counters-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px 20px; position:relative; z-index:2; }
@media (min-width:640px){ .counters-grid{ grid-template-columns:repeat(4,1fr); } }
.counter-item{ text-align:center; }
.counter-num{ font-family:var(--font-display); font-weight:900; font-size:32px; color:var(--lime); line-height:1; display:flex; align-items:baseline; justify-content:center; gap:2px; }
@media (min-width:768px){ .counter-num{ font-size:44px; } }
.counter-num .plus{ font-size:.55em; font-weight:700; }
.counter-lbl{ margin-top:10px; font-size:12.5px; color:#a9bfcd; font-family:var(--font-display); font-weight:500; }
@media (min-width:768px){ .counter-lbl{ font-size:14px; } }

.qs-cert{ padding:56px 0; background:var(--cloud); }
@media (min-width:1024px){ .qs-cert{ padding:100px 0; } }
.cert-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (min-width:640px){ .cert-grid{ grid-template-columns:repeat(4,1fr); gap:22px; } }
.cert-card{ background:var(--white); border:1.5px solid var(--border); border-radius:14px; padding:22px 18px; text-align:center; }
.cert-card .ic{ width:44px; height:44px; border-radius:12px; background:var(--lime-tint); display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.cert-card h4{ font-family:var(--font-display); font-size:13.5px; color:var(--navy-1000); margin-bottom:6px; }
.cert-card p{ font-size:12px; color:var(--slate); line-height:1.5; }

/* =========================================================
   SERVICIOS DETAIL PAGE
   ========================================================= */
.svc-overview{ padding:56px 0 20px; background:var(--white); }
@media (min-width:1024px){ .svc-overview{ padding:90px 0 30px; } }
.svc-row{ display:flex; flex-direction:column; gap:32px; padding:44px 0; border-bottom:1px solid var(--border); }
.svc-row:last-child{ border-bottom:none; }
@media (min-width:1024px){
  .svc-row{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; padding:70px 0; }
  .svc-row.rev .txt{ order:2; }
  .svc-row.rev .panel{ order:1; }
}
.svc-row .tag{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-size:11px; font-weight:700; letter-spacing:.05em; color:var(--navy); background:var(--lime-tint); padding:6px 13px; border-radius:20px; text-transform:uppercase; margin-bottom:16px; }
.svc-row h3{ font-size:22px; color:var(--navy-1000); margin-bottom:14px; line-height:1.25; }
@media (min-width:768px){ .svc-row h3{ font-size:27px; } }
.svc-row p.desc{ color:var(--slate); font-size:14.5px; line-height:1.7; margin-bottom:20px; max-width:480px; }
@media (min-width:768px){ .svc-row p.desc{ font-size:15.5px; } }
.svc-feat{ display:flex; flex-direction:column; gap:11px; margin-bottom:24px; }
.svc-feat .f{ display:flex; gap:9px; align-items:flex-start; font-size:13.5px; color:var(--ink); }
.svc-feat .f svg{ flex:none; margin-top:2px; }

.svc-panel-img{ border-radius:20px; overflow:hidden; position:relative; height:220px; box-shadow:0 20px 45px -22px rgba(1,66,106,.35); }
@media (min-width:768px){ .svc-panel-img{ height:280px; } }
.svc-panel-img img{ width:100%; height:100%; object-fit:cover; }
.svc-panel-img::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(1,28,48,0) 45%, rgba(1,28,48,.55) 100%); }
.svc-panel-img .tagline{ position:absolute; left:20px; bottom:18px; z-index:2; color:var(--white); font-family:var(--font-display); font-weight:700; font-size:13.5px; display:flex; align-items:center; gap:8px; }
.svc-panel-img .tagline .dot-ic{ width:30px; height:30px; border-radius:8px; background:rgba(197,232,108,.9); display:flex; align-items:center; justify-content:center; }

.svc-cat-head{ max-width:640px; padding:36px 0 8px; }
.svc-cat-head:first-child{ padding-top:0; }
.svc-cat-head h2{ font-size:28px; color:var(--navy-1000); margin:12px 0 10px; }
@media (min-width:768px){ .svc-cat-head h2{ font-size:34px; } }
.svc-cat-head p{ color:var(--slate); font-size:15px; line-height:1.6; }

/* =========================================================
   CONTACTO PAGE
   ========================================================= */
.ct-section{ padding:56px 0 60px; background:var(--white); }
@media (min-width:1024px){ .ct-section{ padding:100px 0 110px; } }
.ct-grid{ display:flex; flex-direction:column-reverse; gap:32px; }
@media (min-width:1024px){ .ct-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:60px; align-items:start; } }

.ct-info-card{ background:var(--navy-1000); border-radius:20px; padding:28px 24px; position:relative; overflow:hidden; margin-bottom:18px; }
.ct-info-card::before{ content:''; position:absolute; top:-50px; right:-50px; width:140px; height:140px; clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%); background:var(--lime); opacity:.10; }
.ct-info-card h3{ color:var(--white); font-size:17px; margin-bottom:20px; position:relative; z-index:2; }
.ct-row{ display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; position:relative; z-index:2; }
.ct-row:last-child{ margin-bottom:0; }
.ct-row .ic{ width:40px; height:40px; border-radius:10px; background:rgba(197,232,108,.14); display:flex; align-items:center; justify-content:center; flex:none; }
.ct-row strong{ font-family:var(--font-display); color:var(--white); font-size:13.5px; display:block; margin-bottom:3px; }
.ct-row span{ color:#9db4c3; font-size:12.5px; line-height:1.5; }

.ct-social-card{ background:var(--cloud); border-radius:20px; padding:24px; border:1px solid var(--border); }
.ct-social-card h4{ font-family:var(--font-display); font-size:13.5px; color:var(--navy-1000); margin-bottom:14px; }
.ct-social-row{ display:flex; gap:10px; }
.ct-social-row a{ width:42px; height:42px; border-radius:11px; background:var(--white); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; }

.ct-form{ background:var(--cloud); border:1px solid var(--border); border-radius:20px; padding:24px; }
@media (min-width:768px){ .ct-form{ padding:40px; } }
.ct-form h3{ font-size:19px; color:var(--navy-1000); margin-bottom:6px; }
.ct-form p.sub{ color:var(--slate); font-size:13.5px; margin-bottom:22px; }
.ct-field-row{ display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:14px; }
@media (min-width:520px){ .ct-field-row{ grid-template-columns:1fr 1fr; } }
.ct-field{ margin-bottom:14px; }
.ct-field label{ display:block; font-family:var(--font-display); font-size:11px; font-weight:700; color:var(--slate); margin-bottom:6px; text-transform:uppercase; letter-spacing:.05em; }
.ct-field input, .ct-field select, .ct-field textarea{
  width:100%; border:1.5px solid var(--border); border-radius:9px; padding:13px 14px; font-size:14px; color:var(--ink); background:var(--white);
}
.ct-field textarea{ min-height:100px; resize:vertical; }

.ct-map{ background:var(--white); padding-bottom:60px; }
.map-box{ height:320px; border-radius:20px; overflow:hidden; border:1px solid var(--border); }
.map-box iframe{ width:100%; height:100%; border:0; display:block; }
@media (min-width:640px){ .map-box{ height:420px; } }
@media (min-width:1024px){ .map-box{ height:520px; } }

/* =========================================================
   UTILITIES / MISC
   ========================================================= */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .5s ease, transform .5s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
  html{ scroll-behavior:auto; }
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float{
  position:fixed; right:18px; bottom:18px; z-index:200;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px -8px rgba(0,0,0,.4);
  transition:transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 16px 34px -8px rgba(0,0,0,.45); }
@media (min-width:768px){ .whatsapp-float{ right:28px; bottom:28px; width:60px; height:60px; } }
