@font-face{
  font-family:"Conthrax";
  src:url("assets/fonts/conthrax-semibold.otf") format("opentype");
  font-weight:800;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Agency";
  src:url("assets/fonts/agency-bold.ttf") format("truetype");
  font-weight:900;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Montserrat";
  src:url("assets/fonts/montserrat-bold.ttf") format("truetype");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:#02050a;
  --panel:#07111d;
  --panel2:#0b1724;
  --text:#f7fbff;
  --muted:#9faebb;
  --line:rgba(255,255,255,.14);
  --lime:#b7e533;
  --lime2:#d9ff53;
  --cyan:#19cfff;
  --blue:#0b71aa;
  --shadow:0 26px 80px rgba(0,0,0,.46);
  --font-body:"Montserrat","Segoe UI",Arial,sans-serif;
  --font-display:"Conthrax","Agency FB","Agency",Eurostile,Arial,sans-serif;
  --font-tech:"Agency FB","Agency","Montserrat","Segoe UI",Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:
    radial-gradient(circle at 72% 4%, rgba(25,207,255,.18), transparent 26rem),
    radial-gradient(circle at 8% 18%, rgba(183,229,51,.10), transparent 18rem),
    linear-gradient(180deg,#02050a,#06101a 42%,#02050a);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.23;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(25,207,255,.07) 30%, transparent 46%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 9px);
  mix-blend-mode:screen;
}

img{max-width:100%;display:block}
a{color:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:12px clamp(18px,4vw,66px);
  border-bottom:1px solid var(--line);
  background:rgba(2,5,10,.86);
  backdrop-filter:blur(16px);
}

.brand img{
  width:200px;
  max-height:66px;
  object-fit:contain;
}

nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
  flex-wrap:wrap;
  color:#dce8ef;
  font-weight:800;
  font-family:var(--font-tech);
  text-transform:uppercase;
}

nav a{
  text-decoration:none;
  padding:9px 10px;
  border-radius:8px;
}

nav a:hover{
  color:var(--lime2);
  background:rgba(255,255,255,.07);
}

.nav-cta{
  color:#071006;
  background:var(--lime);
}

.hero{
  position:relative;
  min-height:calc(100vh - 82px);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(240px,390px);
  grid-template-areas:
    "copy max"
    "panel panel";
  column-gap:34px;
  align-items:end;
  overflow:hidden;
  padding:118px clamp(18px,6vw,88px) 36px;
}

.hero-media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(2,5,10,.92), rgba(2,5,10,.42) 58%, rgba(2,5,10,.88)),
    linear-gradient(180deg, rgba(2,5,10,.18), rgba(2,5,10,.96)),
    url("assets/produccion.jpg") center / cover no-repeat;
}

.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(25,207,255,.20) 48%, transparent 54%),
    radial-gradient(circle at 30% 66%, rgba(183,229,51,.11), transparent 18rem);
}

.hero-content{
  grid-area:copy;
  position:relative;
  max-width:760px;
  padding-bottom:58px;
}

.hero-max{
  grid-area:max;
  position:relative;
  align-self:end;
  justify-self:center;
  width:min(510px,38vw);
  max-width:100%;
  z-index:1;
  filter:drop-shadow(0 28px 54px rgba(0,0,0,.56));
}

.hero-max img{
  width:100%;
  max-height:630px;
  object-fit:contain;
}

.eyebrow{
  margin:0 0 14px;
  color:var(--lime);
  font-size:18px;
  line-height:1.25;
  font-weight:900;
  font-family:var(--font-tech);
  letter-spacing:.12em;
  text-transform:uppercase;
}

h1,h2,h3,p{margin-top:0}
h1,h2,h3,.btn,nav a,.product-grid strong,.featured-mini strong{
  overflow-wrap:anywhere;
}

h1{
  margin-bottom:20px;
  max-width:720px;
  font-size:clamp(40px,5.4vw,72px);
  line-height:1.02;
  font-family:var(--font-display);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0;
  text-shadow:0 10px 32px rgba(0,0,0,.72);
}

h2{
  margin-bottom:16px;
  max-width:940px;
  font-size:clamp(36px,5.8vw,82px);
  line-height:.92;
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:0;
}

h3{
  margin-bottom:10px;
  font-size:23px;
  font-family:var(--font-tech);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0;
}

.lead{
  max-width:790px;
  color:#dce8ef;
  font-size:22px;
  line-height:1.55;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn,
.quote-form button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  border-radius:8px;
  padding:14px 19px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:900;
  cursor:pointer;
}

