:root{
  --w:#fff;
  --muted: rgba(255,255,255,.78);
  --border: rgba(255,255,255,.22);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --ink:#101214;
  --ink-soft:rgba(16,18,20,.68);
  --line:rgba(16,18,20,.12);
  --paper:#fff;
  --paper-soft:#f5f6f4;
  --steel:#dfe4e1;
  --accent:#256b5a;

  --font-title:'Sora', sans-serif;
  --font-text:'Inter', sans-serif;
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:var(--font-text);
  background:#000;
  color:var(--w);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4{
  font-family:var(--font-title);
  font-weight:600;
  letter-spacing:.3px;
}

/* ===== NAV ===== */
.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  height:78px;
  display:flex;
  align-items:center;
  background:linear-gradient(to bottom, rgba(0,0,0,.60), rgba(0,0,0,.25), rgba(0,0,0,0));
  transition:background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

body.is-loading-hero .nav{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

body.hero-ready .nav{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
  transition:
    opacity .6s ease .35s,
    transform .6s ease .35s,
    background .25s ease,
    box-shadow .25s ease,
    backdrop-filter .25s ease;
}

.nav.scrolled{
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.nav__inner{
  width:min(1200px, 92%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand__logo{
  height:40px;
  display:block;
}

.nav__links{
  display:flex;
  gap:26px;
  font-family:var(--font-title);
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:13px;
}

.nav__links a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  padding:8px 0;
}

.nav__links a:hover{
  color:#fff;
}

.nav__cta{
  text-decoration:none;
  color:#111;
  background:#fff;
  padding:10px 16px;
  border-radius:10px;
  font-weight:800;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* ===== HERO ===== */
.hero{
  min-height:100vh;
  min-height:100dvh;
  position:relative;
  overflow:hidden;
  display:grid;
  place-items:center;
  padding:110px 0 90px;
  background:#07090a;
}

.hero__slider{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero__slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transform:scale(1.05);
  transition:opacity 1.2s ease;
  will-change:opacity, transform;
}

body.is-loading-hero .hero__slide.active{
  opacity:1;
}

body.hero-ready .hero__slide.active{
  opacity:1;
}

.hero__slide.active{
  opacity:1;
  animation:kenburns 7s ease-in-out forwards;
}

@keyframes kenburns{
  from{ transform:scale(1.05); }
  to{ transform:scale(1.14); }
}

.hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.52) 45%, rgba(0,0,0,.62) 100%);
}

.hero__content{
  position:relative;
  z-index:2;
  width:min(1040px, 92%);
  text-align:center;
}

body.is-loading-hero .hero__content{
  opacity:0;
  transform:translateY(26px);
  filter:blur(10px);
  pointer-events:none;
}

body.hero-content-ready .hero__content{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
  pointer-events:auto;
  transition:opacity .85s ease, transform .85s ease, filter .85s ease;
}

.hero__kicker{
  margin:0 auto 14px;
  color:rgba(255,255,255,.82);
  font-family:var(--font-title);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.8px;
  text-transform:uppercase;
  text-shadow:0 10px 24px rgba(0,0,0,.45);
}

.hero__title{
  margin:0 0 16px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0;
  line-height:1.06;
  font-size:clamp(38px, 5vw, 72px);
  text-shadow:0 12px 34px rgba(0,0,0,.60);
  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
}

.word{
  display:inline;
  white-space:nowrap;
}

.space{
  display:inline-block;
  width:.35em;
}

.char{
  display:inline;
}

@keyframes charIn{
  to{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
  }
}

.hero__sub{
  margin:0 auto 26px;
  max-width:680px;
  color:var(--muted);
  font-size:clamp(14px, 1.25vw, 18px);
  line-height:1.55;
  text-shadow:0 10px 24px rgba(0,0,0,.45);
}

.hero__actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:12px;
}

.hero__searchLinks{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin:22px auto 0;
  max-width:880px;
}

.hero__searchLinks a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(0,0,0,.34);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero__searchLinks a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.34);
}

.btn{
  border:1px solid var(--border);
  padding:14px 22px;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-weight:800;
  letter-spacing:.5px;
  min-width:220px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  box-shadow:var(--shadow);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
  transition:transform .15s ease, filter .15s ease;
}

.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.05);
}

.btn--dark{
  background:rgba(0,0,0,.58);
  border-color:rgba(255,255,255,.18);
}

.btn--light{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.28);
}

.intent-strip{
  background:#101214;
  color:#fff;
  padding:18px 0;
}

.intent-strip__inner{
  width:min(1200px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
}

.intent-strip a{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:86px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:8px;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.05);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.intent-strip a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
}

.intent-strip span{
  margin-bottom:6px;
  color:rgba(255,255,255,.62);
  font-size:12px;
  line-height:1.35;
}

.intent-strip strong{
  font-family:var(--font-title);
  font-size:14px;
  line-height:1.35;
}

