/* =========================================================
   DOTEX — Extintores y Gases Industriales
   style.css — hoja de estilos única del sitio
   ========================================================= */

:root{
  --verde: #006837;
  --verde-suave: #E7F1EB;
  --azul: #005FA3;
  --naranja: #F58220;
  --amarillo: #FFC72C;
  --negro: #111111;
  --negro-2: #0A0A0A;
  --blanco: #FFFFFF;
  --gris-claro: #F5F7FA;
  --gris-borde: #E3E6EA;
  --texto-sec: #5C6470;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --container: 1280px;
  --radius: 14px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

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

html{ scroll-behavior:smooth; }

body{
  font-family:var(--font-body);
  color:var(--negro);
  background:var(--blanco);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; border:none; background:none; cursor:pointer; }
section{ position:relative; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding-left:clamp(24px, 5vw, 80px);
  padding-right:clamp(24px, 5vw, 80px);
}

/* ---------- utilidades compartidas ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--verde);
  margin-bottom:20px;
}
.eyebrow .eyebrow__dash{ width:36px; height:1px; background:var(--verde); }

.accent{ color:var(--verde); }
.accent--azul{ color:var(--azul); }

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-size:14.5px;
  font-weight:600;
  letter-spacing:0.3px;
  padding:16px 32px;
  border-radius:999px;
  cursor:pointer;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease;
}
.btn svg{ width:16px; height:16px; flex-shrink:0; }

.btn--primary{
  background:var(--verde);
  color:var(--blanco);
  box-shadow:0 8px 26px rgba(10,138,58,0.3);
}
.btn--primary:hover{ transform:translateY(-3px); box-shadow:0 14px 36px rgba(10,138,58,0.4); }

.btn--outline-light{
  background:transparent;
  color:var(--blanco);
  border:1px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover{ background:rgba(255,255,255,0.1); border-color:#fff; transform:translateY(-3px); }

.btn--outline-dark{
  background:transparent;
  color:var(--negro);
  border:1px solid var(--gris-borde);
}
.btn--outline-dark:hover{ border-color:var(--negro); transform:translateY(-3px); }

.btn--whatsapp{
  background:#25D366;
  color:var(--blanco);
}
.btn--whatsapp:hover{ transform:translateY(-3px); box-shadow:0 10px 26px rgba(37,211,102,0.4); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom:56px;
}
.section-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.8rem, 3vw, 2.5rem);
  line-height:1.18;
  letter-spacing:-0.3px;
  max-width:18ch;
}
.section-note{
  max-width:36ch;
  font-size:14.5px;
  line-height:1.7;
  color:var(--texto-sec);
  padding-bottom:5px;
}

@media (prefers-reduced-motion: reduce){
  .reveal{ transition:none; opacity:1; transform:none; }
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px clamp(24px, 5vw, 80px);
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.is-scrolled{
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  padding-top:14px;
  padding-bottom:14px;
  box-shadow:0 2px 20px rgba(0,0,0,0.06);
}

.nav__logo img{ height:32px; width:auto; transition:filter .35s ease; }
.nav.is-scrolled .nav__logo img{ filter:none; }
.nav:not(.is-scrolled) .nav__logo img{ filter:drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }

.nav__links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav__links a{
  font-size:13.5px;
  font-weight:500;
  letter-spacing:0.2px;
  color:var(--blanco);
  position:relative;
  padding-bottom:4px;
  transition:color .3s ease;
}
.nav.is-scrolled .nav__links a{ color:var(--negro); }
.nav__links a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:1px;
  background:var(--verde);
  transition:width .3s ease;
}
.nav__links a:hover::after{ width:100%; }

.nav__actions{ display:flex; align-items:center; gap:14px; }

.nav__whatsapp{
  display:flex;
  align-items:center;
  gap:8px;
  background:#25D366;
  color:var(--blanco);
  font-size:13px;
  font-weight:600;
  padding:10px 18px;
  border-radius:999px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.nav__whatsapp:hover{ transform:translateY(-2px); box-shadow:0 8px 20px rgba(37,211,102,0.35); }
.nav__whatsapp svg{ width:15px; height:15px; }

.nav__burger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:26px;
}
.nav__burger span{
  height:2px;
  background:var(--blanco);
  transition:all .3s ease;
}
.nav.is-scrolled .nav__burger span{ background:var(--negro); }

.nav__mobile{
  position:fixed;
  inset:0;
  background:var(--negro);
  z-index:99;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:30px;
  transform:translateY(-100%);
  transition:transform .4s var(--ease);
}
.nav__mobile.is-open{ transform:translateY(0); }
.nav__mobile a{
  color:var(--blanco);
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:600;
}

@media (max-width:900px){
  .nav__links{ display:none; }
  .nav__burger{ display:flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
}

.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 32%;
  animation:kenburns 22s ease-in-out infinite alternate;
  filter:saturate(0.55) contrast(1.08) brightness(0.95);
}
.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,9,8,0.82) 0%, rgba(8,9,8,0.6) 38%, rgba(8,9,8,0.88) 100%),
    rgba(10,12,10,0.5);
}
@keyframes kenburns{
  0%{ transform:scale(1) translate(0,0); }
  100%{ transform:scale(1.09) translate(-1%,-1%); }
}

.hero__content{
  position:relative;
  z-index:5;
  max-width:var(--container);
  margin:0 auto;
  width:100%;
  padding:180px clamp(24px, 5vw, 80px) 0;
  color:var(--blanco);
}

.hero__title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(2.4rem, 6vw, 5.2rem);
  line-height:1.06;
  letter-spacing:-0.5px;
  text-transform:uppercase;
  max-width:15ch;
}
.hero__title .line{ display:block; overflow:hidden; }
.hero__title .line span{
  display:block;
  transform:translateY(110%);
  animation:revealLine .85s var(--ease) forwards;
}
.hero__title .line:nth-child(1) span{ animation-delay:.3s; }
.hero__title .line:nth-child(2) span{ animation-delay:.42s; }
.hero__title .line:nth-child(3) span{ animation-delay:.54s; }
.hero__title .line:nth-child(4) span{ animation-delay:.66s; }
@keyframes revealLine{ to{ transform:translateY(0); } }

.hero__subtitle{
  font-size:clamp(1rem, 1.6vw, 1.15rem);
  line-height:1.65;
  color:rgba(255,255,255,0.82);
  max-width:46ch;
  margin-top:26px;
  opacity:0;
  animation:fadeUp .8s ease forwards .85s;
}
@keyframes fadeUp{ from{ opacity:0; transform:translateY(18px);} to{ opacity:1; transform:translateY(0);} }

.hero__actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:40px;
  opacity:0;
  animation:fadeUp .8s ease forwards 1s;
}

.hero__bottom{
  position:relative;
  z-index:5;
  max-width:var(--container);
  margin:56px auto 0;
  width:100%;
  padding:0 clamp(24px, 5vw, 80px) 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp .8s ease forwards 1.2s;
}

.hero__meta{ display:flex; gap:44px; }
.hero__meta div{ font-size:11.5px; letter-spacing:1px; color:rgba(255,255,255,0.55); font-weight:500; }
.hero__meta strong{
  display:block;
  font-family:var(--font-display);
  font-size:20px;
  color:var(--blanco);
  font-weight:600;
  margin-bottom:4px;
}
.scroll-cue{
  display:flex; align-items:center; gap:12px;
  font-size:11px; letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,0.6); font-weight:600;
}
.scroll-cue__bar{ width:1px; height:30px; background:rgba(255,255,255,0.3); position:relative; overflow:hidden; }
.scroll-cue__bar::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:var(--verde); animation:scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{ 0%{top:-100%;} 50%{top:100%;} 50.01%{top:-100%;} 100%{top:-100%;} }

@media (max-width:700px){ .hero__meta{ display:none; } }

/* WhatsApp flotante */
.whatsapp-float{
  position:fixed; right:24px; bottom:24px; z-index:80;
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 28px rgba(37,211,102,0.45);
  animation:floatIn .7s ease forwards 1.6s, floatBob 3.2s ease-in-out infinite 2.4s;
  opacity:0; transform:scale(0.5);
}
.whatsapp-float::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  border:2px solid #25D366; animation:ping 2.4s cubic-bezier(0,0,.2,1) infinite;
}
.whatsapp-float svg{ width:27px; height:27px; z-index:2; }
@keyframes ping{ 0%{transform:scale(1); opacity:.6;} 100%{transform:scale(1.7); opacity:0;} }
@keyframes floatIn{ to{ opacity:1; transform:scale(1);} }
@keyframes floatBob{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

/* =========================================================
   NOSOTROS (historia + declaración)
   ========================================================= */
.nosotros{
  position:relative;
  color:var(--blanco);
  padding:130px 0 120px;
  overflow:hidden;
}
.nosotros__bg{
  position:absolute; inset:0; z-index:0;
}
.nosotros__bg img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(0.6) contrast(1.05) brightness(0.9);
}
.nosotros__bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,9,8,0.93) 0%, rgba(8,9,8,0.88) 100%);
}
.nosotros .container{ position:relative; z-index:1; }
.nosotros .eyebrow{ justify-content:center; width:100%; }