.btn.primary,
.quote-form button{
  color:#071006;
  background:var(--lime);
  box-shadow:0 18px 38px rgba(183,229,51,.18);
}

.btn.outline{
  color:var(--lime2);
  border-color:rgba(183,229,51,.58);
  background:rgba(2,5,10,.50);
}

.hero-panel{
  grid-area:panel;
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:rgba(2,5,10,.62);
  backdrop-filter:blur(14px);
}

.hero-panel span{
  min-height:92px;
  display:grid;
  place-items:center;
  padding:14px;
  color:#edf5f8;
  font-weight:900;
  font-family:var(--font-tech);
  text-transform:uppercase;
  text-align:center;
  font-size:16px;
  background:rgba(255,255,255,.045);
}

.hero-panel .years{
  color:#071006;
  background:linear-gradient(135deg, var(--lime), var(--lime2));
}

.hero-panel .years strong{
  display:block;
  font-size:40px;
  line-height:1;
  font-family:var(--font-display);
}

.hero-panel .years em{
  display:block;
  margin-top:5px;
  font-style:normal;
  font-size:18px;
}

.section{
  padding:108px clamp(18px,6vw,88px);
  position:relative;
}

.section-kicker{
  max-width:980px;
  margin-bottom:36px;
}

.section-kicker p,
.trust-grid p,
.capability-list p,
.machinery p,
.quote-copy p,
.location p{
  color:var(--muted);
  line-height:1.62;
  font-size:18px;
}