.trust-band{
  background:#f5f7f6;
  color:#101214;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.trust-band__inner{
  width:min(1200px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.trust-band__inner div{
  min-height:82px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 28px rgba(16,18,20,.06);
}

.trust-band__inner strong{
  display:block;
  margin-bottom:6px;
  font-family:var(--font-title);
  font-size:16px;
  line-height:1.3;
}

.trust-band__inner span{
  display:block;
  color:rgba(16,18,20,.62);
  font-size:13px;
  line-height:1.5;
}

.reveal-up{
  opacity:0;
  transform:translateY(18px);
  filter:blur(6px);
  animation:upIn .75s ease forwards;
  animation-delay:var(--d, .35s);
}

@keyframes upIn{
  to{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
  }
}

/* ===== ABOUT ===== */
.about{
  background:#fff;
  color:#111;
  padding:90px 0 80px;
}

.about__top{
  width:min(1050px, 92%);
  margin:0 auto;
  text-align:center;
}

.about__title{
  margin:0 0 16px;
  font-weight:500;
  font-size:clamp(34px, 3.2vw, 54px);
}

.about__lead{
  margin:8px auto 0;
  max-width:820px;
  font-size:16px;
  line-height:1.7;
  color:rgba(0,0,0,.72);
}

.about__grid{
  width:min(1200px, 92%);
  margin:70px auto 60px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.mission__title{
  margin:0 0 18px;
  font-size:30px;
  letter-spacing:1px;
  font-weight:500;
}

.mission p{
  margin:0 0 16px;
  color:rgba(0,0,0,.72);
  line-height:1.8;
  font-size:15px;
  max-width:620px;
}

.mission__media{
  position:relative;
  min-height:320px;
  display:grid;
  place-items:center;
}

.media__blob{
  position:absolute;
  right:-20px;
  top:10px;
  width:min(520px, 95%);
  height:360px;
  border-radius:220px 40px 40px 220px;
  background:#f2f2f2;
  animation:blobFloat 9s ease-in-out infinite;
}

@keyframes blobFloat{
  0%{ transform:translate3d(0,0,0) scale(1); }
  50%{ transform:translate3d(-6px,-10px,0) scale(1.02); }
  100%{ transform:translate3d(0,0,0) scale(1); }
}

.mission__img{
  position:relative;
  z-index:2;
  width:min(430px, 92%);
  height:auto;
  filter:drop-shadow(0 16px 35px rgba(0,0,0,.12));
  animation:imgFloat 7.5s ease-in-out infinite;
}

@keyframes imgFloat{
  0%{ transform:translate3d(0,0,0); }
  50%{ transform:translate3d(0,-8px,0); }
  100%{ transform:translate3d(0,0,0); }
}

/* cards */
.stats{
  width:min(1200px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}

.stat-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  padding:28px 18px;
  text-align:center;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  transition:transform .18s ease, box-shadow .18s ease;
}

.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(0,0,0,.14);
}

.stat-num{
  font-size:26px;
  font-weight:500;
  margin-bottom:4px;
}

.stat-desc{
  font-size:13px;
  color:rgba(0,0,0,.65);
}

/* ===== Scroll reveal ===== */
[data-animate]{
  opacity:0;
  transform:translate3d(0, 18px, 0);
  filter:blur(8px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2,.9,.2,1),
    filter .75s ease;
  will-change:transform, opacity, filter;
}

[data-animate="fade-left"]{ transform:translate3d(-26px, 12px, 0); }
[data-animate="fade-right"]{ transform:translate3d(26px, 12px, 0); }
[data-animate="card"]{ transform:translate3d(0, 22px, 0) scale(.985); }

[data-animate].is-in{
  opacity:1;
  transform:translate3d(0,0,0);
  filter:blur(0);
}

/* ===== CATALOGO ===== */
.catalog{
  background:#fff;
  color:#111;
  padding:70px 0 100px;
}

.catalog__inner{
  width:min(1200px, 92%);
  margin:0 auto;
}

.section-head{
  max-width:760px;
  margin:0 0 32px;
}

.section-kicker{
  margin:0 0 8px;
  color:var(--accent);
  font-family:var(--font-title);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.section-head p:last-child{
  margin:10px 0 0;
  color:rgba(16,18,20,.66);
  font-size:16px;
  line-height:1.65;
}

.catalog__title{
  margin:0;
  font-family:var(--font-title);
  font-size:34px;
  font-weight:600;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.catalog__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:34px;
}

.catalog-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(0,0,0,.10);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}

.catalog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 60px rgba(0,0,0,.14);
}

.catalog-card__imgWrap{
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.catalog-card__imgWrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .35s ease;
}

.catalog-card__body{
  padding:18px 22px 22px;
}

.catalog-card__body h3{
  margin:0 0 8px;
  font-family:var(--font-title);
  font-size:16px;
  font-weight:600;
  letter-spacing:.8px;
  color:rgba(0,0,0,.78);
  text-transform:uppercase;
}

.more{
  font-size:12px;
  color:rgba(0,0,0,.58);
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.arrow{
  transition:transform .18s ease;
}

.catalog-card:hover .arrow{
  transform:translateX(3px);
}

.buyer-guide{
  background:#f5f7f6;
  color:#101214;
  padding:86px 0;
}

.buyer-guide__inner{
  width:min(1200px, 92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:.95fr 1.2fr;
  gap:42px;
  align-items:start;
}

.buyer-guide__copy h2{
  margin:0 0 16px;
  font-family:var(--font-title);
  font-size:clamp(32px, 3vw, 48px);
  line-height:1.12;
  letter-spacing:0;
}

.buyer-guide__copy p:not(.section-kicker){
  margin:0 0 22px;
  max-width:560px;
  color:rgba(16,18,20,.68);
  font-size:16px;
  line-height:1.75;
}

.buyer-guide__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-family:var(--font-title);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(16,18,20,.14);
  transition:transform .18s ease, background .18s ease;
}

.buyer-guide__cta:hover{
  transform:translateY(-2px);
  background:var(--accent);
}

.buyer-guide__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.buyer-guide__grid article{
  min-height:260px;
  padding:24px 20px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 16px 38px rgba(16,18,20,.08);
}

.buyer-guide__grid span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  margin-bottom:34px;
  border-radius:999px;
  background:#eef2ef;
  color:var(--accent);
  font-family:var(--font-title);
  font-size:13px;
  font-weight:800;
}

.buyer-guide__grid h3{
  margin:0 0 10px;
  font-family:var(--font-title);
  font-size:20px;
  line-height:1.25;
}

.buyer-guide__grid p{
  margin:0;
  color:rgba(16,18,20,.66);
  font-size:14px;
  line-height:1.65;
}

/* ===== SECTORES ===== */
.sectors{
  position:relative;
  background:url("img/fondo-represa.webp") center/cover no-repeat;
  padding:140px 0;
  color:#fff;
  overflow:hidden;
}

.sectors__overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  backdrop-filter:blur(2px);
}