.historia{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
  margin-bottom:140px;
  position:relative;
}
.historia::before{
  content:"";
  position:absolute; top:11px;
  left:16.66%; right:16.66%;
  height:1px; background:rgba(255,255,255,0.14);
}
.paso__year{
  font-family:var(--font-display);
  font-weight:700; font-size:13px; letter-spacing:1px;
  color:var(--verde); margin-bottom:22px;
  position:relative; display:inline-block; padding-left:22px;
}
.paso__year::before{
  content:""; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:9px; height:9px; border-radius:50%; background:var(--verde);
  box-shadow:0 0 0 4px rgba(10,138,58,0.18);
}
.paso__title{
  font-family:var(--font-display); font-weight:600; font-size:1.05rem;
  line-height:1.4; margin-bottom:10px; max-width:26ch;
}
.paso__desc{ font-size:13.5px; line-height:1.7; color:rgba(255,255,255,0.6); max-width:32ch; }

@media (max-width:900px){
  .historia{ grid-template-columns:1fr; gap:48px; }
  .historia::before{ display:none; }
}

.declaracion{ text-align:center; max-width:920px; margin:0 auto 46px; }
.declaracion__kicker{
  font-size:13px; font-weight:600; letter-spacing:1px;
  color:rgba(255,255,255,0.5); margin-bottom:20px; text-transform:uppercase;
}
.declaracion__main{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(1.9rem, 4.4vw, 3.4rem); line-height:1.18; letter-spacing:-0.5px;
}
.declaracion__main .out{ color:rgba(255,255,255,0.38); }
.declaracion__main .in{ color:var(--blanco); }
.declaracion__sub{
  margin-top:30px; font-size:clamp(1rem, 1.6vw, 1.2rem); line-height:1.6;
  color:rgba(255,255,255,0.62); max-width:44ch; margin-left:auto; margin-right:auto;
}
.declaracion__sub strong{ color:var(--blanco); font-weight:600; }