.trust{
  padding-top:90px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.trust-grid article,
.process-grid article,
.location-grid article{
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
}

.trust-grid article{
  min-height:240px;
  padding:30px;
}

.trust-grid h3{
  color:var(--cyan);
  font-size:36px;
  line-height:1;
}

.max-brand{
  min-height:590px;
  display:grid;
  align-items:center;
  padding:110px clamp(18px,6vw,88px);
  background:
    linear-gradient(90deg, rgba(2,5,10,.98), rgba(2,5,10,.74) 44%, rgba(2,5,10,.12)),
    url("assets/max-embajador.png") center right / contain no-repeat;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.max-copy{
  max-width:620px;
}

.max-copy h2{
  max-width:620px;
}

.max-copy p{
  max-width:560px;
  color:#dce8ef;
  font-size:21px;
  line-height:1.58;
}

.max-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.max-tags span{
  padding:10px 12px;
  border:1px solid rgba(183,229,51,.45);
  border-radius:999px;
  color:var(--lime2);
  background:rgba(2,5,10,.48);
  font-family:var(--font-tech);
  font-weight:900;
  text-transform:uppercase;
}

.capabilities{
  background:rgba(255,255,255,.025);
}

.capability-list{
  display:grid;
  gap:18px;
}

.capability-list article{
  position:relative;
  min-height:360px;
  display:grid;
  grid-template-columns:132px minmax(260px,.85fr) 1fr;
  gap:24px;
  align-items:center;
  padding:24px;
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(90deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  overflow:hidden;
}

.capability-icons{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.capability-icons img{
  width:122px;
  height:122px;
  object-fit:contain;
  filter:drop-shadow(0 0 18px rgba(25,207,255,.28));
}

.capability-photo{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:8px;
}

.capability-list h3{
  font-size:clamp(30px,4vw,58px);
  line-height:.95;
  font-family:var(--font-display);
  text-transform:uppercase;
  text-shadow:0 2px 12px rgba(25,207,255,.62);
}

.capability-list a,
.location-grid a{
  color:var(--lime2);
  font-weight:900;
  text-decoration:none;
}

.finder{
  margin:0 clamp(18px,6vw,88px);
  padding:28px;
  display:grid;
  grid-template-columns:.9fr 1.2fr;
  gap:20px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:8px;
  background:
    linear-gradient(135deg, rgba(25,207,255,.13), rgba(183,229,51,.08)),
    rgba(255,255,255,.03);
  box-shadow:0 18px 46px rgba(0,0,0,.26);
}

.finder h2{
  margin-bottom:12px;
  font-size:clamp(34px,4.2vw,62px);
}

.finder p{
  color:var(--muted);
  line-height:1.55;
}

.finder-box input{
  width:100%;
  min-height:56px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:rgba(2,5,10,.78);
  color:#f8fbff;
  padding:0 16px;
  font:inherit;
  font-size:16px;
}

.results{
  display:grid;
  gap:8px;
  margin-top:10px;
}

.result-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  padding:11px 12px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(0,0,0,.24);
}

.result-item a{
  color:var(--lime2);
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.product-grid a{
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:8px;
  color:#eef7fb;
  text-decoration:none;
  background:rgba(255,255,255,.052);
}

.product-grid .product-feature{
  grid-column:span 2;
  min-height:240px;
  background:
    linear-gradient(90deg, rgba(2,5,10,.50), rgba(2,5,10,.86)),
    url("assets/retablo.jpg") center / cover no-repeat;
}

.product-grid a:hover{
  border-color:rgba(183,229,51,.74);
  transform:translateY(-2px);
}

.product-grid strong{
  font-size:28px;
  color:#fff;
  font-family:var(--font-tech);
  text-transform:uppercase;
}

.product-grid span{
  color:var(--muted);
  line-height:1.5;
  font-size:17px;
}

.featured-products{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:14px;
  padding:0 clamp(18px,6vw,88px) 96px;
}

.featured-retablos{
  min-height:500px;
  display:grid;
  align-items:end;
  padding:32px;
  border:1px solid var(--line);
  border-radius:8px;
  background:
    linear-gradient(90deg, rgba(2,5,10,.42), rgba(2,5,10,.88)),
    url("assets/retablo.jpg") center / cover no-repeat;
  box-shadow:var(--shadow);
}

.featured-retablos > div{
  max-width:680px;
}

.featured-retablos p{
  max-width:610px;
  color:#dce8ef;
  line-height:1.58;
  font-size:18px;
}

.featured-mini{
  display:grid;
  gap:14px;
}

.featured-mini a{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  min-height:213px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:8px;
  color:#eef7fb;
  text-decoration:none;
  background:
    linear-gradient(180deg, rgba(25,207,255,.09), rgba(255,255,255,.035)),
    rgba(255,255,255,.05);
}

.featured-mini strong{
  font-family:var(--font-tech);
  font-size:32px;
  text-transform:uppercase;
}

.featured-mini span{
  color:var(--muted);
  font-size:17px;
  line-height:1.5;
}

.portfolio{
  background:linear-gradient(180deg, rgba(25,207,255,.045), rgba(255,255,255,.018));
}

.gallery{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr;
  grid-auto-rows:320px;
  gap:14px;
}

.gallery-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:-14px 0 24px;
}

.gallery-tabs button{
  min-height:42px;
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  color:#eef7fb;
  background:rgba(255,255,255,.055);
  font:inherit;
  font-family:var(--font-tech);
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}

.gallery-tabs button.active,
.gallery-tabs button:hover{
  color:#071006;
  border-color:transparent;
  background:var(--lime);
}

figure.is-hidden{
  display:none;
}

figure{
  margin:0;
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:#111;
}

figure.feature{
  grid-row:span 2;
}

figure img{
  width:100%;
  height:100%;
  object-fit:cover;
}

figcaption{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  padding:10px 12px;
  border-radius:8px;
  color:#fff;
  background:rgba(2,5,10,.82);
  font-size:17px;
  font-weight:900;
  backdrop-filter:blur(8px);
}

.machinery{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}

.machinery h2,
.quote h2{
  max-width:720px;
  font-size:clamp(42px,4.9vw,72px);
  line-height:1.02;
}

.process-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.process-grid article{
  min-height:230px;
  padding:30px;
}

.process-grid span{
  display:block;
  margin-bottom:38px;
  color:var(--cyan);
  font-size:15px;
  font-weight:900;
  font-family:var(--font-tech);
  text-transform:uppercase;
  letter-spacing:.12em;
}

.process-grid strong{
  display:block;
  font-size:32px;
  line-height:1.06;
  font-family:var(--font-tech);
  text-transform:uppercase;
}

.quote{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
  background:rgba(255,255,255,.024);
}

.quote-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.quote-form label{
  display:flex;
  flex-direction:column;
  gap:7px;
  color:#dfeaf0;
  font-weight:800;
}

.quote-form label:nth-child(4){
  grid-column:1 / -1;
}

input,
select,
textarea{
  width:100%;
  min-height:46px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:7px;
  color:#f8fbff;
  background:#07111d;
  padding:10px 12px;
  font:inherit;
}

textarea{resize:vertical}

.quote-form button{
  grid-column:1 / -1;
  width:max-content;
}

.steps{
  display:grid;
  gap:10px;
  margin-top:24px;
}

.steps div{
  display:grid;
  grid-template-columns:46px 1fr;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.045);
}

.steps strong{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--lime);
  color:#071006;
}

.steps span{
  color:#eaf4f8;
  font-weight:800;
}

.location{
  display:grid;
  grid-template-columns:.9fr 1.5fr;
  gap:28px;
}

.location h2{
  color:var(--cyan);
  text-shadow:0 0 28px rgba(25,207,255,.28);
}

.location-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.location-grid article{
  min-height:210px;
  padding:26px;
  background:
    linear-gradient(180deg, rgba(25,207,255,.10), rgba(183,229,51,.04)),
    rgba(255,255,255,.065);
  box-shadow:0 18px 46px rgba(0,0,0,.24);
}

.location-grid h3{
  font-size:25px;
}

.location-grid p{
  font-size:18px;
  color:#dce8ef;
}

.contact-whatsapp{
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:8px;
  padding:11px 14px;
  border-radius:999px;
  color:#071006 !important;
  background:linear-gradient(135deg, #b7e533, #25d366);
  box-shadow:0 16px 32px rgba(37,211,102,.18);
  font-size:19px;
  font-family:var(--font-tech);
  text-transform:uppercase;
}

.contact-whatsapp::before{
  content:none;
}

.wa-icon{
  width:25px;
  height:25px;
  display:inline-block;
  background:#071006;
  border-radius:50%;
  position:relative;
  flex:0 0 auto;
}

.wa-icon::before{
  content:"";
  position:absolute;
  inset:5px;
  border:3px solid #25d366;
  border-radius:50%;
}

.wa-icon::after{
  content:"";
  position:absolute;
  width:9px;
  height:4px;
  left:8px;
  top:12px;
  border-left:3px solid #25d366;
  border-bottom:3px solid #25d366;
  transform:rotate(-42deg);
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 17px;
  border-radius:999px;
  color:#071006;
  background:var(--lime);
  font-weight:900;
  text-decoration:none;
  box-shadow:0 20px 44px rgba(0,0,0,.42);
}

footer{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  padding:30px clamp(18px,6vw,88px);
  border-top:1px solid var(--line);
  color:var(--muted);
}

footer img{
  width:190px;
}

footer strong,
footer span{
  display:block;
}

.footer-message{
  text-align:center;
}

footer strong{
  color:#fff;
  font-size:28px;
  font-family:var(--font-tech);
  text-transform:uppercase;
}

footer span{
  margin-top:4px;
  font-size:18px;
}

footer a{
  color:var(--lime2);
  text-decoration:none;
  font-weight:900;
}

@media(max-width:1120px){
  .capability-list article{
    grid-template-columns:132px 1fr;
  }

  .capability-photo{
    grid-column:1 / -1;
    height:280px;
  }

  .finder,
  .machinery,
  .quote,
  .location{
    grid-template-columns:1fr;
  }

  .product-grid,
  .featured-products,
  .trust-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .featured-retablos{
    grid-column:span 2;
  }
}

@media(max-width:820px){
  .site-header{
    align-items:center;
    flex-direction:column;
    gap:10px;
    padding:10px 14px 12px;
  }

  .brand img{
    width:166px;
    max-height:54px;
  }

  nav{
    width:100%;
    justify-content:center;
    gap:5px;
    font-size:13px;
    line-height:1;
  }

  nav a{
    padding:8px 7px;
  }

  .nav-cta{
    flex-basis:100%;
    text-align:center;
  }

  .hero{
    min-height:calc(100svh - 134px);
    grid-template-columns:1fr;
    grid-template-areas:
      "copy"
      "panel";
    align-items:end;
    padding:58px 16px 22px;
  }

  .hero-max{
    position:absolute;
    right:-16px;
    top:116px;
    width:248px;
    opacity:.94;
  }

  .hero-content{
    max-width:calc(100% - 92px);
    z-index:2;
  }

  .hero-media{
    background:
      linear-gradient(180deg, rgba(2,5,10,.40), rgba(2,5,10,.96) 72%),
      url("assets/produccion.jpg") center / cover no-repeat;
  }

  .hero-content{
    padding-bottom:24px;
  }

  .eyebrow{
    font-size:15px;
    letter-spacing:.08em;
  }

  h1{
    font-size:clamp(36px,10.8vw,56px);
    line-height:1;
  }

  h2{
    font-size:clamp(32px,10vw,54px);
    line-height:.98;
  }

  h3{
    font-size:20px;
  }

  .lead{
    font-size:18px;
    line-height:1.48;
  }

  .hero-actions,
  .max-tags{
    gap:9px;
  }

  .btn,
  .quote-form button{
    width:100%;
    min-height:48px;
    padding:13px 14px;
    text-align:center;
  }

  .hero-panel,
  .process-grid,
  .location-grid{
    grid-template-columns:1fr 1fr;
  }

  .max-brand{
    min-height:auto;
    align-items:end;
    padding:320px 16px 62px;
    background:
      linear-gradient(180deg, rgba(2,5,10,.16), rgba(2,5,10,.96) 50%),
      url("assets/max-embajador.png") center top / auto 315px no-repeat,
      #02050a;
  }

  .max-copy p{
    font-size:19px;
    line-height:1.56;
  }

  .section{
    padding:68px 16px;
  }

  .finder{
    margin:0 16px;
    padding:20px;
  }

  .featured-products{
    padding:0 16px 68px;
  }

  .gallery{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:300px;
  }

  figure.feature{
    grid-row:auto;
    grid-column:span 2;
  }

  .quote-form{
    grid-template-columns:1fr;
  }

  .quote-form label:nth-child(4),
  .quote-form button{
    grid-column:auto;
  }
}

@media(max-width:560px){
  .brand img{
    width:154px;
  }

  nav a{
    padding:7px 6px;
  }

  .hero{
    min-height:auto;
    padding-top:44px;
    padding-bottom:18px;
  }

  .hero-max{
    right:-28px;
    top:142px;
    width:184px;
  }

  .hero-content{
    max-width:calc(100% - 54px);
  }

  h1{
    font-size:clamp(34px,11.5vw,44px);
    line-height:1.04;
  }

  h2,
  .finder h2{
    font-size:clamp(33px,11.6vw,48px);
    line-height:1.02;
  }

  .machinery h2,
  .quote h2{
    max-width:100%;
    font-size:clamp(33px,10.4vw,44px);
    line-height:1.08;
  }

  .lead{
    font-size:18px;
  }

  .hero-panel span{
    min-height:88px;
    padding:13px 10px;
    font-size:16px;
  }

  .hero-panel .years strong{
    font-size:31px;
  }

  .hero-panel .years em{
    font-size:15px;
  }

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

  .trust-grid article,
  .process-grid article,
  .location-grid article,
  .product-grid a,
  .featured-mini a{
    min-height:auto;
    padding:24px;
  }

  .max-brand{
    padding-top:285px;
    background:
      linear-gradient(180deg, rgba(2,5,10,.18), rgba(2,5,10,.98) 50%),
      url("assets/max-embajador.png") center top / auto 275px no-repeat,
      #02050a;
  }

  .max-copy p,
  .section-kicker p,
  .trust-grid p,
  .capability-list p,
  .machinery p,
  .quote-copy p,
  .location p,
  .product-grid span,
  .featured-mini span{
    font-size:17px;
  }

  .max-tags span{
    padding:8px 10px;
    font-size:13px;
  }

  .hero-content{
    padding-bottom:24px;
  }

  .hero-panel,
  .trust-grid,
  .product-grid,
  .featured-products,
  .process-grid,
  .location-grid,
  .gallery{
    grid-template-columns:1fr;
  }

  .product-grid .product-feature,
  .featured-retablos{
    grid-column:auto;
  }

  .capability-list article{
    grid-template-columns:1fr;
  }

  .capability-icons{
    flex-direction:row;
    justify-content:flex-start;
  }

  .capability-icons img{
    width:98px;
    height:98px;
  }

  .capability-list h3{
    font-size:clamp(29px,11vw,43px);
    line-height:1;
  }

  .capability-photo{
    grid-column:auto;
    height:270px;
  }

  figure.feature{
    grid-column:auto;
  }

  .gallery{
    grid-auto-rows:280px;
  }

  figcaption{
    font-size:16px;
  }

  .process-grid article{
    min-height:190px;
  }

  .process-grid span{
    font-size:14px;
    margin-bottom:28px;
  }

  .process-grid strong{
    font-size:27px;
  }

  .location-grid h3{
    font-size:24px;
  }

  .contact-whatsapp{
    width:100%;
    justify-content:center;
    font-size:18px;
  }

  .result-item{
    align-items:flex-start;
    flex-direction:column;
  }

  .result-item a{
    white-space:normal;
  }

  .quote-form{
    padding:18px;
  }

  .whatsapp-float{
    right:12px;
    bottom:12px;
    min-height:44px;
    padding:11px 14px;
  }

  footer{
    align-items:flex-start;
    flex-direction:column;
    text-align:center;
  }

  footer img{
    align-self:center;
    width:200px;
  }

  .footer-message{
    width:100%;
  }

  footer strong{
    font-size:27px;
    line-height:1.05;
  }

  footer span{
    font-size:17px;
  }
}