.sectors__container{
  position:relative;
  z-index:2;
  width:min(1280px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px 140px;
}

.sector-item{
  display:flex;
  align-items:center;
  gap:28px;
  opacity:0;
  transform:translateY(30px);
  transition:all .8s ease;
}

.sector-item.is-visible{
  opacity:1;
  transform:translateY(0);
}

.sector-img{
  width:140px;
  height:140px;
  border-radius:50%;
  overflow:hidden;
  border:4px solid #fff;
  flex-shrink:0;
  transition:transform .35s ease, box-shadow .35s ease;
}

.sector-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.sector-item:hover .sector-img{
  transform:scale(1.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.sector-text h3{
  margin:0 0 10px;
  font-family:var(--font-title);
  font-size:34px;
  font-weight:700;
  line-height:1.1;
  letter-spacing:.2px;
}

.sector-text p{
  margin:0;
  font-family:var(--font-text);
  font-size:16px;
  color:rgba(255,255,255,.85);
  max-width:360px;
  line-height:1.6;
}

/* ===== CONTACTO ===== */
.contact{
  background:#fff;
  color:#111;
  padding:90px 0 110px;
}

.contact__inner{
  width:min(1200px, 92%);
  margin:0 auto;
}

.contact__title{
  text-align:center;
  margin:0 0 10px;
  font-size:34px;
  font-weight:500;
  letter-spacing:.8px;
}

.contact__subtitle{
  text-align:center;
  margin:0 auto 50px;
  max-width:820px;
  color:rgba(0,0,0,.65);
  line-height:1.7;
  font-size:15px;
}

.contact__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}

.contact__cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-bottom:26px;
}

.mini-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  padding:18px 18px;
  transition:transform .18s ease, box-shadow .18s ease;
  display:block;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
}

.mini-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.16);
}

.mini-card:focus-visible{
  outline:3px solid rgba(255,122,0,.45);
  outline-offset:3px;
}

.mini-card__row{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.mini-title{
  font-weight:700;
  margin-bottom:4px;
}

.mini-text{
  color:rgba(0,0,0,.65);
  font-size:13px;
  line-height:1.4;
}

.big-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  padding:28px 24px;
}

.big-card h3{
  margin:0 0 14px;
  font-weight:500;
}

.big-card ul{
  margin:0;
  padding-left:18px;
  color:rgba(0,0,0,.70);
  line-height:1.8;
  font-size:14px;
}

.form-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  padding:22px 22px 20px;
}

.form-card h3{
  margin:0 0 14px;
  font-weight:500;
}

.form-card label{
  display:block;
  font-size:12px;
  color:rgba(0,0,0,.68);
  margin:14px 0 0;
}

.form-card input,
.form-card textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,.12);
  background:#f1f1f1;
  outline:none;
  font-size:14px;
}

.form-card textarea{
  resize:vertical;
}

.form-card input:focus,
.form-card textarea:focus{
  border-color:rgba(0,0,0,.35);
  background:#f6f6f6;
}

.btn-submit{
  margin-top:18px;
  width:100%;
  padding:14px 16px;
  border:none;
  border-radius:8px;
  background:#000;
  color:#fff;
  font-weight:800;
  letter-spacing:.6px;
  cursor:pointer;
  transition:transform .15s ease, filter .15s ease;
}

.btn-submit:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}

/* ===== PRODUCTO ===== */
.p{
  background:#fff;
  color:#111;
  padding:120px 0 80px;
}

.p__inner{
  width:min(1200px, 92%);
  margin:0 auto;
}