.valores{
  display:flex; flex-wrap:wrap; justify-content:center; gap:12px;
  margin:70px auto 0; max-width:760px;
}
.valor{
  font-size:12.5px; font-weight:600; letter-spacing:0.4px;
  padding:11px 20px; border-radius:999px;
  border:1px solid rgba(255,255,255,0.16); color:rgba(255,255,255,0.75);
  transition:all .35s ease;
}
.valor:hover{ border-color:var(--verde); color:var(--blanco); background:rgba(10,138,58,0.12); }

.slogan{
  margin-top:110px; padding-top:56px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; flex-wrap:wrap;
}
.slogan__brand img{ height:34px; width:auto; }
.slogan__text{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(1.1rem, 2vw, 1.5rem); letter-spacing:-0.2px; text-align:right;
}
.slogan__text span{ color:var(--verde); }

@media (max-width:700px){
  .slogan{ flex-direction:column; align-items:flex-start; }
  .slogan__text{ text-align:left; }
}

/* =========================================================
   GALERÍA
   ========================================================= */
.galeria{ background:var(--gris-claro); padding:100px 0; }
.galeria-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:18px;
  height:420px;
}
.galeria-item{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 20px 50px rgba(17,17,17,0.1);
}
.galeria-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease);
}
.galeria-item:hover img{ transform:scale(1.05); }

@media (max-width:900px){
  .galeria-grid{ grid-template-columns:1fr 1fr; height:auto; }
  .galeria-item{ height:220px; }
  .galeria-item:first-child{ grid-column:1 / -1; height:280px; }
}
@media (max-width:560px){
  .galeria-grid{ grid-template-columns:1fr; }
  .galeria-item, .galeria-item:first-child{ height:240px; grid-column:auto; }
}

/* =========================================================
   SERVICIOS (antes ¿Qué hacemos?) — premium industrial oscuro
   ========================================================= */