.p__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:46px;
  align-items:start;
}

.p__mainImg{
  border-radius:10px;
  overflow:hidden;
  background:#f3f3f3;
  box-shadow:0 12px 30px rgba(0,0,0,.10);
  height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.p__mainImg img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.p__thumbs{
  display:flex;
  gap:18px;
  margin-top:18px;
  flex-wrap:wrap;
}

.thumb{
  width:110px;
  height:80px;
  border:2px solid transparent;
  border-radius:10px;
  overflow:hidden;
  padding:0;
  background:#fff;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
  transition:transform .15s ease, border-color .15s ease;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.thumb:hover{
  transform:translateY(-2px);
}

.thumb.is-active{
  border-color:rgba(0,0,0,.55);
}

.p__title{
  margin:0 0 6px;
  font-family:var(--font-title);
  font-weight:700;
  font-size:clamp(30px, 2.6vw, 42px);
  letter-spacing:.4px;
}

.p__subtitle{
  margin:0 0 20px;
  font-family:var(--font-text);
  font-weight:500;
  font-size:18px;
  line-height:1.6;
  color:rgba(0,0,0,.65);
}

.p__actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 24px;
  flex-wrap:wrap;
}

.p__quoteBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 22px;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-family:var(--font-title);
  font-size:13px;
  font-weight:700;
  letter-spacing:.2px;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(16,18,20,.18);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.p__quoteBtn:hover{
  transform:translateY(-2px);
  background:var(--accent);
  box-shadow:0 18px 36px rgba(37,107,90,.22);
}

.p__quoteBtn--mail{
  background:#fff;
  color:var(--ink);
  border:1px solid var(--ink);
  box-shadow:0 10px 24px rgba(16,18,20,.08);
}

.p__quoteBtn--mail:hover{
  color:#fff;
  border-color:var(--accent);
}

.seo-content__actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.p__desc .p__text{
  margin:0 0 16px;
  font-family:var(--font-text);
  font-size:15px;
  line-height:1.75;
  color:rgba(0,0,0,.7);
  max-width:620px;
}

.specBox{
  margin-top:18px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  background:#fff;
}

.specRow{
  display:grid;
  grid-template-columns:220px 1fr;
  border-top:1px solid rgba(0,0,0,.08);
}

.specRow:first-child{
  border-top:none;
}

.specKey{
  padding:14px 16px;
  font-family:var(--font-title);
  font-weight:600;
  font-size:13px;
  letter-spacing:.4px;
  background:#f6f6f6;
  color:rgba(0,0,0,.72);
}

.specVal{
  padding:14px 16px;
  font-size:12.5px;
  color:rgba(0,0,0,.62);
}

.specList{
  list-style:none;
  padding:0;
  margin:0;
}

.specList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height:1.6;
}

.specCheck{
  color:#000;
  font-weight:700;
}

/* WhatsApp */
.wa{
  position:fixed;
  right:22px;
  bottom:22px;
  display:flex;
  align-items:center;
  gap:10px;
  background:#f3f3f3;
  color:#111;
  text-decoration:none;
  border-radius:999px;
  padding:12px 16px;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
  border:1px solid rgba(0,0,0,.10);
  transition:transform .15s ease, filter .15s ease;
  z-index:80;
}

.wa:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}

.wa__icon{
  font-size:18px;
}

.wa__text{
  font-weight:700;
  font-size:13px;
}

/* ===== FORM PRO ===== */
.form-status{
  display:none;
  margin:10px 0 14px;
  padding:12px 12px;
  border-radius:8px;
  font-size:13px;
  line-height:1.4;
  border:1px solid rgba(0,0,0,.12);
  background:#f6f6f6;
  color:rgba(0,0,0,.75);
}

.form-status.is-show{
  display:block;
}

.form-status.is-ok{
  border-color:rgba(0,0,0,.18);
  background:#f2f2f2;
}

.form-status.is-bad{
  border-color:rgba(0,0,0,.18);
  background:#f2f2f2;
}

.form-card input.is-invalid,
.form-card textarea.is-invalid{
  border-color:rgba(0,0,0,.35);
  box-shadow:0 0 0 3px rgba(0,0,0,.07);
}

.field-error{
  display:block;
  min-height:14px;
  margin-top:6px;
  font-size:12px;
  color:rgba(0,0,0,.55);
}

.btn-submit{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.btn-spinner{
  width:16px;
  height:16px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.45);
  border-top-color:#fff;
  display:none;
  animation:spin .7s linear infinite;
}

.btn-submit.is-loading .btn-spinner{
  display:inline-block;
}

.btn-submit.is-loading{
  opacity:.92;
  cursor:progress;
}

.btn-submit.is-loading .btn-text{
  opacity:.95;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

/* ===== FOOTER ===== */
.footer{
  background:#0b0b0b;
  color:#f2f2f2;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer__inner{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px 22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer__title{
  font-size:13px;
  letter-spacing:.5px;
  font-weight:800;
  margin:0 0 14px;
  color:#fff;
  text-transform:uppercase;
}

.footer__link{
  display:block;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:14px;
  margin:8px 0;
  transition:color .15s ease, opacity .15s ease;
}

.footer__link:hover{
  color:#fff;
}

.footer__text{
  margin:0 0 10px;
  font-size:14px;
  color:rgba(255,255,255,.78);
  line-height:1.6;
}

.footer__social{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.social-btn{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.social-btn:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.22);
}

.footer__badge{
  margin-top:14px;
}

.footer__badge img{
  max-width:190px;
  height:auto;
  display:block;
  filter:grayscale(1) brightness(1.15);
  opacity:.9;
}

.footer__pay{
  margin-top:14px;
}

.footer__small{
  margin:0 0 10px;
  font-size:12px;
  color:rgba(255,255,255,.7);
}

.pay__row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.pay__row img{
  height:26px;
  width:auto;
  display:block;
  filter:grayscale(1) brightness(1.15);
  opacity:.9;
}

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 18px;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,.72);
}