.servicios{
  position:relative;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(10,138,58,0.09), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 100%, rgba(0,95,163,0.07), transparent 60%),
    #0B0B0B;
  color:var(--blanco);
  padding:120px 0;
  overflow:hidden;
}

.servicios .section-head{ align-items:flex-start; margin-bottom:64px; }
.servicios .eyebrow{ color:var(--verde); }
.servicios .section-title{
  color:var(--blanco);
  font-size:clamp(1.9rem, 3.4vw, 2.7rem);
  max-width:15ch;
}
.servicios .section-title .accent{ color:var(--verde); }
.servicios .section-title-rule{
  width:56px; height:3px; background:var(--verde); border-radius:2px;
  margin-top:20px;
}
.servicios .section-note{ color:rgba(255,255,255,0.55); max-width:34ch; }

.sv-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  margin-bottom:36px;
}
.sv-card{
  background:linear-gradient(165deg, #1A1A1A 0%, #161616 100%);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:18px;
  padding:30px 26px 28px;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}
.sv-card:hover{
  transform:translateY(-8px);
  border-color:rgba(10,138,58,0.4);
  box-shadow:0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(10,138,58,0.15), 0 0 40px rgba(10,138,58,0.12);
}
.sv-card__art{
  height:150px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.sv-card__art svg{ width:100%; height:100%; }
.sv-card__art img{
  width:100%; height:100%; object-fit:contain;
  transition:transform .5s var(--ease);
}
.sv-card:hover .sv-card__art img{ transform:scale(1.05); }
.sv-card__icon{
  width:34px; height:34px; border-radius:9px;
  background:rgba(10,138,58,0.14);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.sv-card__icon svg{ width:18px; height:18px; stroke:var(--verde); fill:none; stroke-width:1.8; }
.sv-card__title{ font-family:var(--font-display); font-weight:600; font-size:16.5px; margin-bottom:10px; line-height:1.3; }
.sv-card__desc{ font-size:13px; line-height:1.6; color:rgba(255,255,255,0.55); margin-bottom:14px; min-height:60px; }
.sv-card__tags{ font-size:11.5px; color:var(--verde); line-height:1.6; margin-bottom:18px; }

.btn--sv{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(10,138,58,0.14);
  border:1px solid rgba(10,138,58,0.4);
  color:var(--verde);
  font-size:12.8px; font-weight:600;
  padding:11px 18px; border-radius:7px;
  transition:all .3s ease;
}
.btn--sv svg{ width:14px; height:14px; }
.btn--sv:hover{ background:var(--verde); color:var(--blanco); border-color:var(--verde); }

.sv-bar{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:16px;
  padding:28px 10px;
}
.sv-bar__item{
  display:flex; align-items:flex-start; gap:12px;
  padding:0 22px;
  border-right:1px solid rgba(255,255,255,0.08);
}
.sv-bar__item:last-child{ border-right:none; }
.sv-bar__item svg{ width:22px; height:22px; flex-shrink:0; stroke:var(--verde); fill:none; stroke-width:1.7; margin-top:2px; }
.sv-bar__title{ font-family:var(--font-display); font-weight:600; font-size:13px; margin-bottom:4px; }
.sv-bar__desc{ font-size:11.8px; line-height:1.5; color:rgba(255,255,255,0.5); }

@media (max-width:1000px){
  .sv-grid{ grid-template-columns:repeat(2, 1fr); }
  .sv-bar{ grid-template-columns:repeat(2, 1fr); }
  .sv-bar__item{ border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); padding-bottom:18px; margin-bottom:18px; }
  .sv-bar__item:nth-child(2n){ border-right:none; }
}
@media (max-width:640px){
  .sv-grid{ grid-template-columns:1fr; }
  .sv-bar{ grid-template-columns:1fr; }
}

/* =========================================================
   ¿POR QUÉ ELEGIR DOTEX? — 6 tarjetas
   ========================================================= */
.por-que{
  position:relative;
  background:
    radial-gradient(ellipse 800px 500px at 90% 10%, rgba(10,138,58,0.08), transparent 60%),
    linear-gradient(180deg, #0D0D0D 0%, #0B0B0B 100%);
  color:var(--blanco);
  padding:120px 0;
  overflow:hidden;
}
.por-que .section-head{ align-items:flex-start; margin-bottom:70px; }
.por-que .eyebrow{ color:var(--verde); justify-content:flex-start; width:auto; }
.por-que .section-title{ color:var(--blanco); max-width:20ch; text-align:left; margin:0; }
.por-que .section-title-rule{ width:56px; height:3px; background:var(--verde); border-radius:2px; margin-top:20px; }
.por-que .section-note{ color:rgba(255,255,255,0.55); max-width:38ch; }

.pq-head{ text-align:center; max-width:760px; margin:0 auto 64px; }
.pq-head .eyebrow{ color:var(--verde); }
.pq-head__title{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(1.9rem, 3.6vw, 2.7rem); color:var(--blanco);
  letter-spacing:-0.3px;
}
.pq-head__title .accent{ color:var(--verde); }
.pq-head .section-title-rule{ width:64px; height:3px; background:var(--verde); border-radius:2px; }
.pq-head__note{
  margin-top:26px; font-size:15px; line-height:1.7; color:rgba(255,255,255,0.6);
}

.pq-commit{
  margin-top:40px;
  display:flex; align-items:center; gap:16px;
  padding:22px 28px; border-radius:14px;
  background:rgba(10,138,58,0.06);
  border:1px solid rgba(10,138,58,0.25);
}
.pq-commit svg{ width:26px; height:26px; flex-shrink:0; }
.pq-commit p{ font-size:14.5px; color:rgba(255,255,255,0.8); }
.pq-commit p span{ color:var(--verde); font-weight:600; }

@media (max-width:600px){
  .pq-commit{ flex-direction:column; text-align:center; }
}

.pq-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  border:none;
}
.pq-item{
  position:relative;
  padding:38px 30px 32px;
  border:1px solid rgba(255,255,255,0.07);
  border-radius:18px;
  background:linear-gradient(165deg, #1A1A1A 0%, #161616 100%);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}
.pq-item::before{ display:none; }
.pq-item:hover{
  background:linear-gradient(165deg, #1A1A1A 0%, #161616 100%);
  transform:translateY(-8px);
  border-color:rgba(10,138,58,0.4);
  box-shadow:0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(10,138,58,0.12);
}
.pq-item__badge{
  width:84px; height:84px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(10,138,58,0.35), rgba(10,138,58,0.08) 70%);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:26px;
  transition:transform .4s ease;
}
.pq-item:hover .pq-item__badge{ transform:scale(1.08); }
.pq-item__badge svg{ width:46px; height:46px; }
.pq-item__title{ font-family:var(--font-display); font-weight:600; font-size:16.5px; margin-bottom:10px; color:var(--blanco); }
.pq-item__desc{ font-size:13px; line-height:1.65; color:rgba(255,255,255,0.55); }

@media (max-width:960px){ .pq-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:640px){ .pq-grid{ grid-template-columns:1fr; } }

/* =========================================================
   PRODUCTOS — cilindros ilustrados
   ========================================================= */
.productos{ background:var(--blanco); padding:120px 0; }

.prod-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-bottom:32px;
}
.cyl-card{
  padding:30px 26px 28px;
  border-radius:var(--radius);
  border:1px solid var(--gris-borde);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cyl-card:hover{ transform:translateY(-6px); box-shadow:0 22px 44px rgba(17,17,17,0.08); }
.cyl-card__photo{
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}
.cyl-card__photo img{ max-height:100%; width:auto; object-fit:contain; }
.cyl-card__photo svg{ width:56px; height:110px; }
.cyl-card__title{ font-family:var(--font-display); font-weight:600; font-size:15px; margin-bottom:8px; }
.cyl-card__desc{ font-size:12.5px; line-height:1.65; color:var(--texto-sec); margin-bottom:14px; min-height:20px; }
.cyl-card__link{ font-size:12.5px; font-weight:600; color:var(--verde); transition:opacity .3s ease; }
.cyl-card__link:hover{ opacity:0.7; }

@media (max-width:1000px){ .prod-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .prod-grid{ grid-template-columns:1fr; } .cyl-card__desc{ min-height:0; } }

.extintores{ background:var(--blanco); padding:0 0 120px; }

.extintores-cta{
  position:relative;
  background:
    radial-gradient(ellipse 700px 500px at 10% 20%, rgba(10,138,58,0.09), transparent 60%),
    #0B0B0B;
  border-radius:24px;
  overflow:hidden;
  padding:clamp(32px, 5vw, 64px);
}
.ext-grid{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:56px;
  align-items:center;
}
.ext-media{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,0.5);
}
.ext-media img{ width:100%; display:block; }
.ext-media::after{
  content:"";
  position:absolute; inset:0;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.06);
  border-radius:16px;
}
.ext-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--verde); margin-bottom:18px;
}
.ext-eyebrow svg{ width:16px; height:16px; stroke:var(--verde); fill:none; stroke-width:1.8; }
.ext-title{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(1.7rem, 3vw, 2.3rem); line-height:1.2; color:var(--blanco);
  margin-bottom:18px;
}
.ext-title .accent{ color:var(--verde); }
.ext-desc{ font-size:14.5px; line-height:1.7; color:rgba(255,255,255,0.6); max-width:46ch; margin-bottom:36px; }