.footer__brand{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.footer__brand:hover{
  text-decoration:underline;
}

.footer a:focus-visible{
  outline:3px solid rgba(255,255,255,.25);
  outline-offset:3px;
  border-radius:8px;
}

/* ===== ANCLAS ===== */
#productos{ scroll-margin-top:0; }
#sectores{ scroll-margin-top:170px; }
#contacto{ scroll-margin-top:0; }
#cotizar{ scroll-margin-top:240px; }

/* ===== VER MÁS PRODUCTOS ===== */
.hidden-product{
  display:none;
  opacity:0;
  transform:translateY(35px) scale(.96);
  visibility:hidden;
  pointer-events:none;
  max-height:0;
  overflow:hidden;
  margin:0;
  transition:
    opacity .55s ease,
    transform .55s ease,
    max-height .6s ease,
    margin .4s ease,
    visibility .55s ease;
}

.hidden-product.show{
  display:block;
  opacity:1;
  transform:translateY(0) scale(1);
  visibility:visible;
  pointer-events:auto;
  max-height:520px;
  animation:fadeProduct .5s ease;
}

.catalog__actions{
  grid-column:1 / -1;
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:34px;
}

.catalog__btn{
  min-width:220px;
  padding:14px 28px;
  border:2px solid #111;
  background:#fff;
  color:#111;
  font-family:var(--font-title);
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  border-radius:0;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.catalog__btn:hover{
  background:#111;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.catalog__btn:active{
  transform:translateY(0);
}

@keyframes fadeProduct{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== BOTÓN CATÁLOGO PRODUCTO ===== */
.catalog-download{
  display:inline-block;
  margin-top:18px;
  padding:12px 18px;
  border:3px solid #000;
  font-weight:600;
  text-decoration:none;
  color:#000;
  background:#fff;
  transition:all .2s ease;
}

.catalog-download:hover{
  background:#000;
  color:#fff;
}

.catalog-download.disabled{
  opacity:.5;
  cursor:not-allowed;
  pointer-events:none;
}

/* ===== DESIGN REFRESH ===== */
a,
button,
input,
textarea{
  touch-action:manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(37,107,90,.32);
  outline-offset:3px;
}

.nav.scrolled{
  background:rgba(10,12,13,.84);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav__links a{
  position:relative;
}

.nav__links a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:1px;
  background:#fff;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}

.nav__links a:hover::after{
  transform:scaleX(1);
}

.nav__cta,
.btn,
.catalog__btn,
.btn-submit,
.catalog-download{
  border-radius:8px;
}

.hero{
  min-height:100vh;
  min-height:100dvh;
}

.hero__overlay{
  background:
    linear-gradient(to bottom, rgba(5,8,10,.70) 0%, rgba(5,8,10,.50) 45%, rgba(5,8,10,.76) 100%);
}

.hero__content{
  width:min(980px, 92%);
}

.hero__title{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  letter-spacing:.6px;
}

.about,
.catalog,
.contact,
.seo-content,
.product-guide,
.p{
  background:var(--paper-soft);
  color:var(--ink);
}

.about__top,
.seo-content__inner,
.contact__inner{
  position:relative;
}

.about__title,
.catalog__title,
.contact__title,
.seo-content__title,
.product-guide__head h2,
.p__title{
  color:var(--ink);
  letter-spacing:0;
}

.about__lead,
.seo-content__text,
.contact__subtitle,
.p__subtitle,
.p__desc .p__text,
.mission p{
  color:var(--ink-soft);
}

.catalog__title{
  margin:0 0 26px;
  font-size:clamp(26px, 3vw, 40px);
  line-height:1.15;
}

.section-head .catalog__title{
  margin:0;
}

.catalog__grid{
  gap:22px;
}

.catalog-card,
.stat-card,
.mini-card,
.big-card,
.form-card,
.seo-box,
.product-guide__item{
  border-radius:8px;
  border-color:var(--line);
  box-shadow:0 14px 34px rgba(16,18,20,.08);
}

.catalog-card{
  position:relative;
  background:linear-gradient(180deg, #fff 0%, #fbfbfa 100%);
}

.catalog-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, var(--accent), rgba(37,107,90,.12));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .28s ease;
}

.catalog-card:hover::before{
  transform:scaleX(1);
}

.catalog-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 46px rgba(16,18,20,.12);
}

.catalog-card__imgWrap{
  height:210px;
  background:
    linear-gradient(135deg, rgba(37,107,90,.06), transparent 46%),
    #f3f5f3;
}

.catalog-card__imgWrap img{
  padding:14px;
}

.catalog-card:hover .catalog-card__imgWrap img{
  transform:scale(1.045);
}

.catalog-card__body h3{
  min-height:42px;
  font-size:14px;
  line-height:1.35;
  letter-spacing:.35px;
  color:rgba(16,18,20,.86);
}

.more{
  color:rgba(16,18,20,.58);
}

.stat-card,
.mini-card,
.big-card,
.form-card,
.seo-box,
.product-guide__item{
  background:#fff;
}

.p{
  padding:116px 0 68px;
}

.p__grid{
  gap:44px;
}

.p__gallery{
  position:sticky;
  top:104px;
}

.p__mainImg{
  position:relative;
  height:clamp(360px, 44vw, 560px);
  border-radius:8px;
  background:
    linear-gradient(135deg, rgba(37,107,90,.08), transparent 44%),
    linear-gradient(180deg, #fff, #eff2ef);
  border:1px solid var(--line);
  box-shadow:0 20px 52px rgba(16,18,20,.12);
}

.p__mainImg::after{
  content:"";
  position:absolute;
  inset:16px;
  border:1px solid rgba(16,18,20,.06);
  pointer-events:none;
}

.p__mainImg img{
  padding:18px;
}

.p__thumbs{
  gap:12px;
}

.thumb{
  width:98px;
  height:74px;
  border-radius:8px;
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(16,18,20,.08);
}

.thumb.is-active{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(37,107,90,.13);
}

.p__info{
  padding-top:4px;
}

.p__title{
  font-size:clamp(32px, 3vw, 48px);
  line-height:1.12;
}

.p__subtitle{
  margin-bottom:24px;
  max-width:680px;
}

.p__desc{
  padding:22px 0 8px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.specBox{
  margin-top:24px;
  border-radius:8px;
  border-color:var(--line);
  box-shadow:0 16px 36px rgba(16,18,20,.08);
}

.specRow{
  grid-template-columns:200px 1fr;
  border-top-color:rgba(16,18,20,.08);
}

.specKey{
  background:#eef2ef;
  color:rgba(16,18,20,.72);
  letter-spacing:.2px;
}

.specVal{
  font-size:13px;
  line-height:1.65;
  color:rgba(16,18,20,.66);
}

.specCheck{
  color:var(--accent);
}

.catalog-download{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  border:1px solid var(--ink);
  box-shadow:0 10px 24px rgba(16,18,20,.08);
}

.product-guide{
  padding:54px 0 46px;
}

.product-guide__inner{
  padding:28px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 16px 42px rgba(16,18,20,.08);
}

.product-guide__head{
  display:grid;
  grid-template-columns:minmax(0, .85fr) minmax(0, 1.15fr);
  gap:28px;
  max-width:none;
  align-items:end;
}

.product-guide__kicker{
  color:var(--accent);
}

.product-guide__head h2{
  margin-bottom:0;
}

.product-guide__head p{
  max-width:none;
}

.product-guide__grid{
  gap:0;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
}

.product-guide__item{
  min-height:190px;
  border:none;
  border-right:1px solid var(--line);
  border-radius:0;
  box-shadow:none;
  background:#fff;
}

.product-guide__item:last-child{
  border-right:none;
}

.product-guide__item span{
  margin-bottom:20px;
  color:var(--accent);
}

.product-guide__item h3{
  letter-spacing:0;
}

.p .about{
  background:var(--paper-soft) !important;
}

.p .about__top{
  padding:28px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 14px 34px rgba(16,18,20,.07);
}

.wa{
  background:#111;
  color:#fff;
  border-color:rgba(255,255,255,.12);
  box-shadow:0 16px 40px rgba(16,18,20,.28);
}

.wa__icon{
  font-size:0;
}

.wa__icon::before{
  content:"WA";
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  border-radius:999px;
  background:#25d366;
  color:#111;
  font-size:10px;
  font-weight:900;
}

.contact-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
}

.contact-float .wa,
.contact-float__btn{
  position:static;
  right:auto;
  bottom:auto;
  width:150px;
  min-height:50px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  text-decoration:none;
  color:#fff;
  box-shadow:0 16px 40px rgba(16,18,20,.28);
  transition:transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.contact-float .wa:hover,
.contact-float__btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.04);
  box-shadow:0 20px 48px rgba(16,18,20,.32);
}

.contact-float__btn--wa{
  background:#111;
}

.contact-float__btn--gmail{
  background:#fff;
  color:#111;
  border-color:rgba(16,18,20,.10);
}

.contact-float svg{
  width:24px;
  height:24px;
  display:block;
  fill:currentColor;
}

.contact-float__btn--gmail svg{
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.contact-float .wa__icon,
.gmail__icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  flex:0 0 auto;
}

.contact-float .wa__icon{
  background:#25d366;
  color:#111;
}

.contact-float .wa__icon::before{
  content:none;
}

.gmail__icon{
  background:#f2f2f2;
  color:#d93025;
}

.contact-float .wa__text,
.gmail__text{
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
}

.wa-options{
  display:none;
  flex-direction:column;
  gap:8px;
  width:170px;
}

.wa-options.is-open{
  display:flex;
}

.wa-options__link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 14px;
  border-radius:999px;
  background:#25d366;
  color:#111;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  box-shadow:0 14px 34px rgba(16,18,20,.24);
  border:1px solid rgba(16,18,20,.10);
}

.wa-options__link:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.001ms !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px){
  .catalog__grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .intent-strip__inner{
    grid-template-columns:repeat(2, 1fr);
  }

  .buyer-guide__inner{
    grid-template-columns:1fr;
  }
}