.ext-benefits{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
  margin-bottom:34px;
}
.ext-benefit{ display:flex; align-items:flex-start; gap:12px; }
.ext-benefit svg{ width:22px; height:22px; flex-shrink:0; stroke:var(--verde); fill:none; stroke-width:1.7; margin-top:2px; }
.ext-benefit__title{ font-family:var(--font-display); font-weight:600; font-size:13.5px; color:var(--blanco); margin-bottom:3px; }
.ext-benefit__desc{ font-size:12px; line-height:1.5; color:rgba(255,255,255,0.5); }

.ext-trust{
  display:flex; align-items:flex-start; gap:12px;
  padding-top:26px; margin-top:6px;
  border-top:1px solid rgba(255,255,255,0.08);
  margin-bottom:28px;
}
.ext-trust svg{ width:20px; height:20px; flex-shrink:0; stroke:var(--verde); fill:none; stroke-width:1.7; margin-top:2px; }
.ext-trust__title{ font-family:var(--font-display); font-weight:600; font-size:13.5px; color:var(--blanco); margin-bottom:3px; }
.ext-trust__desc{ font-size:12.5px; line-height:1.55; color:rgba(255,255,255,0.5); max-width:44ch; }

.btn--ext{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--verde); color:var(--blanco);
  font-family:var(--font-body); font-weight:600; font-size:14.5px;
  padding:17px 34px; border-radius:9px;
  box-shadow:0 10px 30px rgba(10,138,58,0.3);
  transition:transform .3s ease, box-shadow .3s ease;
}
.btn--ext:hover{ transform:translateY(-3px); box-shadow:0 16px 40px rgba(10,138,58,0.45); }
.btn--ext svg{ width:17px; height:17px; }