@media (max-width: 980px){
  .about__grid{
    grid-template-columns:1fr;
  }

  .media__blob{
    right:0;
    border-radius:80px;
    height:300px;
  }

  .stats{
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
  }

  .buyer-guide__grid{
    grid-template-columns:1fr;
  }

  .buyer-guide__grid article{
    min-height:auto;
  }

  .buyer-guide__grid span{
    margin-bottom:18px;
  }

  .trust-band__inner{
    grid-template-columns:1fr;
  }

  .contact__grid{
    grid-template-columns:1fr;
  }

  .p__grid{
    grid-template-columns:1fr;
  }

  .p__gallery{
    position:relative;
    top:auto;
  }

  .product-guide__head{
    grid-template-columns:1fr;
    gap:14px;
  }

  .product-guide__item{
    border-right:none;
    border-bottom:1px solid var(--line);
    min-height:auto;
  }

  .product-guide__item:last-child{
    border-bottom:none;
  }

  .specRow{
    grid-template-columns:1fr;
  }

  .specKey{
    background:#f7f7f7;
  }

  .p{
    padding-top:105px;
  }

  .footer__inner{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:28px;
  }
}

@media (max-width: 900px){
  .nav__links{
    display:none !important;
  }

  .nav__inner{
    justify-content:space-between;
  }

  .brand{
    flex-shrink:0;
  }

  .brand__logo{
    height:36px;
  }

  .nav__cta{
    margin-left:auto;
    padding:10px 16px;
    font-size:12px;
  }

  .hero{
    padding:100px 0 70px;
  }

  .btn{
    min-width:200px;
  }

  .sectors__container{
    grid-template-columns:repeat(2, 1fr);
    gap:40px 24px;
  }

  .sector-item{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .sector-img{
    width:110px;
    height:110px;
  }

  .sector-text h3{
    font-size:22px;
  }

  .sector-text p{
    font-size:14px;
  }
}

@media (max-width: 860px){
  .catalog__grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .contact__cards{
    grid-template-columns:1fr;
  }

  .intent-strip__inner{
    grid-template-columns:1fr;
  }

  .hero__searchLinks{
    justify-content:flex-start;
  }

  .hero__searchLinks a{
    flex:1 1 calc(50% - 10px);
    justify-content:center;
    text-align:center;
    padding:0 12px;
  }
}

@media (max-width: 520px){
  .nav{
    height:72px;
  }

  .brand__logo{
    height:32px;
  }

  .nav__cta{
    padding:9px 14px;
    font-size:11px;
    border-radius:10px;
  }

  .hero__content{
    width:min(92%, 440px);
  }

  .hero__kicker{
    font-size:10px;
    line-height:1.4;
  }

  .hero__title{
    font-size:clamp(30px, 9.2vw, 36px);
    line-height:1.12;
  }

  .hero__sub{
    font-size:14px;
  }

  .hero__actions{
    gap:10px;
  }

  .btn{
    width:100%;
    min-width:0;
  }

  .intent-strip{
    padding:12px 0;
  }

  .section-head{
    margin-bottom:24px;
  }

  .buyer-guide{
    padding:62px 0;
  }

  .stat-card{
    padding:20px 12px;
  }

  .stat-num{
    font-size:22px;
  }

  .stat-desc{
    font-size:12px;
  }

  .catalog__grid{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
  }

  .catalog-card__imgWrap{
    height:140px;
  }

  .catalog-card__body{
    padding:13px;
  }

  .catalog-card__body h3{
    min-height:52px;
    font-size:11.5px;
    line-height:1.3;
  }

  .more{
    font-size:11px;
  }

  .thumb{
    width:82px;
    height:64px;
  }

  .p{
    padding-top:92px;
  }

  .p__mainImg{
    height:330px;
  }

  .p__title{
    font-size:30px;
  }

  .p__subtitle{
    font-size:16px;
  }

  .product-guide__inner,
  .p .about__top{
    padding:20px 16px;
  }

  .wa__text{
    display:none;
  }

  .contact-float{
    right:14px;
    bottom:14px;
  }

  .contact-float .wa,
  .contact-float__btn{
    width:52px;
    height:52px;
    min-height:52px;
    justify-content:center;
    padding:0;
  }

  .wa-options{
    width:150px;
  }

  .wa-options__link{
    min-height:42px;
    font-size:12px;
  }

  .contact-float .wa__text,
  .gmail__text{
    display:none;
  }

  .footer__inner{
    grid-template-columns:1fr;
    gap:22px;
    padding:28px 16px 18px;
  }

  .footer__col{
    text-align:left;
  }

  .footer__title{
    margin-bottom:10px;
  }

  .footer__link{
    margin:6px 0;
    font-size:15px;
  }

  .footer__text{
    font-size:15px;
    line-height:1.5;
  }

  .footer__bottom{
    padding:14px 12px;
    font-size:12px;
  }
}
/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior:auto !important;
  }

  .hero__slide.active,
  .media__blob,
  .mission__img,
  .char,
  .reveal-up{
    animation:none !important;
  }

  [data-animate]{
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
    filter:none !important;
  }

  .char,
  .reveal-up{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
}