@media (max-width:900px){
  .ext-grid{ grid-template-columns:1fr; gap:36px; }
  .ext-media{ max-width:340px; margin:0 auto; }
}
@media (max-width:560px){
  .ext-benefits{ grid-template-columns:1fr; }
}

/* =========================================================
   COBERTURA
   ========================================================= */
.cobertura{ background:var(--blanco); padding:120px 0; }

.cob-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  align-items:center;
  margin-bottom:64px;
}
.cob-title{
  font-family:var(--font-display); font-weight:700;
  font-size:clamp(1.9rem, 3.4vw, 2.7rem); line-height:1.15;
  letter-spacing:-0.4px; text-transform:uppercase; margin-bottom:22px;
}
.cob-desc{ font-size:14.5px; line-height:1.75; color:var(--texto-sec); max-width:42ch; margin-bottom:30px; }

.lugares{ display:flex; flex-direction:column; }
.lugar{ display:flex; align-items:flex-start; gap:16px; padding:14px 0; border-bottom:1px solid var(--gris-borde); }
.lugar:first-child{ padding-top:0; }
.lugar__pin{
  flex-shrink:0; width:34px; height:34px; border-radius:50%;
  background:var(--verde); display:flex; align-items:center; justify-content:center;
}
.lugar__pin svg{ width:16px; height:16px; stroke:var(--blanco); fill:none; stroke-width:2; }
.lugar__name{ font-family:var(--font-display); font-weight:600; font-size:14px; margin-bottom:2px; }
.lugar__desc{ font-size:12.3px; color:var(--texto-sec); line-height:1.5; }

.cob-notas{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:28px; }
.nota{ display:flex; align-items:flex-start; gap:12px; padding:18px; border-radius:12px; border:1px solid var(--gris-borde); background:var(--gris-claro); }
.nota svg{ width:22px; height:22px; flex-shrink:0; stroke:var(--verde); fill:none; stroke-width:1.7; margin-top:2px; }
.nota__title{ font-family:var(--font-display); font-weight:600; font-size:12.5px; margin-bottom:4px; }
.nota__desc{ font-size:11.5px; line-height:1.5; color:var(--texto-sec); }