/* ===== SEO CONTENT ===== */
.seo-content{
  background:#fff;
  color:#111;
  padding:70px 0 90px;
}

.seo-content__inner{
  width:min(1200px, 92%);
  margin:0 auto;
  text-align:center;
}

.seo-content__title{
  margin:0 0 18px;
  font-family:var(--font-title);
  font-size:clamp(30px, 3vw, 46px);
  font-weight:600;
  letter-spacing:.4px;
  color:#111;
}

.seo-content__text{
  margin:0 auto 18px;
  max-width:920px;
  font-family:var(--font-text);
  font-size:16px;
  line-height:1.8;
  color:rgba(0,0,0,.72);
}

.seo-content__grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  text-align:left;
}

.seo-box{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:24px 22px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.seo-box h3{
  margin:0 0 10px;
  font-family:var(--font-title);
  font-size:18px;
  font-weight:600;
  color:#111;
}

.seo-box p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:rgba(0,0,0,.68);
}

.product-seo{
  padding:64px 0 54px;
}

.product-seo--compact{
  padding-top:24px;
}

.product-guide{
  background:#fff;
  color:#111;
  padding:50px 0 34px;
}

.product-guide__inner{
  width:min(1200px, 92%);
  margin:0 auto;
}

.product-guide__head{
  max-width:900px;
}

.product-guide__kicker{
  display:inline-block;
  margin:0 0 10px;
  font-family:var(--font-title);
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(0,0,0,.52);
}

.product-guide__head h2{
  margin:0 0 12px;
  font-size:clamp(26px, 2.4vw, 38px);
  line-height:1.18;
  color:#111;
}

.product-guide__head p{
  margin:0;
  max-width:820px;
  font-size:16px;
  line-height:1.75;
  color:rgba(0,0,0,.68);
}

.product-guide__grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.product-guide__item{
  min-height:210px;
  padding:22px;
  border:1px solid rgba(0,0,0,.10);
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.07);
}

.product-guide__item span{
  display:block;
  margin-bottom:26px;
  font-family:var(--font-title);
  font-size:13px;
  font-weight:700;
  color:rgba(0,0,0,.42);
}

.product-guide__item h3{
  margin:0 0 10px;
  font-size:18px;
  color:#111;
}

.product-guide__item p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:rgba(0,0,0,.68);
}

@media (max-width: 980px){
  .seo-content__grid,
  .product-guide__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 520px){
  .seo-content{
    padding:55px 0 70px;
  }

  .seo-content__title{
    font-size:28px;
  }

  .seo-content__text{
    font-size:15px;
  }
}

/* ===== FINAL UI PASS ===== */
.sectors{
  background-image:url("img/fondo-represa.webp");
}

.seo-content,
.product-guide,
.p .about{
  background:var(--paper-soft) !important;
}

.catalog-card,
.stat-card,
.mini-card,
.big-card,
.form-card,
.seo-box,
.product-guide__inner,
.product-guide__item,
.p .about__top{
  border-radius:8px;
  border-color:var(--line);
}

.product-guide{
  padding:54px 0 46px;
}

.product-guide__inner{
  width:min(1200px, 92%);
  margin:0 auto;
  padding:28px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 16px 42px rgba(16,18,20,.08);
}

.product-guide__head{
  display:grid;
  grid-template-columns:minmax(0, .85fr) minmax(0, 1.15fr);
  gap:28px;
  max-width:none;
  align-items:end;
}

.product-guide__kicker{
  color:var(--accent);
}

.product-guide__head h2{
  margin:0;
  letter-spacing:0;
}

.product-guide__head p{
  max-width:none;
  color:var(--ink-soft);
}

.product-guide__grid{
  gap:0;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
}

.product-guide__item{
  min-height:190px;
  border:0;
  border-right:1px solid var(--line);
  border-radius:0;
  box-shadow:none;
}

.product-guide__item:last-child{
  border-right:0;
}

.product-guide__item span{
  margin-bottom:20px;
  color:var(--accent);
}

.seo-box{
  border-radius:8px;
}

@media (max-width: 980px){
  .product-guide__head{
    grid-template-columns:1fr;
    gap:14px;
  }

  .product-guide__item{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .product-guide__item:last-child{
    border-bottom:0;
  }
}

@media (max-width: 520px){
  .product-guide__inner,
  .p .about__top{
    padding:20px 16px;
  }
}