.cob-mapa{ display:block; border-radius:20px; overflow:hidden; box-shadow:0 30px 70px rgba(17,17,17,0.12); border:1px solid var(--gris-borde); transition:box-shadow .35s ease, transform .35s ease; cursor:pointer; }
.cob-mapa:hover{ transform:translateY(-4px); box-shadow:0 40px 80px rgba(17,17,17,0.18); }

@media (max-width:960px){
  .cob-grid{ grid-template-columns:1fr; }
  .cob-notas{ grid-template-columns:1fr; }
}

.cob-extendida{
  padding-top:56px;
  border-top:1px solid var(--gris-borde);
}
.cob-extendida__title{
  font-family:var(--font-display); font-weight:600; font-size:15px;
  letter-spacing:0.1px; margin-bottom:24px; color:var(--negro);
  max-width:44ch;
}
.cob-tags{ display:flex; flex-wrap:wrap; gap:12px; }
.cob-tag{
  font-size:13px; font-weight:500; padding:10px 18px;
  border-radius:999px; border:1px solid var(--gris-borde);
  color:var(--negro); transition:all .3s ease;
}
.cob-tag:hover{ border-color:var(--verde); background:var(--verde-suave); color:var(--verde); }

/* =========================================================
   CONTACTO
   ========================================================= */
.contacto{ background:var(--negro); color:var(--blanco); padding:120px 0; }
.contacto .eyebrow{ color:var(--verde); }
.contacto .section-title{ color:var(--blanco); }

.contacto-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.form-group{ margin-bottom:20px; }
.form-group label{
  display:block; font-size:12px; font-weight:600; letter-spacing:0.4px;
  text-transform:uppercase; color:rgba(255,255,255,0.5); margin-bottom:8px;
}
.form-group input, .form-group textarea{
  width:100%; padding:14px 16px; border-radius:8px;
  border:1px solid rgba(255,255,255,0.18); background:rgba(255,255,255,0.04);
  color:var(--blanco); font-family:var(--font-body); font-size:14px;
  transition:border-color .3s ease, background .3s ease;
}
.form-group input:focus, .form-group textarea:focus{
  outline:none; border-color:var(--verde); background:rgba(255,255,255,0.06);
}
.form-group textarea{ resize:vertical; min-height:110px; }
.form-msg{ margin-top:14px; font-size:13px; color:var(--verde); display:none; }
.form-msg.is-visible{ display:block; }

.contacto-info{ display:flex; flex-direction:column; gap:26px; }
.info-item{ display:flex; gap:16px; align-items:flex-start; }
.info-item__icon{
  width:42px; height:42px; border-radius:10px; flex-shrink:0;
  background:rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:center;
}
.info-item__icon svg{ width:20px; height:20px; stroke:var(--verde); fill:none; stroke-width:1.7; }
.info-item__title{ font-family:var(--font-display); font-weight:600; font-size:13.5px; margin-bottom:3px; }
.info-item__desc{ font-size:13px; color:rgba(255,255,255,0.6); line-height:1.55; }

.mapa-embed{
  margin-top:8px; border-radius:14px; overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
}
.mapa-embed iframe{ width:100%; height:220px; border:0; filter:grayscale(0.3) invert(0.92) contrast(0.9); }

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

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background:#0C0C0C; color:rgba(255,255,255,0.6); padding:70px 0 30px; }
.footer-top{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:40px; flex-wrap:wrap; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand img{ height:30px; width:auto; margin-bottom:16px; }
.footer-brand p{ font-size:13px; max-width:32ch; line-height:1.6; }

.footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-col h4{
  font-family:var(--font-display); font-weight:600; font-size:12.5px;
  color:var(--blanco); letter-spacing:0.4px; text-transform:uppercase; margin-bottom:16px;
}
.footer-col a{ display:block; font-size:13px; padding:5px 0; transition:color .3s ease; }
.footer-col a:hover{ color:var(--verde); }

.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  transition:all .3s ease;
}
.footer-social a:hover{ background:var(--verde); border-color:var(--verde); }
.footer-social svg{ width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.8; }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap; padding-top:26px; font-size:12px;
}

@media (max-width:700px){
  .footer-top{ flex-direction:column; }
  .footer-bottom{ flex-direction:column; text-align:center; }
}
