@font-face{font-family:Manrope;src:url("assets/fonts/Manrope-Variable.ttf") format("truetype");font-display:swap;font-weight:200 800}
@font-face{font-family:"IBM Plex Sans";src:url("assets/fonts/IBMPlexSans-Regular.ttf") format("truetype");font-display:swap;font-weight:400}
@font-face{font-family:"IBM Plex Sans";src:url("assets/fonts/IBMPlexSans-Medium.ttf") format("truetype");font-display:swap;font-weight:500}
@font-face{font-family:"IBM Plex Sans";src:url("assets/fonts/IBMPlexSans-SemiBold.ttf") format("truetype");font-display:swap;font-weight:600}
@font-face{font-family:"IBM Plex Mono";src:url("assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");font-display:swap;font-weight:400}

:root{
  --blue:#206aff;
  --iris:#5160ff;
  --violet:#7a45ff;
  --gradient:linear-gradient(100deg,var(--blue) 0%,var(--iris) 52%,var(--violet) 100%);
  --ink:#10151b;
  --carbon:#171e26;
  --graphite:#222a33;
  --slate:#657080;
  --silver:#dfe4ea;
  --porcelain:#f3f5f6;
  --paper:#fbfbfa;
  --white:#fff;
  --green:#33c27f;
  --line:rgba(22,31,43,.13);
  --line-light:rgba(255,255,255,.14);
  --shadow:0 34px 85px rgba(4,13,26,.27),0 8px 28px rgba(4,13,26,.12);
  --soft-shadow:0 18px 50px rgba(8,20,38,.12);
  --shell:min(1420px,calc(100% - 64px));
  --envelope:min(1320px,calc(100% - 96px));
  --header-height:84px;
  --ease:cubic-bezier(.22,.8,.2,1);
}

/* ================================================================
   Home continuity + motion v1.2
   Structural backgrounds remain visible; motion is reserved for
   internal content and decorative media.
   ================================================================ */

.home-page{
  --flow-base:#121e29;
  --flow-mid:#101d28;
  --flow-deep:#0c151e;
  --hero-parallax-y:0px;
  --category-parallax-y:0px;
  --institutional-parallax-y:0px;
  --builders-parallax-y:0px;
  background:var(--flow-deep);
}

/* Hero -> material field: every slide ends in the same carrier color. */
.home-page .hero{
  background:var(--flow-base);
  overflow:hidden;
}
.home-page .hero-media{
  transform:translate3d(0,var(--hero-parallax-y),0) scale(1.035);
  transform-origin:center;
  will-change:transform;
}
.home-page .hero-slide-pro .hero-media{
  transform:translate3d(0,var(--hero-parallax-y),0) scaleX(-1) scale(1.035);
}
.home-page .hero-slide::after{
  content:"";
  position:absolute;
  z-index:2;
  right:0;
  bottom:-1px;
  left:0;
  height:42%;
  pointer-events:none;
  background:linear-gradient(180deg,transparent 0%,rgba(18,30,41,.12) 25%,rgba(18,30,41,.66) 72%,var(--flow-base) 100%);
}

/* Dynamic, masked echo of the active hero behind the first envelope. */
.home-page .material-flow{
  isolation:isolate;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 18% 8%,rgba(50,83,122,.18),transparent 34%),
    radial-gradient(ellipse at 86% 43%,rgba(36,65,98,.13),transparent 31%),
    radial-gradient(ellipse at 42% 88%,rgba(46,53,91,.1),transparent 34%),
    linear-gradient(180deg,var(--flow-base) 0%,#142330 25%,#0f1b26 52%,#14212c 76%,var(--flow-deep) 100%);
}
.home-page .material-flow::before{
  z-index:0;
  opacity:.045;
}
.home-page .material-flow>.flow-bridge{
  position:absolute;
  z-index:0;
  top:-2px;
  right:0;
  left:0;
  height:clamp(420px,34vw,640px);
  overflow:hidden;
  pointer-events:none;
}
.home-page .flow-bridge-layer{
  position:absolute;
  inset:-14% -5%;
  opacity:0;
  background-image:var(--flow-image,none);
  background-position:center bottom;
  background-size:cover;
  background-repeat:no-repeat;
  filter:blur(30px) saturate(.72) brightness(.72);
  transform:scale(1.08);
  transform-origin:center top;
  transition:opacity .9s var(--ease);
  -webkit-mask-image:linear-gradient(180deg,#000 0%,rgba(0,0,0,.78) 28%,transparent 100%);
  mask-image:linear-gradient(180deg,#000 0%,rgba(0,0,0,.78) 28%,transparent 100%);
}
.home-page .flow-bridge-layer::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(18,30,41,.08),rgba(18,30,41,.72) 45%,var(--flow-base) 82%,transparent 100%);
}
.home-page .flow-bridge-layer.is-active,
.home-page .flow-bridge-layer[aria-hidden="false"]{
  opacity:.2;
}
.home-page .material-flow>section{
  position:relative;
  z-index:2;
}

/* Envelopes remain crisp, light and clearly lifted from the continuous field. */
.home-page .envelope-shell{
  background:linear-gradient(145deg,rgba(255,255,255,.995),rgba(241,245,248,.992));
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 42px 100px rgba(0,7,17,.44),0 12px 30px rgba(0,7,17,.24),inset 0 1px 0 #fff;
}

/* Balanced trust row. */
.home-page .trust-list{
  display:grid;
  width:min(840px,100%);
  max-width:none;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
}
.home-page .trust-list li{
  min-width:0;
  min-height:50px;
  justify-content:flex-start;
  gap:15px;
  padding:0 28px;
  border:0;
  border-left:1px solid rgba(255,255,255,.24);
  font-size:.94rem;
}
.home-page .trust-list li:first-child{padding-left:0;border-left:0}
.home-page .trust-list li:last-child{grid-column:auto;padding-right:0}
.home-page .trust-list svg{width:40px;height:40px;flex:0 0 40px}

/* Project cards: the card and HTML label stay still; only clean media zooms. */
.home-page .project-card{
  transform:none;
  transition:box-shadow .28s var(--ease),border-color .28s var(--ease);
}
.home-page .project-card:hover{
  transform:none;
  box-shadow:0 18px 38px rgba(5,15,27,.2);
}
.home-page .project-card img{
  transform:scale(1.001);
  transition:transform .72s var(--ease),filter .45s var(--ease);
}
.home-page .project-card:hover img{transform:scale(1.055)}
.home-page .project-card::after{
  display:block;
  background:linear-gradient(0deg,rgba(7,13,20,.92) 0%,rgba(7,13,20,.3) 38%,transparent 68%);
  pointer-events:none;
}
.home-page .project-card>span{
  display:block;
  position:absolute;
  z-index:3;
  right:48px;
  bottom:18px;
  left:18px;
  color:#fff;
  font:720 1.05rem/1.15 Manrope,sans-serif;
  text-shadow:0 2px 12px rgba(0,0,0,.5);
  transform:none;
}
.home-page .project-card i{
  display:block;
  z-index:3;
  right:17px;
  bottom:17px;
}

/* One continuous category image behind tabs and panel. */
.home-page .category-topline{position:relative;z-index:12}
.home-page .category-stage{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border:1px solid rgba(156,184,207,.42);
  border-radius:20px 20px 42px 18px;
  background:#0e1b25;
  box-shadow:0 34px 72px rgba(0,0,0,.33);
}
.home-page .category-stage-image{
  position:absolute;
  z-index:0;
  inset:-3%;
  width:106%;
  height:106%;
  max-width:none;
  object-fit:cover;
  object-position:center;
  transform:translate3d(0,var(--category-parallax-y),0) scale(1.035);
  transform-origin:center;
  transition:opacity .32s ease,filter .5s ease,transform .9s var(--ease);
  will-change:transform,opacity;
}
.home-page .category-stage::after{
  content:"";
  position:absolute;
  z-index:1;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(6,14,22,.06) 0%,rgba(6,14,22,.08) 42%,rgba(7,16,24,.58) 63%,rgba(8,17,25,.97) 84%,#0d1923 100%),
    linear-gradient(180deg,rgba(6,14,22,.46) 0%,rgba(6,14,22,.16) 24%,transparent 46%,rgba(7,15,23,.2) 100%);
}
.home-page .category-tabs{
  position:relative;
  z-index:3;
  height:132px;
  align-items:stretch;
  overflow:visible;
  border-radius:0;
  background:transparent;
}
.home-page .category-tab,
.home-page .category-tab.is-active,
.home-page .category-tab:hover{
  height:132px;
}
.home-page .category-tab{
  border:0;
  border-right:1px solid rgba(221,232,241,.2);
  border-bottom:1px solid rgba(221,232,241,.18);
  border-radius:0;
  background:rgba(7,16,24,.28);
  color:rgba(255,255,255,.82);
  box-shadow:none;
  backdrop-filter:blur(1px);
}
.home-page .category-tab:first-child,
.home-page .category-tab:last-child{border-radius:0}
.home-page .category-tab:hover{background:rgba(12,25,36,.42);color:#fff}
.home-page .category-tab.is-active{
  border:1px solid rgba(72,133,255,.92);
  border-bottom-color:transparent;
  border-radius:18px 18px 0 0;
  background:linear-gradient(180deg,rgba(32,106,255,.1),rgba(8,17,25,.08));
  color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 -10px 30px rgba(0,0,0,.12);
}
.home-page .category-tab-media{display:none!important}
.home-page .category-icon{
  top:20px;
  width:48px;
  height:48px;
  stroke-width:1.55;
  filter:drop-shadow(0 3px 10px rgba(0,0,0,.32));
}
.home-page .category-tab>span:last-child{bottom:20px;font-size:1.04rem;text-shadow:0 2px 10px rgba(0,0,0,.4)}
.home-page .category-panel{
  position:relative;
  z-index:2;
  height:520px;
  overflow:visible;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.home-page .category-panel::before{display:none}
.home-page .category-panel-image{display:none!important}
.home-page .category-panel-shade{
  z-index:1;
  background:transparent;
}
.home-page .category-panel-copy{
  position:absolute;
  z-index:3;
  top:0;
  right:0;
  width:43%;
  max-width:none;
  height:100%;
  padding:54px 58px 38px;
  justify-content:flex-start;
}

/* Predictive search dropdown. */
.home-page .category-search{
  position:relative;
  z-index:30;
  overflow:visible;
  border-color:rgba(209,224,238,.48);
  background:rgba(9,19,29,.78);
  box-shadow:0 16px 45px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.06);
  transition:border-color .25s,box-shadow .25s,background .25s;
}
.home-page .category-search:focus-within{
  border-color:rgba(91,143,255,.9);
  background:rgba(9,19,29,.94);
  box-shadow:0 0 0 4px rgba(32,106,255,.14),0 22px 55px rgba(0,0,0,.28);
}
.home-page .category-search-results{
  position:absolute;
  z-index:40;
  top:calc(100% + 10px);
  right:0;
  left:0;
  max-height:min(430px,55vh);
  overflow:auto;
  padding:9px;
  border:1px solid rgba(185,207,225,.3);
  border-radius:14px;
  background:rgba(247,250,252,.975);
  color:#152231;
  box-shadow:0 28px 70px rgba(0,6,16,.34),inset 0 1px 0 #fff;
  backdrop-filter:blur(22px) saturate(135%);
  overscroll-behavior:contain;
}
.home-page .category-search-results:empty{display:none}
.home-page .category-search-results .search-result,
.home-page .category-search-results>a{
  display:grid;
  min-height:54px;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:16px;
  padding:10px 13px;
  border-radius:10px;
  transition:background .2s,color .2s,transform .2s;
}
.home-page .category-search-results .search-result:hover,
.home-page .category-search-results>a:hover{
  background:linear-gradient(100deg,rgba(32,106,255,.1),rgba(122,69,255,.08));
  color:#164fbf;
  transform:translateX(2px);
}
.home-page .category-search-results strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.9rem}
.home-page .category-search-results small{color:#6f7c8a;font-size:.7rem;text-align:right}
.home-page .category-search-results .search-empty{margin:0;padding:13px;color:#6f7c8a;font-size:.82rem}

/* Transparent product cutouts receive depth from CSS, not white image boxes. */
.home-page .featured-visual,
.home-page .featured-card-main .featured-visual{
  background:radial-gradient(circle at 50% 44%,rgba(255,255,255,.9),rgba(226,233,239,.55) 58%,rgba(213,222,230,.18) 100%);
}
.home-page .featured-visual::before{
  opacity:.75;
  background:radial-gradient(circle at 28% 10%,rgba(32,106,255,.12),transparent 46%);
}
.home-page .featured-visual img,
.home-page .featured-card-main .featured-visual img,
.home-page .featured-card-small .featured-visual img{
  width:100%;
  height:100%;
  padding:clamp(16px,2vw,34px);
  object-fit:contain;
  mix-blend-mode:normal;
  filter:drop-shadow(0 22px 18px rgba(14,24,35,.24)) drop-shadow(0 6px 5px rgba(14,24,35,.14));
  transform:scale(1);
  transition:transform .55s var(--ease),filter .55s var(--ease);
}
.home-page .featured-card:hover .featured-visual img{
  transform:scale(1.035);
  filter:drop-shadow(0 27px 22px rgba(14,24,35,.28)) drop-shadow(0 7px 6px rgba(14,24,35,.16));
}

/* The institutional photograph dissolves into the same field at both edges. */
.home-page .institutional-section{
  isolation:isolate;
  background:transparent;
}
.home-page .institutional-visual{background:transparent}
.home-page .institutional-visual img{
  transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.06);
  transform-origin:center;
  transition:none;
  will-change:transform;
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 19%,#000 81%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,#000 19%,#000 81%,transparent 100%);
}
.home-page .institutional-visual::after{
  background:
    linear-gradient(90deg,rgba(6,15,24,.42) 0%,rgba(6,15,24,.2) 38%,transparent 64%),
    linear-gradient(180deg,transparent 0%,rgba(8,16,24,.05) 20%,rgba(8,16,24,.18) 78%,transparent 100%);
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 18%,#000 82%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,#000 18%,#000 82%,transparent 100%);
}
.home-page .institutional-visual:hover img{
  transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.06);
}

/* Exact raster social icons; SVG remains a harmless fallback. */
.home-page .social-links img.social-icon{
  display:block;
  width:36px;
  height:36px;
  object-fit:contain;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

/* Inner reveals: structural section backgrounds never blink out. */
.home-page.has-js .reveal{
  opacity:1;
  transform:none;
}
.home-page.has-js [data-reveal],
.home-page.has-js .reveal-item{
  --reveal-x:0px;
  --reveal-y:22px;
  --reveal-scale:1;
  opacity:0;
  transform:translate3d(var(--reveal-x),var(--reveal-y),0) scale(var(--reveal-scale));
  transition:opacity .68s var(--ease),transform .86s var(--ease);
  transition-delay:var(--reveal-delay,0ms);
}
.home-page.has-js [data-reveal].is-visible,
.home-page.has-js .reveal-item.is-visible,
.home-page.has-js .is-visible>[data-reveal],
.home-page.has-js .is-visible>.reveal-item{
  --reveal-x:0px;
  --reveal-y:0px;
  --reveal-scale:1;
  opacity:1;
}
.home-page [data-reveal="fade"]{--reveal-y:0px}
.home-page [data-reveal="left"]{--reveal-x:-22px;--reveal-y:0px}
.home-page [data-reveal="right"]{--reveal-x:22px;--reveal-y:0px}

/* Decorative parallax variables can be updated by one requestAnimationFrame loop. */
.home-page .builders-media{
  transform:translate3d(0,var(--builders-parallax-y),0) scale(1.035);
  transform-origin:center;
  will-change:transform;
}

@media(max-width:1100px){
  .home-page .trust-list{width:min(720px,100%)}
  .home-page .trust-list li{padding-inline:18px;font-size:.84rem}
  .home-page .trust-list li:first-child{padding-left:0}
  .home-page .trust-list li:last-child{padding-right:0}
  .home-page .trust-list svg{width:34px;height:34px;flex-basis:34px}

  .home-page .category-stage{border-radius:18px 18px 36px 16px}
  .home-page .category-tabs{height:auto;grid-template-columns:repeat(3,1fr)}
  .home-page .category-tab,
  .home-page .category-tab.is-active,
  .home-page .category-tab:hover{height:108px}
  .home-page .category-icon{top:16px;width:42px;height:42px}
  .home-page .category-tab>span:last-child{bottom:16px;font-size:.92rem}
  .home-page .category-panel{height:560px}
  .home-page .category-stage::after{
    background:
      linear-gradient(180deg,rgba(7,16,24,.5) 0%,rgba(7,16,24,.12) 34%,transparent 48%,rgba(8,17,25,.66) 67%,#0d1923 88%,#0d1923 100%);
  }
  .home-page .category-panel-copy{
    top:auto;
    bottom:0;
    width:100%;
    height:51%;
    padding:30px;
  }
}

@media(max-width:700px){
  .home-page .hero-slide::after{height:35%}
  .home-page .flow-bridge-layer{filter:blur(22px) saturate(.7) brightness(.7)}

  .home-page .trust-list{
    width:100%;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:0;
    margin-top:24px;
  }
  .home-page .trust-list li{
    min-height:76px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:7px;
    padding:0 10px;
    font-size:.66rem;
    line-height:1.22;
  }
  .home-page .trust-list li:first-child{padding-left:0}
  .home-page .trust-list li:last-child{grid-column:auto;padding-right:0}
  .home-page .trust-list svg{width:28px;height:28px;flex-basis:28px}

  .home-page .project-card>span{right:40px;bottom:13px;left:12px;font-size:.86rem}
  .home-page .project-card i{right:12px;bottom:12px;width:19px;height:19px}

  .home-page .category-search-results{right:-1px;left:-1px;max-height:48vh}
  .home-page .category-stage{border-radius:14px 14px 30px 0}
  .home-page .category-tabs{grid-template-columns:repeat(2,1fr)}
  .home-page .category-tab,
  .home-page .category-tab.is-active,
  .home-page .category-tab:hover{height:94px}
  .home-page .category-icon{top:12px;width:36px;height:36px}
  .home-page .category-tab>span:last-child{bottom:12px;font-size:.82rem}
  .home-page .category-panel{height:620px}
  .home-page .category-panel-copy{height:64%;padding:25px 20px}
  .home-page .category-benefits{position:static;width:100%}
  .home-page .category-stage::after{
    background:linear-gradient(180deg,rgba(7,16,24,.55) 0%,rgba(7,16,24,.15) 40%,rgba(8,17,25,.58) 58%,#0d1923 75%,#0d1923 100%);
  }

  .home-page .featured-visual img,
  .home-page .featured-card-main .featured-visual img,
  .home-page .featured-card-small .featured-visual img{padding:20px}

  .home-page .institutional-visual img{
    object-position:62% center;
    -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 14%,#000 86%,transparent 100%);
    mask-image:linear-gradient(180deg,transparent 0%,#000 14%,#000 86%,transparent 100%);
  }
  .home-page .institutional-visual::after{
    -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 13%,#000 87%,transparent 100%);
    mask-image:linear-gradient(180deg,transparent 0%,#000 13%,#000 87%,transparent 100%);
  }
  .home-page .social-links img.social-icon{width:34px;height:34px}
}

@media(prefers-reduced-motion:reduce){
  .home-page{
    --hero-parallax-y:0px;
    --category-parallax-y:0px;
    --institutional-parallax-y:0px;
    --builders-parallax-y:0px;
  }
  .home-page .flow-bridge-layer,
  .home-page [data-reveal],
  .home-page .reveal-item,
  .home-page .project-card img,
  .home-page .featured-visual img{
    transition:none!important;
  }
  .home-page.has-js [data-reveal],
  .home-page.has-js .reveal-item{
    opacity:1!important;
    transform:none!important;
  }
  .home-page .hero-media,
  .home-page .category-stage-image,
  .home-page .institutional-visual img,
  .home-page .institutional-visual:hover img,
  .home-page .builders-media,
  .home-page .project-card:hover img,
  .home-page .featured-card:hover .featured-visual img{
    transform:none!important;
    will-change:auto;
  }
  .home-page .hero-slide-pro .hero-media{transform:scaleX(-1)!important}
  .home-page .category-search-results .search-result:hover,
  .home-page .category-search-results>a:hover{transform:none}
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-height) + 20px)}
body{margin:0;color:var(--graphite);font:400 16px/1.5 "IBM Plex Sans",Arial,sans-serif;-webkit-font-smoothing:antialiased}
body.modal-open,body.drawer-open{overflow:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{color:inherit}
button,a{-webkit-tap-highlight-color:transparent}
::selection{background:rgba(81,96,255,.24)}
:focus-visible{outline:3px solid rgba(32,106,255,.48);outline-offset:3px}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.skip-link{position:fixed;z-index:2000;top:10px;left:12px;padding:10px 15px;border-radius:9px;background:#fff;color:#111;transform:translateY(-170%);transition:transform .2s}
.skip-link:focus{transform:none}
.section-shell{width:var(--shell);margin-inline:auto}
h1,h2,h3,p{margin-top:0}
h1,h2,h3{font-family:Manrope,sans-serif;letter-spacing:-.045em}
h2{margin-bottom:0;font-size:clamp(2.15rem,3.25vw,3.7rem);font-weight:790;line-height:.98;text-transform:uppercase}
.button{display:inline-flex;min-height:52px;align-items:center;justify-content:center;gap:11px;padding:0 24px;border:1px solid transparent;border-radius:8px;cursor:pointer;font-family:Manrope,sans-serif;font-size:.79rem;font-weight:750;letter-spacing:.015em;text-align:center;text-transform:uppercase;transition:transform .25s var(--ease),box-shadow .25s,border-color .25s,background .25s}
.button:hover{transform:translateY(-3px)}
.button-primary{background:var(--gradient);color:#fff;box-shadow:0 14px 35px rgba(73,86,255,.27)}
.button-primary:hover{box-shadow:0 19px 46px rgba(73,86,255,.4)}
.button-ghost{border-color:rgba(255,255,255,.68);background:rgba(12,20,28,.35);color:#fff;backdrop-filter:blur(12px)}
.button-line{border-color:rgba(32,106,255,.52);background:#fff;color:#315fdc}
.button-line:hover{border-color:var(--violet);background:#f8f7ff}
.button-secondary{border-color:var(--blue);background:#fff;color:var(--blue)}
.button-whatsapp{border-color:#168d51;background:#20a861;color:#fff;box-shadow:0 10px 24px rgba(24,141,81,.2);text-transform:none}
.button-whatsapp svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.65}.button-whatsapp svg path:last-child{fill:currentColor;stroke:none}
.button-compact{min-height:46px;padding-inline:18px;font-size:.74rem;white-space:nowrap;text-transform:none}
.button-wide{min-width:270px}
.text-link{display:inline-flex;align-items:center;gap:9px;color:#4168ef;font-family:Manrope,sans-serif;font-size:.75rem;font-weight:750;text-transform:uppercase;transition:gap .2s,color .2s}
.text-link:hover{gap:14px;color:var(--violet)}
.eyebrow{margin:0 0 8px;color:var(--blue);font:750 .72rem Manrope,sans-serif;letter-spacing:.1em;text-transform:uppercase}
.section-heading{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:30px}
.sku{color:#84909e;font:400 .67rem "IBM Plex Mono",monospace;text-transform:uppercase}

/* Header */
.site-header{position:sticky;z-index:100;top:0;height:var(--header-height);border-bottom:1px solid rgba(24,34,48,.08);background:rgba(255,255,255,.94);backdrop-filter:blur(18px) saturate(145%);transition:height .3s,background .3s,box-shadow .3s}
.site-header.is-scrolled{height:72px;box-shadow:0 13px 36px rgba(7,18,34,.09)}
.site-header-home{position:fixed;border-color:rgba(255,255,255,.1);background:linear-gradient(180deg,rgba(7,13,20,.78),rgba(7,13,20,.18))}
.site-header-home.is-scrolled{background:rgba(15,21,28,.9);box-shadow:0 18px 45px rgba(0,0,0,.22)}
.header-shell{width:min(1480px,calc(100% - 48px));height:100%;margin-inline:auto;display:grid;grid-template-columns:220px 1fr auto;align-items:center;gap:28px}
.brand{display:inline-flex;align-items:center}
.brand img{width:212px;height:auto}
.main-nav{display:flex;justify-content:center;gap:clamp(19px,2.4vw,38px)}
.main-nav a{position:relative;font:600 .84rem/1 Manrope,sans-serif;white-space:nowrap}
.site-header-home .main-nav a{color:#fff}
.main-nav a::after{content:"";position:absolute;right:0;bottom:-9px;left:0;height:2px;border-radius:9px;background:var(--gradient);transform:scaleX(0);transform-origin:left;transition:transform .25s}
.main-nav a:hover::after,.main-nav a[aria-current="page"]::after{transform:scaleX(1)}
.header-actions{display:flex;align-items:center;gap:10px}
.icon-button{position:relative;display:grid;width:43px;height:43px;place-items:center;padding:0;border:0;border-radius:10px;background:transparent;color:var(--graphite);cursor:pointer;transition:background .2s,transform .2s}
.site-header-home .icon-button{color:#fff}
.icon-button:hover{background:rgba(81,96,255,.12);transform:translateY(-1px)}
.icon-button svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8}
.whatsapp-button{display:flex;height:44px;align-items:center;gap:8px;padding:0 15px;border:1px solid #38d996;border-radius:10px;background:rgba(11,40,31,.25);color:#fff;font-size:.82rem;white-space:nowrap;transition:background .2s,transform .2s}
.whatsapp-button:hover{background:rgba(30,164,102,.2);transform:translateY(-1px)}
.whatsapp-button svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.65}
.whatsapp-button svg path:last-child{fill:currentColor;stroke:none}
.cart-count{position:absolute;top:1px;right:0;display:grid;min-width:18px;height:18px;place-items:center;padding:0 4px;border-radius:10px;background:var(--violet);color:#fff;font:700 .62rem/1 Manrope,sans-serif}
.nav-toggle{display:none;width:42px;height:42px;padding:9px;border:0;border-radius:9px;background:rgba(255,255,255,.1);cursor:pointer}
.nav-toggle span:not(.sr-only){display:block;height:2px;margin:5px 0;border-radius:4px;background:currentColor;transition:transform .2s,opacity .2s}
.site-header-home .nav-toggle{color:#fff}

/* Hero */
.hero{position:relative;height:max(740px,92svh);min-height:740px;overflow:hidden;background:#0c1219;isolation:isolate}
.hero-slide{position:absolute;inset:0;z-index:0;opacity:0;visibility:hidden;transform:scale(1.025);transition:opacity .9s var(--ease),transform 1.5s var(--ease),visibility 0s .9s}
.hero-slide.is-active{z-index:1;opacity:1;visibility:visible;transform:scale(1);transition-delay:0s}
.hero-media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.hero-slide-pro .hero-media{object-position:center;transform:scaleX(-1)}
.hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,13,22,.98) 0%,rgba(6,13,22,.9) 30%,rgba(6,13,22,.46) 52%,rgba(6,13,22,.07) 79%),linear-gradient(180deg,rgba(3,9,15,.48),transparent 31%,rgba(4,10,17,.5));z-index:1}
.hero-shell{position:relative;z-index:3;width:var(--shell);height:100%;margin:auto;display:flex;align-items:center;padding:calc(var(--header-height) + 34px) 0 102px}
.hero-copy{max-width:675px}
.hero h1,.hero h2{margin:0;color:#fff;font:800 clamp(3.4rem,5.55vw,6rem)/.9 Manrope,sans-serif;letter-spacing:-.06em;text-transform:uppercase;text-wrap:balance}
.hero h1 span,.hero h2 span{background:var(--gradient);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero-copy>p{max-width:570px;margin:22px 0 27px;color:#d7dde5;font-size:clamp(1.02rem,1.35vw,1.23rem)}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.trust-list{display:flex;max-width:740px;gap:0;margin:36px 0 0;padding:0;list-style:none;color:#f2f5f7}
.trust-list li{display:flex;align-items:center;gap:10px;padding:0 23px;border-left:1px solid rgba(255,255,255,.23);font-size:.78rem;line-height:1.25}
.trust-list li:first-child{padding-left:0;border-left:0}
.trust-list svg{width:24px;height:24px;flex:0 0 24px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
.hero-arrow{position:absolute;z-index:4;top:50%;display:grid;width:46px;height:62px;place-items:center;border:0;background:transparent;color:rgba(255,255,255,.76);cursor:pointer;font:200 3.3rem/1 Manrope,sans-serif;transition:color .2s,transform .2s}
.hero-arrow:hover{color:#fff;transform:scale(1.08)}
.hero-arrow-left{left:12px}.hero-arrow-right{right:12px}
.hero-product-stage{position:absolute;z-index:2;right:max(4vw,34px);bottom:68px;width:min(48vw,730px);height:56%;pointer-events:none}
.hero-product{position:absolute;filter:drop-shadow(0 23px 24px rgba(0,0,0,.48));object-fit:contain}
.hero-battery{right:34%;bottom:4%;width:37%;z-index:3}
.hero-inverter{right:13%;bottom:14%;width:31%;z-index:2}
.hero-panel{right:-8%;bottom:4%;width:42%;height:88%;z-index:1}
.hero-monitor{right:2%;bottom:3%;width:19%;z-index:4}

/* Continuous material field */
.material-flow{position:relative;overflow:hidden;padding:54px 0 0;background:
  radial-gradient(circle at 12% 15%,rgba(61,96,166,.18),transparent 26%),
  radial-gradient(circle at 88% 38%,rgba(86,73,147,.13),transparent 28%),
  radial-gradient(circle at 20% 72%,rgba(46,77,112,.15),transparent 31%),
  linear-gradient(180deg,#17212b 0%,#24303b 22%,#e7ebef 43%,#d8dee4 57%,#202b36 78%,#17212b 100%)}
.material-flow::before{content:"";position:absolute;inset:0;opacity:.18;pointer-events:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");mix-blend-mode:soft-light}
.material-flow>*{position:relative;z-index:1}
.envelope-section{padding:30px 0 70px}
.envelope-shell{width:var(--envelope);margin:auto;background:rgba(248,250,252,.975);box-shadow:var(--shadow);color:var(--graphite)}
.project-envelope,.featured-envelope{border-radius:54px 0 54px 0}

/* Project */
.project-section{z-index:4;margin-top:-78px}
.project-envelope{padding:44px 42px 34px}
.project-heading{display:flex;align-items:end;justify-content:space-between;margin-bottom:25px}
.project-heading h2{font-size:clamp(2.3rem,3.7vw,4.2rem)}
.project-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:13px}
.project-card{position:relative;min-width:0;height:220px;overflow:hidden;padding:0;border:1px solid rgba(27,37,51,.14);border-radius:13px;background:#18222d;color:#fff;cursor:pointer;text-align:left;box-shadow:0 10px 26px rgba(10,22,38,.09);transition:transform .28s var(--ease),box-shadow .28s,border-color .28s}
.project-card:hover{transform:translateY(-5px);box-shadow:0 20px 34px rgba(8,20,36,.2)}
.project-card.is-selected{border-color:#6268ff;box-shadow:0 0 0 2px #6268ff,0 20px 38px rgba(43,59,140,.22)}
.project-card img{width:100%;height:100%;object-fit:cover;transition:transform .55s var(--ease)}
.project-card:hover img{transform:scale(1.045)}
.project-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,14,21,.96),rgba(8,14,21,.02) 68%)}
.project-card>span{position:absolute;z-index:2;bottom:17px;left:17px;font:720 1.05rem/1 Manrope,sans-serif}
.project-card i{position:absolute;z-index:2;right:16px;bottom:15px;width:21px;height:21px;border:2px solid #fff;border-radius:50%}
.project-card.is-selected i{border:6px solid #fff;background:#5962ff;box-shadow:0 0 0 3px #5962ff}
.project-selector{display:grid;grid-template-columns:1fr 1.2fr 1.1fr auto;gap:12px;align-items:end;margin-top:15px;padding:15px;border:1px solid rgba(35,48,66,.11);border-radius:12px;background:#fff;box-shadow:0 8px 24px rgba(14,28,47,.06)}
.project-selector label{display:flex;min-width:0;flex-direction:column;gap:6px;color:#616b78;font-size:.66rem;font-weight:600}
.project-selector label>span{padding-left:2px}
.project-selector select{width:100%;height:45px;padding:0 35px 0 11px;border:1px solid var(--line);border-radius:8px;outline:0;background:#f9fafb;color:var(--graphite);font-size:.78rem}
.project-selector select:focus{border-color:rgba(32,106,255,.55);box-shadow:0 0 0 4px rgba(32,106,255,.08)}
.project-actions{display:grid;grid-template-columns:1fr 1.15fr;gap:9px}
.project-actions .button{min-height:45px;padding-inline:14px;font-size:.68rem;white-space:nowrap}

/* Categories */
.category-explorer{padding:54px 0 92px;color:#fff}
.category-topline{display:flex;align-items:center;justify-content:space-between;gap:26px;margin-bottom:26px}
.category-topline h2{font-size:clamp(2.3rem,3.5vw,4rem)}
.category-search{display:flex;width:min(470px,42vw);height:50px;align-items:center;border:1px solid rgba(255,255,255,.22);border-radius:10px;background:rgba(10,18,27,.5);box-shadow:0 12px 30px rgba(0,0,0,.16);backdrop-filter:blur(12px)}
.category-search svg{width:20px;margin-left:15px;fill:none;stroke:#dce4ee;stroke-width:1.8}
.category-search input{min-width:0;flex:1;height:100%;padding:0 12px;border:0;outline:0;background:transparent;color:#fff;font-size:.83rem}
.category-search input::placeholder{color:rgba(255,255,255,.58)}
.category-search button{align-self:stretch;padding:0 25px;border:0;border-radius:0 9px 9px 0;background:var(--gradient);color:#fff;cursor:pointer;font:700 .73rem Manrope,sans-serif;text-transform:uppercase}
.category-tabs{display:grid;grid-template-columns:repeat(6,1fr);gap:1px;align-items:end;border-radius:16px 16px 0 0;overflow:hidden;background:rgba(255,255,255,.12)}
.category-tab{position:relative;height:94px;overflow:hidden;padding:0;border:0;border-right:1px solid rgba(255,255,255,.13);background:rgba(9,16,24,.62);color:rgba(255,255,255,.7);cursor:pointer;font:670 clamp(.7rem,1vw,.86rem)/1.15 Manrope,sans-serif;transition:height .3s var(--ease),color .25s,background .25s}
.category-tab:last-child{border-right:0}
.category-tab>span:last-child{position:absolute;z-index:2;right:8px;bottom:17px;left:8px;text-align:center}
.category-tab-media{position:absolute;inset:0;opacity:.16;transform:translateY(10px);transition:opacity .4s,transform .5s}
.category-tab-media img{width:100%;height:100%;object-fit:cover;filter:saturate(.7)}
.category-tab::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,15,23,.9),rgba(8,15,23,.1))}
.category-tab:hover{color:#fff;background:rgba(17,27,38,.8)}
.category-tab:hover .category-tab-media{opacity:.35;transform:none}
.category-tab.is-active{height:124px;color:#fff;background:#1b2530}
.category-tab.is-active .category-tab-media{opacity:1;transform:none}
.category-tab.is-active::after{background:linear-gradient(0deg,rgba(8,15,23,.9),rgba(8,15,23,.02) 75%)}
.category-panel{position:relative;height:390px;overflow:hidden;border-radius:0 0 42px 4px;background:#0c131b;box-shadow:0 30px 65px rgba(0,0,0,.25)}
.category-panel::before{content:"";position:absolute;z-index:3;top:0;left:0;width:calc(100% / 6);height:3px;background:var(--gradient);transform:translateX(calc(var(--active-index,0) * 100%));transition:transform .55s var(--ease)}
.category-panel-image{position:absolute;inset:-1px;width:100%;height:101%;object-fit:cover;object-position:center;transition:opacity .3s,transform .8s var(--ease)}
.category-panel.is-changing .category-panel-image{opacity:.2;transform:scale(1.025)}
.category-panel-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,13,21,.96) 0%,rgba(6,13,21,.84) 35%,rgba(6,13,21,.28) 66%,rgba(6,13,21,.08))}
.category-panel-copy{position:relative;z-index:2;display:flex;height:100%;max-width:620px;flex-direction:column;align-items:flex-start;justify-content:center;padding:52px}
.category-panel-copy>p{margin:0 0 11px;color:#6fa0ff;font:700 .72rem Manrope,sans-serif;letter-spacing:.1em;text-transform:uppercase}
.category-panel-copy h3{margin:0 0 28px;color:#fff;font-size:clamp(2rem,3.6vw,4rem);line-height:.97;text-transform:uppercase;text-wrap:balance}

/* Featured */
.featured-section{padding-top:74px;padding-bottom:86px}
.featured-envelope{padding:46px 42px 37px}
.featured-heading{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:27px}
.featured-grid{display:grid;grid-template-columns:1.35fr .67fr .67fr;grid-template-rows:275px 275px;gap:13px}
.featured-card{position:relative;display:grid;min-width:0;overflow:hidden;border:1px solid rgba(26,38,54,.12);border-radius:13px;background:#fff;box-shadow:0 10px 27px rgba(11,25,43,.07);transition:transform .3s var(--ease),box-shadow .3s}
.featured-card:hover{transform:translateY(-5px);box-shadow:0 24px 48px rgba(11,25,43,.14)}
.featured-card-main{grid-row:1/3;display:flex;flex-direction:column}
.featured-card-medium{grid-column:2/4;grid-template-columns:42% 1fr}
.featured-card-small{grid-template-columns:42% 1fr}
.featured-visual{position:relative;min-height:0;background:linear-gradient(145deg,#f7f9fa,#e9edf1)}
.featured-visual::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 0%,rgba(32,106,255,.09),transparent 43%)}
.featured-visual img{position:relative;width:100%;height:100%;padding:22px;object-fit:contain;mix-blend-mode:multiply;transition:transform .4s var(--ease)}
.featured-card:hover .featured-visual img{transform:scale(1.045)}
.featured-card-main .featured-visual{height:58%}
.featured-card-main .featured-visual img{padding:36px}
.featured-body{display:flex;min-width:0;flex-direction:column;padding:20px}
.featured-card-main .featured-body{flex:1;padding:22px 24px 23px}
.featured-body .sku{margin:0 0 7px;color:#84909e;font:400 .63rem "IBM Plex Mono",monospace;text-transform:uppercase}
.featured-body h3{margin:0 0 8px;font-size:1.08rem;line-height:1.12}
.featured-card-main h3{font-size:1.45rem}
.featured-summary{margin:0 0 9px;color:#737e8b;font-size:.83rem}
.home-price{display:flex;align-items:baseline;justify-content:space-between;gap:9px;margin:auto 0 13px;color:#1e2833;font:770 1.04rem/1.2 Manrope,sans-serif}
.featured-card-main .home-price{font-size:1.35rem}
.home-price small{color:#687381;font:600 .66rem/1.2 "IBM Plex Sans",sans-serif;text-align:right}
.status-pill{position:absolute;z-index:4;top:14px;left:14px;padding:6px 10px;border-radius:6px;background:#dbe8ff;color:#315fc4;font:750 .6rem Manrope,sans-serif;letter-spacing:.035em;text-transform:uppercase}
.status-pill.status-ready{background:#d9f6e4;color:#187344}
.product-actions{display:flex;align-items:center;gap:13px;margin-top:auto}
.featured-card .product-actions .button{min-height:42px;flex:1;padding-inline:11px;font-size:.64rem}
.featured-card .product-actions>a{color:#52606e;font-size:.71rem;text-decoration:underline;text-underline-offset:3px}
.featured-card-small .featured-body{padding:15px}
.featured-card-small .featured-body h3{font-size:.9rem}
.featured-card-small .home-price{display:block;margin:auto 0 8px;font-size:.88rem}
.featured-card-small .home-price small{display:block;margin-top:2px;text-align:left}
.featured-card-small .product-actions{gap:7px}.featured-card-small .product-actions>a{font-size:.63rem}
.home-stock-note{margin:18px 0 0;color:#6f7b88;font-size:.71rem;text-align:right}

/* Institutional */
.institutional-section{padding:80px 0 55px;color:#fff}
.institutional-grid{display:grid;grid-template-columns:1fr minmax(470px,.86fr);align-items:center;gap:70px}
.institutional-copy h2{max-width:720px;font-size:clamp(2.65rem,4.5vw,5rem);text-wrap:balance}
.institutional-copy>p{max-width:620px;margin:18px 0 35px;color:rgba(255,255,255,.7);font-size:1.05rem}
.journey-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin:0;padding:0;list-style:none}
.journey-steps li{display:flex;min-height:95px;flex-direction:column;gap:11px;padding:0 17px;border-left:1px solid rgba(255,255,255,.14);color:#f5f7f9;font:660 .82rem/1.25 Manrope,sans-serif}
.journey-steps li:first-child{padding-left:0;border-left:0}
.journey-steps span{display:grid;width:40px;height:40px;place-items:center;border:1px solid rgba(255,255,255,.34);border-radius:50%;background:linear-gradient(140deg,rgba(32,106,255,.8),rgba(122,69,255,.8));box-shadow:0 9px 24px rgba(58,77,216,.25);font-family:"IBM Plex Mono",monospace}
.institutional-visual{position:relative;height:455px;overflow:hidden;margin:0;border-radius:42px 3px 42px 3px;box-shadow:0 28px 70px rgba(0,0,0,.34)}
.institutional-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(16,24,33,.12),transparent 45%),linear-gradient(0deg,rgba(9,15,22,.7),transparent 50%)}
.institutional-visual img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--ease)}
.institutional-visual:hover img{transform:scale(1.035)}
.institutional-visual figcaption{position:absolute;z-index:2;right:35px;bottom:35px;width:260px;color:#fff;font:italic 1.8rem/1.22 "Segoe Script","Bradley Hand",cursive;text-align:right;transform:rotate(-3deg);text-shadow:0 3px 16px rgba(0,0,0,.55)}

/* Builders */
.builders-section{position:relative;height:300px;overflow:hidden;margin-top:32px;background:#121a22;color:#fff}
.builders-section::before{content:"";position:absolute;z-index:3;top:0;right:0;left:0;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.38),transparent)}
.builders-media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;transform:scaleX(-1)}
.builders-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,17,24,.96),rgba(10,17,24,.68) 47%,rgba(10,17,24,.28))}
.builders-content{position:relative;z-index:2;display:flex;height:100%;align-items:center;justify-content:space-between;gap:40px}
.builders-content>div{max-width:650px}
.builders-content p{margin:0 0 6px;color:#7e9fff;font:720 .7rem Manrope,sans-serif;letter-spacing:.11em;text-transform:uppercase}
.builders-content h2{margin:0 0 12px;font-size:clamp(2.25rem,3.7vw,4.1rem)}
.builders-content span{color:rgba(255,255,255,.7)}
.builders-content .button{flex:0 0 auto}

/* Footer */
.site-footer{padding:47px 0 20px;background:linear-gradient(120deg,#101820,#19232d);color:#fff}
.footer-main{display:grid;grid-template-columns:1.1fr 2fr .72fr;gap:70px;padding-bottom:35px}
.footer-brand img{width:220px;height:auto;margin-bottom:17px}
.footer-brand p{margin:0;color:rgba(255,255,255,.5);font-size:.76rem}
.footer-nav{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}
.footer-nav>div,.footer-connect,.social-links{display:flex;flex-direction:column;align-items:flex-start;gap:7px}
.footer-nav h3,.footer-connect h3{margin:0 0 6px;color:rgba(255,255,255,.46);font:650 .65rem Manrope,sans-serif;letter-spacing:.08em;text-transform:uppercase}
.footer-nav a,.footer-nav button,.social-links a{padding:0;border:0;background:none;color:rgba(255,255,255,.72);cursor:pointer;font-size:.76rem;text-align:left;transition:color .2s}
.footer-nav a:hover,.footer-nav button:hover,.social-links a:hover{color:#fff}
.social-links{display:grid;grid-template-columns:1fr 1fr}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:17px;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.37);font-size:.68rem}
.footer-grid{display:grid;grid-template-columns:1.35fr repeat(3,.62fr) 1fr;gap:38px;padding-bottom:34px}
.footer-grid .footer-brand img{width:220px}
.footer-col,.footer-news{display:flex;flex-direction:column;align-items:flex-start;gap:7px}
.footer-col h3,.footer-news h3{margin:0 0 5px;color:rgba(255,255,255,.48);font:650 .65rem Manrope,sans-serif;letter-spacing:.08em;text-transform:uppercase}
.footer-col a,.footer-col button{padding:0;border:0;background:none;color:rgba(255,255,255,.72);cursor:pointer;font-size:.76rem;text-align:left}
.footer-news form{display:flex;width:100%;height:42px;overflow:hidden;border:1px solid rgba(255,255,255,.2);border-radius:7px;background:rgba(255,255,255,.05)}
.footer-news input{min-width:0;flex:1;padding:0 11px;border:0;outline:0;background:transparent;color:#fff;font-size:.75rem}.footer-news button{width:42px;border:0;border-left:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.06);color:#fff;cursor:pointer}.footer-news>p{margin:2px 0 0;color:#8db9ff;font-size:.69rem}
.footer-social-inline{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:8px 17px}.footer-social-inline a{display:inline-flex;align-items:center;gap:7px;color:rgba(255,255,255,.65);font-size:.7rem}.footer-social-inline svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.55}.footer-social-inline .social-fill,.footer-social-inline .social-dot{fill:currentColor;stroke:none}

/* Dialogs */
.search-dialog,.quote-dialog{width:min(760px,calc(100% - 30px));max-height:calc(100dvh - 30px);padding:0;border:0;border-radius:26px 3px 26px 3px;background:#fff;color:var(--graphite);box-shadow:0 40px 100px rgba(0,0,0,.45)}
.search-dialog::backdrop,.quote-dialog::backdrop{background:rgba(7,12,18,.78);backdrop-filter:blur(7px)}
.search-dialog-head,.dialog-top{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding:29px 32px 17px}
.search-dialog-head p,.dialog-top p,.cart-head p{margin:0 0 5px;color:#5876dc;font:720 .65rem Manrope,sans-serif;letter-spacing:.1em;text-transform:uppercase}
.search-dialog-head h2,.dialog-top h2,.cart-head h2{font-size:1.85rem;text-transform:none}
.search-dialog-head>button,.dialog-close,.cart-head>button{display:grid;width:42px;height:42px;place-items:center;border:1px solid var(--line);border-radius:50%;background:#f5f7f9;cursor:pointer;font-size:1.6rem;line-height:1}
.global-search{display:flex;height:54px;align-items:center;margin:0 32px;border:1px solid rgba(32,106,255,.3);border-radius:10px;background:#f8faff}
.global-search svg{width:21px;margin-left:15px;fill:none;stroke:var(--graphite);stroke-width:1.8}
.global-search input{min-width:0;flex:1;height:100%;padding:0 12px;border:0;outline:0;background:transparent}
.global-search button{align-self:stretch;padding:0 24px;border:0;border-radius:0 9px 9px 0;background:var(--gradient);color:#fff;cursor:pointer;font:700 .72rem Manrope,sans-serif;text-transform:uppercase}
.global-results{display:grid;max-height:370px;overflow:auto;gap:5px;padding:18px 32px 30px}
.search-result{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:11px 12px;border-radius:9px;transition:background .2s}
.search-result:hover{background:#f0f4ff}.search-result strong{font-size:.88rem}.search-result small{color:#7a8491;font-size:.7rem;text-align:right}
.search-empty{margin:0;padding:16px 12px;color:#717c89;font-size:.84rem}
.dialog-lead{margin:0;padding:0 32px 20px;color:#74808d;font-size:.88rem}
.quote-form{display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:0 32px 32px}
.quote-form label:not(.consent){display:flex;flex-direction:column;gap:6px;color:#55606d;font-size:.73rem;font-weight:600}
.quote-form input,.quote-form select,.quote-form textarea{width:100%;border:1px solid var(--line);border-radius:8px;background:#fafbfc;color:var(--graphite);outline:0}
.quote-form input,.quote-form select{height:44px;padding:0 11px}.quote-form textarea{padding:11px;resize:vertical}
.quote-form input:focus,.quote-form select:focus,.quote-form textarea:focus{border-color:rgba(32,106,255,.55);box-shadow:0 0 0 4px rgba(32,106,255,.08)}
.field-full{grid-column:1/-1}.consent{display:flex;align-items:flex-start;gap:8px;color:#74808d;font-size:.72rem}.consent input{width:16px;height:16px;margin-top:2px}
.quote-channel-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}.quote-channel-actions .button{width:100%}.form-status{margin:0;color:#207847;font-size:.77rem}

/* Cart */
.drawer-backdrop{position:fixed;z-index:300;inset:0;background:rgba(5,10,16,.7);backdrop-filter:blur(4px);opacity:0;transition:opacity .35s}
.drawer-backdrop.is-open{opacity:1}
.cart-drawer{position:fixed;z-index:310;top:0;right:0;width:min(465px,100%);height:100dvh;overflow:auto;padding:26px;background:#fff;color:var(--graphite);box-shadow:-25px 0 70px rgba(0,0,0,.3);transform:translateX(105%);transition:transform .45s var(--ease)}
.cart-drawer.is-open{transform:none}
.cart-head{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;padding-bottom:20px;border-bottom:1px solid var(--line)}
.cart-head h2{font-size:1.55rem}
.cart-items{display:grid;gap:12px;padding:18px 0}
.cart-item{display:grid;grid-template-columns:74px 1fr auto;gap:13px;align-items:center;padding:11px;border:1px solid var(--line);border-radius:12px;background:#fbfcfd}
.cart-item img{width:74px;height:74px;padding:6px;object-fit:contain;mix-blend-mode:multiply}
.cart-item h3{margin:0 0 4px;font-size:.82rem;line-height:1.2}.cart-item p{margin:0;color:#617080;font-size:.72rem}
.cart-qty{display:flex;align-items:center;gap:8px;margin-top:8px}.cart-qty button{display:grid;width:25px;height:25px;place-items:center;border:1px solid var(--line);border-radius:6px;background:#fff;cursor:pointer}.cart-qty span{min-width:18px;text-align:center;font-size:.75rem}
.cart-remove{align-self:start;padding:2px;border:0;background:none;color:#8a94a0;cursor:pointer;font-size:1.15rem}
.cart-empty{padding:42px 0;text-align:center}.cart-empty p{color:#727d8a}.cart-empty a{color:#3865e8;font-weight:600}
.cart-summary{margin-top:auto;padding-top:19px;border-top:1px solid var(--line)}.cart-summary>div{display:flex;align-items:end;justify-content:space-between;gap:20px}.cart-summary>div span{color:#697582;font-size:.8rem}.cart-summary strong{font:770 1.4rem Manrope,sans-serif}.cart-summary p{margin:10px 0 17px;color:#727d89;font-size:.72rem}.cart-summary .button{width:100%}.cart-summary small{display:block;margin-top:10px;color:#87909b;font-size:.68rem;text-align:center}
.toast{position:fixed;z-index:500;right:24px;bottom:24px;max-width:360px;padding:13px 17px;border:1px solid rgba(255,255,255,.14);border-radius:10px;background:#17212b;color:#fff;box-shadow:0 18px 45px rgba(0,0,0,.28);opacity:0;pointer-events:none;transform:translateY(14px);transition:opacity .25s,transform .25s}.toast.is-visible{opacity:1;transform:none}

/* Internal pages keep current functional layout */
.internal-page{background:var(--paper)}
.internal-page .main-nav a{color:var(--graphite)}
.internal-page .whatsapp-button,.internal-page .button-whatsapp{border-color:#168d51;background:#20a861;color:#fff}
.internal-page .site-footer{margin-top:0}

/* Motion */
.has-js .reveal{opacity:0;transform:translateY(32px);transition:opacity .75s var(--ease),transform .9s var(--ease)}
.has-js .reveal.is-visible{opacity:1;transform:none}

@media(max-width:1280px){
  :root{--envelope:min(1280px,calc(100% - 54px))}
  .header-shell{grid-template-columns:190px 1fr auto;gap:18px}.brand img{width:185px}.main-nav{gap:20px}.main-nav a{font-size:.77rem}
  .hero-product-stage{right:2%;width:49vw}
  .project-selector{grid-template-columns:1fr 1fr 1fr}.project-actions{grid-column:1/-1;justify-self:end;width:min(530px,100%)}
  .featured-grid{grid-template-columns:1.2fr .65fr .65fr}
  .institutional-grid{grid-template-columns:1fr minmax(410px,.8fr);gap:40px}
  .footer-grid{grid-template-columns:1.2fr repeat(3,.7fr)}.footer-news{grid-column:1/-1;max-width:420px}
}

@media(max-width:980px){
  :root{--header-height:72px;--shell:min(760px,calc(100% - 38px));--envelope:min(800px,calc(100% - 32px))}
  .site-header,.site-header.is-scrolled{height:72px}.header-shell{width:calc(100% - 28px);grid-template-columns:1fr auto auto;gap:8px}.brand img{width:180px}
  .nav-toggle{display:block}.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .main-nav{position:fixed;top:72px;right:0;left:0;display:flex;max-height:0;overflow:hidden;flex-direction:column;gap:0;padding:0 20px;background:rgba(14,21,29,.98);box-shadow:0 20px 40px rgba(0,0,0,.2);transition:max-height .35s,padding .35s}.main-nav.is-open{max-height:420px;padding:12px 20px 24px}.main-nav a,.internal-page .main-nav a{padding:12px;border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-size:.86rem}
  .whatsapp-button{padding:0 11px}.whatsapp-button span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
  .hero{height:780px;min-height:780px}.hero-media{object-position:64% center}.hero-shade{background:linear-gradient(90deg,rgba(6,13,22,.96),rgba(6,13,22,.5)),linear-gradient(180deg,rgba(3,9,15,.3),transparent 35%,rgba(4,10,17,.72))}
  .hero-shell{align-items:flex-start;padding-top:145px}.hero-copy{max-width:580px}.hero h1,.hero h2{font-size:clamp(3.15rem,9.5vw,5.2rem)}
  .hero-product-stage{right:-3%;bottom:64px;width:68vw;height:40%;opacity:.95}.trust-list{position:absolute;right:0;bottom:26px;left:0;flex-wrap:wrap}.trust-list li{padding:0 14px}
  .project-section{margin-top:-54px}.project-envelope{padding:34px 25px 27px}.project-cards{grid-template-columns:1fr 1fr}.project-card{height:190px}.project-selector{grid-template-columns:1fr 1fr}.project-selector label:nth-child(3){grid-column:1/-1}.project-actions{width:100%}
  .category-topline{align-items:flex-start;flex-direction:column}.category-search{width:100%}.category-tabs{grid-template-columns:repeat(3,1fr)}.category-tab{height:78px}.category-tab.is-active{height:104px}.category-panel::before{width:calc(100% / 3);transform:translateX(calc((var(--active-index,0) % 3) * 100%))}.category-panel{height:350px}.category-panel-copy{padding:35px}
  .featured-envelope{padding:36px 25px}.featured-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}.featured-card-main{grid-column:1/-1;grid-row:auto;height:580px}.featured-card-medium{grid-column:1/-1;height:285px}.featured-card-small{height:260px}.featured-card-small{grid-template-columns:45% 1fr}
  .institutional-grid{grid-template-columns:1fr}.institutional-visual{height:420px}.journey-steps{max-width:700px}.builders-section{height:auto;min-height:340px}.builders-content{align-items:flex-start;flex-direction:column;justify-content:center}.builders-content .button{align-self:flex-start}
  .footer-main{grid-template-columns:1fr 1.8fr;gap:45px}.footer-connect{grid-column:1/-1}.social-links{grid-template-columns:repeat(4,auto);gap:20px;flex-direction:row}
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr}.footer-grid .footer-news{grid-column:1/-1}
}

@media(max-width:620px){
  :root{--shell:calc(100% - 26px);--envelope:calc(100% - 20px)}
  h2{font-size:2.15rem}.header-shell{width:calc(100% - 20px)}.brand img{width:150px}.header-search-trigger{display:none}
  .hero{height:830px;min-height:830px}.hero-shell{align-items:flex-start;padding:130px 0 235px}.hero h1,.hero h2{font-size:clamp(2.8rem,13vw,4rem)}.hero-copy>p{font-size:.96rem}.hero-actions{align-items:stretch;flex-direction:column}.hero-actions .button{width:100%}.hero-product-stage{right:-12%;bottom:75px;width:94vw;height:36%}.trust-list{bottom:14px;display:grid;grid-template-columns:1fr 1fr;gap:9px}.trust-list li{padding:0;border:0;font-size:.68rem}.trust-list li:last-child{grid-column:1/-1}.hero-arrow{display:none}
  .material-flow{padding-top:35px}.project-section{margin-top:-30px}.project-envelope,.featured-envelope{border-radius:30px 2px 30px 2px}.project-envelope{padding:28px 14px 19px}.project-heading{margin-bottom:18px}.project-cards{gap:8px}.project-card{height:145px}.project-card>span{bottom:12px;left:11px;font-size:.86rem}.project-card i{right:10px;bottom:10px;width:18px;height:18px}.project-selector{grid-template-columns:1fr;margin-top:10px;padding:10px}.project-selector label:nth-child(3),.project-actions{grid-column:auto}.project-actions{grid-template-columns:1fr}.project-actions .button{white-space:normal}
  .category-explorer{padding:40px 0 65px}.category-topline{margin-bottom:18px}.category-search button{padding-inline:17px}.category-tabs{grid-template-columns:repeat(2,1fr)}.category-tab{height:74px}.category-tab.is-active{height:94px}.category-panel::before{width:50%;transform:translateX(calc((var(--active-index,0) % 2) * 100%))}.category-panel{height:330px;border-radius:0 0 30px 2px}.category-panel-copy{padding:25px}.category-panel-copy h3{font-size:2rem}
  .featured-section{padding:54px 0 66px}.featured-envelope{padding:29px 13px}.featured-heading{align-items:flex-start;flex-direction:column}.featured-grid{grid-template-columns:1fr}.featured-card-main{height:570px}.featured-card-medium{grid-column:auto;grid-template-columns:1fr;height:440px}.featured-card-medium .featured-visual{height:58%}.featured-card-small{height:245px}.home-stock-note{text-align:left}
  .institutional-section{padding:60px 0 45px}.institutional-copy h2{font-size:2.65rem}.institutional-copy>p{font-size:.94rem}.journey-steps{grid-template-columns:1fr 1fr;gap:22px 0}.journey-steps li:nth-child(3){padding-left:0;border-left:0}.institutional-visual{height:360px}.institutional-visual figcaption{right:22px;bottom:25px;width:220px;font-size:1.45rem}
  .builders-section{min-height:380px}.builders-media{object-position:38% center}.builders-shade{background:linear-gradient(90deg,rgba(10,17,24,.97),rgba(10,17,24,.7))}.builders-content h2{font-size:2.5rem}.builders-content .button{width:100%}
  .footer-main{grid-template-columns:1fr;gap:32px}.footer-nav{grid-template-columns:1fr 1fr;gap:26px}.footer-nav>div:last-child{grid-column:1/-1}.footer-connect{grid-column:auto}.social-links{grid-template-columns:1fr 1fr;gap:10px}.footer-bottom{font-size:.64rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}.footer-grid .footer-brand,.footer-grid .footer-news{grid-column:1/-1}.footer-social-inline{justify-content:center}
  .quote-form{grid-template-columns:1fr;padding:0 20px 24px}.field-full{grid-column:1}.quote-channel-actions{grid-template-columns:1fr}.dialog-top,.search-dialog-head{padding:23px 20px 13px}.dialog-lead{padding:0 20px 17px}.global-search{margin:0 20px}.global-results{padding:14px 20px 23px}.global-search button{padding-inline:15px}
  .cart-drawer{padding:20px}.cart-item{grid-template-columns:64px 1fr auto}.cart-item img{width:64px;height:64px}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .has-js .reveal{opacity:1;transform:none}
}

/* ========================================================================== 
   Homepage v1.1 — tradução visual da referência normativa 12.2
   Os estilos abaixo são deliberadamente restritos a .home-page para não
   alterar as páginas internas enquanto a direção visual da home é calibrada.
   ========================================================================== */

.home-page{
  --shell:min(1770px,89vw);
  --envelope:min(1770px,92vw);
  background:#0d1721;
}
.home-page .section-shell{width:var(--shell)}
.home-page .button{text-transform:none;letter-spacing:-.01em}

/* Cabeçalho panorâmico */
.home-page .site-header-home{
  right:0;
  left:0;
  width:100%;
  height:106px;
  border:0;
  background:linear-gradient(180deg,rgba(5,11,18,.76),rgba(5,11,18,.22) 72%,transparent);
  backdrop-filter:none;
}
.home-page .site-header-home.is-scrolled{height:82px;background:rgba(8,15,23,.9);backdrop-filter:blur(18px) saturate(125%)}
.home-page .header-shell{width:var(--shell);grid-template-columns:300px 1fr auto;gap:32px}
.home-page .brand img{width:290px}
.home-page .main-nav{gap:clamp(30px,3.2vw,64px)}
.home-page .main-nav a{font-size:1rem;font-weight:550}
.home-page .header-actions{gap:15px}
.home-page .icon-button{width:52px;height:52px}
.home-page .icon-button svg{width:28px;height:28px;stroke-width:1.7}
.home-page .whatsapp-button{height:54px;padding:0 22px;border-radius:11px;font-size:.98rem;background:rgba(5,20,17,.34)}
.home-page .whatsapp-button svg{width:25px;height:25px}

/* Hero 5:2 — cena e produtos integrados em um único bitmap */
.home-page .hero{height:clamp(640px,40vw,800px);min-height:0;background:#071019}
.home-page .hero-media{object-fit:cover;object-position:center center}
.home-page .hero-shade{
  background:
    linear-gradient(90deg,rgba(3,10,17,.5) 0%,rgba(3,10,17,.34) 29%,rgba(3,10,17,.1) 48%,transparent 68%),
    linear-gradient(180deg,rgba(1,7,12,.18),transparent 30%,rgba(2,8,14,.18));
}
.home-page .hero-shell{width:var(--shell);align-items:center;padding:124px 0 35px}
.home-page .hero-copy{max-width:790px}
.home-page .hero h1,.home-page .hero h2{font-size:clamp(4rem,4.45vw,5.45rem);line-height:.93;letter-spacing:-.058em}
.home-page .hero-copy>p{max-width:760px;margin:20px 0 32px;color:#f0f3f6;font-size:clamp(1.05rem,1.28vw,1.48rem)}
.home-page .hero-actions{gap:24px}
.home-page .hero-actions .button{min-width:350px;min-height:62px;border-radius:9px;font-size:1.06rem;font-weight:520}
.home-page .hero-actions .button-primary{box-shadow:0 12px 34px rgba(59,76,255,.34)}
.home-page .trust-list{max-width:790px;gap:56px;margin-top:43px}
.home-page .trust-list li{gap:18px;padding:0;border:0;font-size:.97rem;line-height:1.22}
.home-page .trust-list svg{width:42px;height:42px;flex-basis:42px;stroke-width:1.4}
.home-page .hero-arrow{top:49%;width:62px;height:80px;font-size:4rem;color:rgba(255,255,255,.72)}
.home-page .hero-arrow-left{left:8px}.home-page .hero-arrow-right{right:8px}

/* Campo material contínuo */
.home-page .material-flow{
  overflow:visible;
  padding:0 0 0;
  background:
    radial-gradient(ellipse at 18% 8%,rgba(50,83,122,.2),transparent 34%),
    radial-gradient(ellipse at 86% 43%,rgba(36,65,98,.14),transparent 31%),
    radial-gradient(ellipse at 42% 88%,rgba(46,53,91,.12),transparent 34%),
    linear-gradient(180deg,#121e29 0%,#142330 26%,#0f1b26 52%,#14212c 76%,#0c151e 100%);
}
.home-page .material-flow::before{opacity:.035;mix-blend-mode:soft-light}
.home-page .envelope-section{padding:0}
.home-page .envelope-shell{width:var(--envelope);background:linear-gradient(145deg,rgba(255,255,255,.995),rgba(243,246,248,.99));box-shadow:0 38px 95px rgba(0,7,17,.4),0 10px 28px rgba(0,7,17,.22),inset 0 1px 0 rgba(255,255,255,.9)}
.home-page .project-envelope,.home-page .featured-envelope{border-radius:72px 0 72px 0}

/* Qual é o seu projeto? */
.home-page .project-section{z-index:6;margin-top:-48px;padding-bottom:68px}
.home-page .project-envelope{padding:48px 64px 40px}
.home-page .project-heading{margin-bottom:22px}
.home-page .project-heading h2{font-size:clamp(2.8rem,3vw,3.75rem)}
.home-page .project-cards{gap:16px}
.home-page .project-card{height:clamp(270px,19.7vw,380px);border:1px solid rgba(18,28,40,.17);border-radius:15px;box-shadow:0 8px 24px rgba(5,15,27,.12);transform:translateZ(0)}
.home-page .project-card img{width:100%;height:100%;object-fit:cover}
.home-page .project-card::after{display:none}
.home-page .project-card>span,.home-page .project-card i{display:none}
.home-page .project-card:hover{transform:translateY(-6px);box-shadow:0 22px 42px rgba(5,15,27,.22)}
.home-page .project-card.is-selected{border-color:#206aff;box-shadow:0 0 0 3px #206aff,0 0 0 5px rgba(122,69,255,.36),0 22px 46px rgba(22,48,115,.24)}
.home-page .project-selector{grid-template-columns:1fr 1.2fr 1.08fr auto;margin-top:30px;padding:0 0 0 8px;gap:0;align-items:stretch;border:1px solid rgba(30,46,68,.2);border-radius:14px;background:#fff;box-shadow:0 10px 26px rgba(13,28,48,.08)}
.home-page .selector-field{position:relative;display:grid!important;grid-template-columns:54px minmax(0,1fr);grid-template-rows:1fr 1fr;gap:0!important;align-items:center;min-height:88px;padding:13px 26px 11px 18px;border-right:1px solid rgba(28,42,61,.17);color:#34465c!important}
.home-page .selector-field svg{grid-row:1/3;width:40px;height:40px;fill:none;stroke:#101820;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.55}
.home-page .selector-field>span{align-self:end;padding:0!important;font-size:.79rem;font-weight:500}
.home-page .selector-field select{align-self:start;height:30px;padding:0 28px 0 0;border:0;background-color:transparent;color:#101820;font-size:1rem;font-weight:550}
.home-page .project-actions{display:grid;grid-template-columns:1fr 1.36fr;gap:14px;padding:8px 10px 8px 18px}
.home-page .project-actions .button{min-width:210px;min-height:70px;padding:0 28px;font-size:.96rem;font-weight:560}

/* Explore por categoria */
.home-page .category-explorer{padding:48px 0 72px;color:#fff}
.home-page .category-topline{margin-bottom:34px}
.home-page .category-topline h2{font-size:clamp(2.75rem,3vw,3.72rem)}
.home-page .category-search{width:min(650px,42vw);height:60px;border-color:rgba(205,220,235,.44);border-radius:10px;background:rgba(11,22,32,.68);box-shadow:none}
.home-page .category-search svg{width:27px;margin-left:20px}
.home-page .category-search input{padding-inline:17px;font-size:1rem}
.home-page .category-search button{min-width:180px;padding-inline:30px;border-radius:0 9px 9px 0;font-size:.95rem;text-transform:none}
.home-page .category-tabs{height:132px;align-items:end;overflow:visible;border-radius:0;background:transparent}
.home-page .category-tab{height:118px;border:0;border-right:1px solid rgba(190,209,225,.24);background:rgba(12,23,33,.58);color:rgba(255,255,255,.88);font-size:1rem;overflow:hidden}
.home-page .category-tab:first-child{border-radius:18px 0 0 0}
.home-page .category-tab:last-child{border-radius:0 18px 0 0}
.home-page .category-tab-media{display:none}
.home-page .category-tab::after{display:none}
.home-page .category-icon{position:absolute;z-index:3;top:22px;left:50%;width:38px;height:38px;transform:translateX(-50%);fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.45}
.home-page .category-tab>span:last-child{bottom:21px;font-size:1.02rem}
.home-page .category-tab:hover{height:124px;background:rgba(19,34,47,.83)}
.home-page .category-tab.is-active{height:132px;border:1px solid rgba(32,106,255,.86);border-bottom:0;border-radius:22px 22px 0 0;background:#172633;color:#fff;box-shadow:0 -10px 28px rgba(0,0,0,.14)}
.home-page .category-tab.is-active .category-tab-media{display:block;inset:0;opacity:.48;transform:none}
.home-page .category-tab.is-active .category-tab-media::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(7,16,24,.92),rgba(7,16,24,.24))}
.home-page .category-tab.is-active .category-tab-media img{width:100%;height:100%;object-fit:cover;filter:saturate(.85)}
.home-page .category-panel{height:520px;border:1px solid rgba(156,184,207,.42);border-radius:0 18px 38px 18px;background:#0e1b25;box-shadow:0 34px 72px rgba(0,0,0,.33)}
.home-page .category-panel::before{display:none}
.home-page .category-panel-image{inset:0 auto 0 0;width:61.5%;height:100%;object-fit:cover;object-position:center}
.home-page .category-panel-shade{z-index:1;background:linear-gradient(90deg,transparent 48%,rgba(7,16,24,.22) 58%,rgba(7,16,24,.98) 67%,#0d1923 100%)}
.home-page .category-panel-copy{position:absolute;z-index:2;right:0;width:40%;max-width:none;padding:54px 54px 38px;align-items:flex-start;justify-content:flex-start}
.home-page .category-panel-copy>p:first-child{margin-bottom:14px;color:#5793ff;font-size:.84rem;letter-spacing:.16em}
.home-page .category-panel-copy h3{max-width:580px;margin-bottom:18px;font-size:clamp(2.5rem,3vw,3.7rem);line-height:.97}
.home-page .category-panel-description{margin:0 0 24px;color:rgba(235,241,246,.72);font-size:1.18rem;line-height:1.38}
.home-page .category-panel-copy>.button{min-width:260px;min-height:58px;font-size:1rem}
.home-page .category-benefits{display:grid;width:100%;grid-template-columns:repeat(3,1fr);gap:0;margin:auto 0 0;padding:0;list-style:none}
.home-page .category-benefits li{display:flex;min-height:90px;flex-direction:column;align-items:center;justify-content:flex-end;gap:8px;padding:0 11px;border-left:1px solid rgba(206,220,232,.26);color:rgba(255,255,255,.88);font-size:.76rem;line-height:1.3;text-align:center}
.home-page .category-benefits li:first-child{border-left:0}
.home-page .category-benefits svg{width:35px;height:35px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}

/* Produtos em destaque */
.home-page .featured-section{padding:54px 0 82px}
.home-page .featured-envelope{padding:48px 84px 45px;background:linear-gradient(135deg,#fbfcfc 0%,#eef2f5 52%,#f8f9fa 100%)}
.home-page .featured-heading{margin-bottom:26px}
.home-page .featured-heading h2{font-size:clamp(2.75rem,3vw,3.72rem)}
.home-page .featured-heading .text-link{font-size:.95rem;text-transform:none}
.home-page .featured-grid{grid-template-columns:1.06fr .53fr .53fr;grid-template-rows:335px 300px;gap:16px}
.home-page .featured-card{border-radius:16px;background:#fff;box-shadow:0 9px 24px rgba(12,27,45,.07)}
.home-page .featured-card-main{grid-column:1;grid-row:1/3}
.home-page .featured-card-medium{grid-column:2/4;grid-row:1;grid-template-columns:47% 1fr}
.home-page .featured-card-small{grid-template-columns:46% 1fr}
.home-page .featured-card:nth-of-type(3){grid-column:2;grid-row:2}
.home-page .featured-card:nth-of-type(4){grid-column:3;grid-row:2}
.home-page .featured-visual{background:linear-gradient(145deg,#fafbfc,#eef2f4)}
.home-page .featured-visual::before{opacity:.55}
.home-page .featured-visual img{padding:20px;mix-blend-mode:normal}
.home-page .featured-card-main .featured-visual{height:62%}
.home-page .featured-card-main .featured-visual img{padding:0;object-fit:cover}
.home-page .featured-body{padding:24px}
.home-page .featured-card-main .featured-body{display:grid;grid-template-columns:1fr auto;grid-template-areas:"title title" "summary summary" "price action";gap:7px 24px;padding:24px 28px 25px}
.home-page .featured-card-main h3{grid-area:title;margin:0;font-size:1.55rem}
.home-page .featured-card-main .featured-summary{grid-area:summary;max-width:430px;font-size:1rem}
.home-page .featured-card-main .home-price{grid-area:price;align-self:end;margin:0;font-size:2.15rem}
.home-page .featured-card-main .product-actions{grid-area:action;align-self:end}
.home-page .featured-card-main .product-actions .button{min-width:310px;min-height:60px;font-size:1rem}
.home-page .featured-card-medium .featured-body{justify-content:center;padding:28px 30px}
.home-page .featured-card-medium h3{font-size:1.32rem}
.home-page .featured-card-medium .featured-summary{font-size:.96rem}
.home-page .featured-card-medium .home-price{margin:auto 0 11px;font-size:1.85rem}
.home-page .featured-card-small .featured-body{justify-content:center;padding:18px 17px}
.home-page .featured-card-small .featured-visual img{padding:22px 10px}
.home-page .featured-card-small .featured-body h3{font-size:1rem}
.home-page .featured-card-small .home-price{margin:auto 0 10px;font-size:1.28rem}
.home-page .featured-card .sku{display:none}
.home-page .featured-card .product-actions .button{min-height:48px;font-size:.85rem;text-transform:none}
.home-page .status-pill{top:16px;left:18px;padding:7px 15px;border-radius:18px;background:#d9f8e8;color:#087646;font-size:.73rem}
.home-page .status-pill::before{content:"";display:inline-block;width:9px;height:9px;margin-right:7px;border-radius:50%;background:#13a965}
.home-page .status-pill-order{background:#deebff;color:#075ee0}
.home-page .status-pill-order::before{background:#126dff}
.home-page .home-stock-note{display:none}

/* Institucional cinematográfico */
.home-page .institutional-section{position:relative;height:600px;padding:0;color:#fff;overflow:hidden}
.home-page .institutional-grid{position:relative;width:100%;height:100%;max-width:none;display:block}
.home-page .institutional-copy{position:absolute;z-index:3;top:82px;left:5.5vw;width:min(790px,46vw)}
.home-page .institutional-copy h2{max-width:780px;font-size:clamp(3.55rem,4.4vw,5.25rem);line-height:.95}
.home-page .institutional-copy h2 span{background:var(--gradient);-webkit-background-clip:text;background-clip:text;color:transparent}
.home-page .institutional-copy>p{max-width:600px;margin:22px 0 44px;color:rgba(242,246,249,.8);font-size:1.2rem}
.home-page .institutional-visual{position:absolute;inset:0;width:100%;height:100%;border-radius:0;box-shadow:none}
.home-page .institutional-visual::after{background:linear-gradient(90deg,rgba(6,15,24,.18),transparent 50%),linear-gradient(180deg,rgba(8,16,24,.08),transparent 58%,rgba(8,16,24,.24))}
.home-page .institutional-visual img{width:100%;height:100%;object-fit:cover;object-position:center}
.home-page .institutional-visual figcaption{top:75px;right:7vw;bottom:auto;width:360px;font-size:2.55rem;line-height:1.18}
.home-page .journey-steps{width:min(790px,48vw);grid-template-columns:repeat(4,1fr)}
.home-page .journey-steps li{position:relative;display:grid;grid-template-columns:58px 1fr;grid-template-rows:26px auto;min-height:128px;gap:4px 12px;padding:0 20px;border-left:1px solid rgba(255,255,255,.22);font-size:.9rem}
.home-page .journey-steps li:first-child{padding-left:0}
.home-page .journey-steps svg{grid-row:1/3;width:58px;height:58px;padding:13px;border:1px solid rgba(255,255,255,.33);border-radius:50%;fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.45}
.home-page .journey-steps small{align-self:end;color:#4084ff;font:650 .95rem "IBM Plex Mono",monospace}
.home-page .journey-steps strong{color:#fff;font:600 .85rem/1.22 Manrope,sans-serif}

/* Ilha de montadores */
.home-page .builders-section{width:var(--envelope);height:450px;margin:22px auto 64px;border:1px solid rgba(157,187,211,.48);border-radius:72px 0 72px 0;background:#101e29;box-shadow:0 28px 70px rgba(0,5,14,.36)}
.home-page .builders-section::before{display:none}
.home-page .builders-media{right:auto;width:58%;height:100%;object-fit:cover;object-position:center;transform:none}
.home-page .builders-shade{background:linear-gradient(90deg,transparent 0%,rgba(13,25,36,.18) 44%,rgba(13,25,36,.9) 56%,#0f1d28 100%)}
.home-page .builders-content{width:100%;padding:0 58px 0 58%;align-items:flex-start;flex-direction:column;justify-content:center}
.home-page .builders-content>div{max-width:610px}
.home-page .builders-content p{margin-bottom:13px;color:#4e8cff;font-size:.88rem;letter-spacing:.18em}
.home-page .builders-content h2{margin-bottom:18px;font-size:clamp(2.25rem,2.65vw,3.2rem);line-height:1.04;text-transform:none}
.home-page .builders-content>div>span{display:block;max-width:600px;color:rgba(235,241,246,.7);font-size:1.05rem}
.home-page .builders-content .button{position:static;min-width:390px;min-height:58px;margin-top:25px;font-size:1rem}

/* Rodapé */
.home-page .site-footer{padding:70px 0 30px;background:linear-gradient(120deg,#0b151e,#111e29 55%,#0b151e);color:#fff}
.home-page .footer-main{grid-template-columns:370px 1fr 500px;gap:70px;padding-bottom:55px}
.home-page .footer-brand img{width:290px;margin-bottom:22px}
.home-page .footer-brand p{font-size:.92rem}
.home-page .footer-nav{grid-template-columns:repeat(3,1fr);gap:48px}
.home-page .footer-nav>div{padding-left:36px;border-left:1px solid rgba(255,255,255,.18)}
.home-page .footer-nav h3{margin-bottom:10px;color:#fff;font-size:.89rem;text-transform:none;letter-spacing:0}
.home-page .footer-nav a,.home-page .footer-nav button{font-size:.89rem;line-height:1.45}
.home-page .footer-connect{align-self:start;padding-left:30px;border-left:1px solid rgba(255,255,255,.18)}
.home-page .social-links{display:grid;width:100%;grid-template-columns:repeat(4,1fr);gap:18px}
.home-page .social-links a{display:flex;align-items:center;gap:10px;flex-direction:column;color:#fff;font-size:.82rem;text-align:center}
.home-page .social-links svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.65}
.home-page .social-links a:nth-child(2) svg{fill:currentColor;stroke:none}
.home-page .footer-bottom{padding-top:27px;font-size:.78rem}
.home-page .footer-legal{display:flex;align-items:center;gap:0}
.home-page .footer-legal>*{padding:0 24px;border-left:1px solid rgba(255,255,255,.2)}

.home-page.has-js .reveal{transform:translateY(12px)}

@media(max-width:1500px){
  .home-page .header-shell{grid-template-columns:250px 1fr auto;gap:20px}
  .home-page .brand img{width:225px}
  .home-page .main-nav{gap:28px}
  .home-page .main-nav a{font-size:.88rem}
  .home-page .hero-copy{max-width:690px}
  .home-page .hero-actions .button{min-width:280px}
  .home-page .project-selector{grid-template-columns:1fr 1.15fr 1fr}
  .home-page .project-actions{grid-column:1/-1;justify-self:end;width:520px}
  .home-page .category-panel-copy{padding:42px 38px 30px}
  .home-page .category-panel-copy h3{font-size:2.75rem}
  .home-page .featured-grid{grid-template-rows:310px 285px}
  .home-page .featured-card-main .product-actions .button{min-width:240px}
  .home-page .footer-main{grid-template-columns:290px 1fr 390px;gap:38px}
}

@media(max-width:1100px){
  .home-page{--shell:min(930px,calc(100% - 38px));--envelope:min(960px,calc(100% - 32px))}
  .home-page .site-header-home{height:76px}
  .home-page .header-shell{grid-template-columns:1fr auto auto}
  .home-page .brand img{width:185px}
  .home-page .nav-toggle{display:block}
  .home-page .hero{height:760px}
  .home-page .hero-media{object-position:62% center}
  .home-page .hero-shade{background:linear-gradient(90deg,rgba(3,10,17,.92),rgba(3,10,17,.46) 65%,rgba(3,10,17,.08))}
  .home-page .hero-shell{align-items:flex-start;padding-top:150px}
  .home-page .hero-copy{max-width:620px}
  .home-page .hero h1,.home-page .hero h2{font-size:4rem}
  .home-page .hero-actions .button{min-width:240px}
  .home-page .project-envelope,.home-page .featured-envelope{border-radius:48px 0 48px 0}
  .home-page .project-envelope{padding:38px 28px 28px}
  .home-page .project-card{height:230px}
  .home-page .project-selector{grid-template-columns:1fr 1fr}
  .home-page .selector-field:nth-child(3){grid-column:1/-1}
  .home-page .project-actions{width:100%}
  .home-page .category-tabs{grid-template-columns:repeat(3,1fr);height:auto}
  .home-page .category-tab,.home-page .category-tab.is-active{height:105px}
  .home-page .category-panel{height:560px}
  .home-page .category-panel-image{width:100%;height:58%}
  .home-page .category-panel-shade{background:linear-gradient(180deg,transparent 0%,rgba(9,18,27,.12) 48%,rgba(9,18,27,.98) 61%,#0d1923 100%)}
  .home-page .category-panel-copy{top:auto;bottom:0;width:100%;height:47%;padding:30px}
  .home-page .category-benefits{width:46%;position:absolute;right:24px;bottom:25px}
  .home-page .featured-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .home-page .featured-card-main{grid-column:1/-1;grid-row:auto;height:620px}
  .home-page .featured-card-medium{grid-column:1/-1;grid-row:auto;height:310px}
  .home-page .featured-card:nth-of-type(3),.home-page .featured-card:nth-of-type(4){grid-column:auto;grid-row:auto;height:290px}
  .home-page .institutional-copy{width:70vw}
  .home-page .institutional-visual figcaption{font-size:2rem}
  .home-page .journey-steps{width:68vw}
  .home-page .builders-content{padding-left:55%;padding-right:30px}
  .home-page .builders-content .button{min-width:310px}
  .home-page .footer-main{grid-template-columns:1fr 2fr;gap:45px}
  .home-page .footer-connect{grid-column:1/-1;padding:25px 0 0;border:0;border-top:1px solid rgba(255,255,255,.15)}
  .home-page .social-links{max-width:560px}
}

@media(max-width:700px){
  .home-page{--shell:calc(100% - 24px);--envelope:calc(100% - 18px)}
  .home-page .hero{height:790px}
  .home-page .hero-media{object-position:69% center}
  .home-page .hero-shell{padding:118px 0 40px}
  .home-page .hero h1,.home-page .hero h2{font-size:clamp(2.65rem,12vw,3.7rem)}
  .home-page .hero-copy>p{font-size:.96rem}
  .home-page .hero-actions{gap:10px;flex-direction:column}
  .home-page .hero-actions .button{width:100%;min-width:0;min-height:53px}
  .home-page .trust-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:24px}
  .home-page .trust-list li{font-size:.72rem;gap:9px}
  .home-page .trust-list svg{width:28px;height:28px;flex-basis:28px}
  .home-page .project-section{margin-top:-28px}
  .home-page .project-envelope,.home-page .featured-envelope{border-radius:34px 0 34px 0}
  .home-page .project-envelope{padding:27px 13px 17px}
  .home-page .project-heading h2{font-size:2.1rem}
  .home-page .project-cards{grid-template-columns:1fr 1fr;gap:8px}
  .home-page .project-card{height:185px}
  .home-page .project-selector{grid-template-columns:1fr;margin-top:14px;padding:7px}
  .home-page .selector-field,.home-page .selector-field:nth-child(3){grid-column:auto;min-height:70px;border:0;border-bottom:1px solid rgba(28,42,61,.14)}
  .home-page .project-actions{grid-template-columns:1fr;width:100%;padding:7px}
  .home-page .project-actions .button{min-width:0;min-height:50px}
  .home-page .category-topline{gap:18px;margin-bottom:18px}
  .home-page .category-topline h2{font-size:2.1rem}
  .home-page .category-search{width:100%;height:52px}
  .home-page .category-search button{min-width:95px;padding:0 14px}
  .home-page .category-tabs{grid-template-columns:1fr 1fr}
  .home-page .category-tab,.home-page .category-tab.is-active{height:92px}
  .home-page .category-panel{height:650px;border-radius:0 0 30px 0}
  .home-page .category-panel-image{height:45%}
  .home-page .category-panel-copy{height:58%;padding:25px 20px}
  .home-page .category-panel-copy h3{font-size:2.1rem}
  .home-page .category-benefits{position:static;width:100%}
  .home-page .featured-envelope{padding:28px 12px 20px}
  .home-page .featured-heading{align-items:flex-start;flex-direction:column}
  .home-page .featured-grid{grid-template-columns:1fr}
  .home-page .featured-card-main,.home-page .featured-card-medium,.home-page .featured-card:nth-of-type(3),.home-page .featured-card:nth-of-type(4){grid-column:1;height:auto;min-height:410px;grid-template-columns:1fr}
  .home-page .featured-card-main{min-height:590px}
  .home-page .featured-card-main .featured-body{grid-template-columns:1fr;grid-template-areas:"title" "summary" "price" "action"}
  .home-page .featured-card-main .product-actions .button{width:100%;min-width:0}
  .home-page .featured-card-medium .featured-visual,.home-page .featured-card-small .featured-visual{min-height:230px}
  .home-page .institutional-section{height:800px}
  .home-page .institutional-copy{top:65px;left:18px;width:calc(100% - 36px)}
  .home-page .institutional-copy h2{font-size:2.85rem}
  .home-page .institutional-copy>p{font-size:.95rem}
  .home-page .journey-steps{width:100%;grid-template-columns:1fr 1fr;gap:20px 0}
  .home-page .journey-steps li{grid-template-columns:46px 1fr;padding:0 10px}
  .home-page .journey-steps svg{width:46px;height:46px;padding:10px}
  .home-page .institutional-visual figcaption{top:auto;right:20px;bottom:40px;width:250px;font-size:1.65rem}
  .home-page .builders-section{height:560px;margin-bottom:35px}
  .home-page .builders-media{width:100%;height:54%}
  .home-page .builders-shade{background:linear-gradient(180deg,transparent 0%,rgba(13,25,36,.2) 45%,#0f1d28 58%,#0f1d28 100%)}
  .home-page .builders-content{align-items:flex-start;padding:310px 22px 24px}
  .home-page .builders-content h2{font-size:2rem}
  .home-page .builders-content>div>span{font-size:.9rem}
  .home-page .builders-content .button{position:static;width:100%;min-width:0;margin-top:24px}
  .home-page .footer-main{grid-template-columns:1fr;gap:36px}
  .home-page .footer-nav{gap:20px}
  .home-page .footer-nav>div{padding-left:16px}
  .home-page .social-links{grid-template-columns:1fr 1fr}
  .home-page .footer-bottom{align-items:flex-start;flex-direction:column;gap:18px}
  .home-page .footer-legal{flex-wrap:wrap;gap:12px}
  .home-page .footer-legal>*{padding:0;border:0}
}

/* v1.2 priority tail: intentionally last so the continuity system wins
   over the inherited v1.1 home rules above. */
.home-page{background:var(--flow-deep)}
.home-page .hero{background:var(--flow-base);overflow:hidden}
.home-page .hero-media{transform:translate3d(0,var(--hero-parallax-y),0) scale(1.035);transform-origin:center;will-change:transform}
.home-page .hero-slide-pro .hero-media{transform:translate3d(0,var(--hero-parallax-y),0) scaleX(-1) scale(1.035)}
.home-page .hero-slide::after{content:"";position:absolute;z-index:2;right:0;bottom:-1px;left:0;height:42%;pointer-events:none;background:linear-gradient(180deg,transparent 0%,rgba(18,30,41,.12) 25%,rgba(18,30,41,.66) 72%,var(--flow-base) 100%)}
.home-page .material-flow{isolation:isolate;overflow:hidden;background:radial-gradient(ellipse at 18% 8%,rgba(50,83,122,.18),transparent 34%),radial-gradient(ellipse at 86% 43%,rgba(36,65,98,.13),transparent 31%),radial-gradient(ellipse at 42% 88%,rgba(46,53,91,.1),transparent 34%),linear-gradient(180deg,var(--flow-base) 0%,#142330 25%,#0f1b26 52%,#14212c 76%,var(--flow-deep) 100%)}
.home-page .material-flow::before{z-index:0;opacity:.045}
.home-page .material-flow>.flow-bridge{z-index:0}
.home-page .material-flow>section{position:relative;z-index:2}
.home-page .envelope-shell{background:linear-gradient(145deg,rgba(255,255,255,.995),rgba(241,245,248,.992));border:1px solid rgba(255,255,255,.7);box-shadow:0 42px 100px rgba(0,7,17,.44),0 12px 30px rgba(0,7,17,.24),inset 0 1px 0 #fff}

.home-page .trust-list{display:grid;width:min(840px,100%);max-width:none;grid-template-columns:repeat(3,minmax(0,1fr));gap:0}
.home-page .trust-list li{min-width:0;min-height:50px;justify-content:flex-start;gap:15px;padding:0 28px;border:0;border-left:1px solid rgba(255,255,255,.24);font-size:.94rem}
.home-page .trust-list li:first-child{padding-left:0;border-left:0}
.home-page .trust-list li:last-child{grid-column:auto;padding-right:0}
.home-page .trust-list svg{width:40px;height:40px;flex:0 0 40px}

.home-page .project-card{transform:none;transition:box-shadow .28s var(--ease),border-color .28s var(--ease)}
.home-page .project-card:hover{transform:none;box-shadow:0 18px 38px rgba(5,15,27,.2)}
.home-page .project-card img{transform:scale(1.001);transition:transform .72s var(--ease),filter .45s var(--ease)}
.home-page .project-card:hover img{transform:scale(1.055)}
.home-page .project-card::after{display:block;background:linear-gradient(0deg,rgba(7,13,20,.92) 0%,rgba(7,13,20,.3) 38%,transparent 68%);pointer-events:none}
.home-page .project-card>span{display:block;position:absolute;z-index:3;right:48px;bottom:18px;left:18px;color:#fff;font:720 1.05rem/1.15 Manrope,sans-serif;text-shadow:0 2px 12px rgba(0,0,0,.5);transform:none}
.home-page .project-card i{display:block;z-index:3;right:17px;bottom:17px}

.home-page .category-topline{position:relative;z-index:12}
.home-page .category-stage{position:relative;isolation:isolate;overflow:hidden;border:1px solid rgba(156,184,207,.42);border-radius:20px 20px 42px 18px;background:#0e1b25;box-shadow:0 34px 72px rgba(0,0,0,.33)}
.home-page .category-stage-image{position:absolute;z-index:0;inset:-3%;width:106%;height:106%;max-width:none;object-fit:cover;object-position:center;transform:translate3d(0,var(--category-parallax-y),0) scale(1.035);transform-origin:center;transition:opacity .32s ease,filter .5s ease,transform .9s var(--ease);will-change:transform,opacity}
.home-page .category-stage::after{content:"";position:absolute;z-index:1;inset:0;pointer-events:none;background:linear-gradient(90deg,rgba(6,14,22,.06) 0%,rgba(6,14,22,.08) 42%,rgba(7,16,24,.58) 63%,rgba(8,17,25,.97) 84%,#0d1923 100%),linear-gradient(180deg,rgba(6,14,22,.46) 0%,rgba(6,14,22,.16) 24%,transparent 46%,rgba(7,15,23,.2) 100%)}
.home-page .category-tabs{position:relative;z-index:3;height:132px;align-items:stretch;overflow:visible;border-radius:0;background:transparent}
.home-page .category-tab,.home-page .category-tab.is-active,.home-page .category-tab:hover{height:132px}
.home-page .category-tab{border:0;border-right:1px solid rgba(221,232,241,.2);border-bottom:1px solid rgba(221,232,241,.18);border-radius:0;background:rgba(7,16,24,.28);color:rgba(255,255,255,.82);box-shadow:none;backdrop-filter:blur(1px)}
.home-page .category-tab:first-child,.home-page .category-tab:last-child{border-radius:0}
.home-page .category-tab:hover{background:rgba(12,25,36,.42);color:#fff}
.home-page .category-tab.is-active{border:1px solid rgba(72,133,255,.92);border-bottom-color:transparent;border-radius:18px 18px 0 0;background:linear-gradient(180deg,rgba(32,106,255,.1),rgba(8,17,25,.08));color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 -10px 30px rgba(0,0,0,.12)}
.home-page .category-tab-media{display:none!important}
.home-page .category-icon{top:20px;width:48px;height:48px;stroke-width:1.55;filter:drop-shadow(0 3px 10px rgba(0,0,0,.32))}
.home-page .category-tab>span:last-child{bottom:20px;font-size:1.04rem;text-shadow:0 2px 10px rgba(0,0,0,.4)}
.home-page .category-panel{position:relative;z-index:2;height:520px;overflow:visible;border:0;border-radius:0;background:transparent;box-shadow:none}
.home-page .category-panel::before{display:none}
.home-page .category-panel-image{display:none!important}
.home-page .category-panel-shade{z-index:1;background:transparent}
.home-page .category-panel-copy{position:absolute;z-index:3;top:0;right:0;width:43%;max-width:none;height:100%;padding:54px 58px 38px;justify-content:flex-start}

.home-page .category-search{position:relative;z-index:30;overflow:visible;border-color:rgba(209,224,238,.48);background:rgba(9,19,29,.78);box-shadow:0 16px 45px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.06);transition:border-color .25s,box-shadow .25s,background .25s}
.home-page .category-search:focus-within{border-color:rgba(91,143,255,.9);background:rgba(9,19,29,.94);box-shadow:0 0 0 4px rgba(32,106,255,.14),0 22px 55px rgba(0,0,0,.28)}

.home-page .featured-visual,.home-page .featured-card-main .featured-visual{background:radial-gradient(circle at 50% 44%,rgba(255,255,255,.9),rgba(226,233,239,.55) 58%,rgba(213,222,230,.18) 100%)}
.home-page .featured-visual::before{opacity:.75;background:radial-gradient(circle at 28% 10%,rgba(32,106,255,.12),transparent 46%)}
.home-page .featured-visual img,.home-page .featured-card-main .featured-visual img,.home-page .featured-card-small .featured-visual img{width:100%;height:100%;padding:clamp(16px,2vw,34px);object-fit:contain;mix-blend-mode:normal;filter:drop-shadow(0 22px 18px rgba(14,24,35,.24)) drop-shadow(0 6px 5px rgba(14,24,35,.14));transform:scale(1);transition:transform .55s var(--ease),filter .55s var(--ease)}
.home-page .featured-card:hover .featured-visual img{transform:scale(1.035);filter:drop-shadow(0 27px 22px rgba(14,24,35,.28)) drop-shadow(0 7px 6px rgba(14,24,35,.16))}

.home-page .institutional-section{isolation:isolate;background:transparent}
.home-page .institutional-section::before,
.home-page .institutional-section::after{content:"";position:absolute;z-index:2;right:0;left:0;height:25%;pointer-events:none}
.home-page .institutional-section::before{top:-1px;background:linear-gradient(180deg,var(--flow-mid) 0%,rgba(16,29,40,.82) 22%,rgba(16,29,40,.26) 68%,transparent 100%)}
.home-page .institutional-section::after{bottom:-1px;background:linear-gradient(0deg,var(--flow-deep) 0%,rgba(12,21,30,.78) 25%,rgba(12,21,30,.2) 72%,transparent 100%)}
.home-page .institutional-visual{background:transparent}
.home-page .institutional-visual img{transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.06);transform-origin:center;transition:none;will-change:transform;-webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 19%,#000 81%,transparent 100%);mask-image:linear-gradient(180deg,transparent 0%,#000 19%,#000 81%,transparent 100%)}
.home-page .institutional-visual::after{background:linear-gradient(90deg,rgba(6,15,24,.42) 0%,rgba(6,15,24,.2) 38%,transparent 64%),linear-gradient(180deg,transparent 0%,rgba(8,16,24,.05) 20%,rgba(8,16,24,.18) 78%,transparent 100%);-webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 18%,#000 82%,transparent 100%);mask-image:linear-gradient(180deg,transparent 0%,#000 18%,#000 82%,transparent 100%)}
.home-page .institutional-visual:hover img{transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.06)}

.home-page.has-js .reveal{opacity:1;transform:none}
.home-page .builders-media{transform:translate3d(0,var(--builders-parallax-y),0) scale(1.035);transform-origin:center;will-change:transform}

@media(max-width:1100px){
  .home-page .trust-list{width:min(720px,100%)}
  .home-page .trust-list li{padding-inline:18px;font-size:.84rem}
  .home-page .trust-list li:first-child{padding-left:0}
  .home-page .trust-list li:last-child{padding-right:0}
  .home-page .trust-list svg{width:34px;height:34px;flex-basis:34px}
  .home-page .category-stage{border-radius:18px 18px 36px 16px}
  .home-page .category-tabs{height:auto;grid-template-columns:repeat(3,1fr)}
  .home-page .category-tab,.home-page .category-tab.is-active,.home-page .category-tab:hover{height:108px}
  .home-page .category-icon{top:16px;width:42px;height:42px}
  .home-page .category-tab>span:last-child{bottom:16px;font-size:.92rem}
  .home-page .category-panel{height:560px}
  .home-page .category-stage::after{background:linear-gradient(180deg,rgba(7,16,24,.5) 0%,rgba(7,16,24,.12) 34%,transparent 48%,rgba(8,17,25,.66) 67%,#0d1923 88%,#0d1923 100%)}
  .home-page .category-panel-copy{top:auto;bottom:0;width:100%;height:51%;padding:30px}
}

@media(max-width:700px){
  .home-page .hero-slide::after{height:35%}
  .home-page .trust-list{width:100%;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin-top:24px}
  .home-page .trust-list li{min-height:76px;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:7px;padding:0 10px;font-size:.66rem;line-height:1.22}
  .home-page .trust-list li:first-child{padding-left:0}
  .home-page .trust-list li:last-child{grid-column:auto;padding-right:0}
  .home-page .trust-list svg{width:28px;height:28px;flex-basis:28px}
  .home-page .project-card>span{right:40px;bottom:13px;left:12px;font-size:.86rem}
  .home-page .project-card i{right:12px;bottom:12px;width:19px;height:19px}
  .home-page .category-stage{border-radius:14px 14px 30px 0}
  .home-page .category-tabs{grid-template-columns:repeat(2,1fr)}
  .home-page .category-tab,.home-page .category-tab.is-active,.home-page .category-tab:hover{height:94px}
  .home-page .category-icon{top:12px;width:36px;height:36px}
  .home-page .category-tab>span:last-child{bottom:12px;font-size:.82rem}
  .home-page .category-panel{height:620px}
  .home-page .category-panel-copy{height:64%;padding:25px 20px}
  .home-page .category-benefits{position:static;width:100%}
  .home-page .category-stage::after{background:linear-gradient(180deg,rgba(7,16,24,.55) 0%,rgba(7,16,24,.15) 40%,rgba(8,17,25,.58) 58%,#0d1923 75%,#0d1923 100%)}
  .home-page .featured-visual img,.home-page .featured-card-main .featured-visual img,.home-page .featured-card-small .featured-visual img{padding:20px}
  .home-page .institutional-visual img{object-position:62% center;-webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 14%,#000 86%,transparent 100%);mask-image:linear-gradient(180deg,transparent 0%,#000 14%,#000 86%,transparent 100%)}
  .home-page .institutional-visual::after{-webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 13%,#000 87%,transparent 100%);mask-image:linear-gradient(180deg,transparent 0%,#000 13%,#000 87%,transparent 100%)}
}

@media(prefers-reduced-motion:reduce){
  .home-page{--hero-parallax-y:0px;--category-parallax-y:0px;--institutional-parallax-y:0px;--builders-parallax-y:0px}
  .home-page.has-js [data-reveal],.home-page.has-js .reveal-item{opacity:1!important;transform:none!important}
  .home-page .hero-media,.home-page .category-stage-image,.home-page .institutional-visual img,.home-page .institutional-visual:hover img,.home-page .builders-media,.home-page .project-card:hover img,.home-page .featured-card:hover .featured-visual img{transform:none!important;will-change:auto}
  .home-page .hero-slide-pro .hero-media{transform:scaleX(-1)!important}
}

/* v1.2.1 interaction finish */
.home-page .category-stage.is-changing .category-stage-image{opacity:.3;filter:blur(7px) saturate(.78)}
.home-page .category-icon{stroke-width:1.8}
.home-page .category-tab{background:rgba(7,16,24,.86);backdrop-filter:blur(9px)}
.home-page .category-tab:hover{background:rgba(12,25,36,.7)}
.home-page .category-tab.is-active{background:linear-gradient(180deg,rgba(32,106,255,.08),rgba(8,17,25,.06));backdrop-filter:none}
.home-page .category-search-wrap{position:relative;z-index:30;width:min(650px,42vw);flex:0 0 min(650px,42vw)}
.home-page .category-search-wrap .category-search{width:100%}
.home-page .category-search-results [role="option"][aria-selected="true"]{background:linear-gradient(100deg,rgba(32,106,255,.1),rgba(122,69,255,.08));color:#164fbf;transform:translateX(2px)}
@media(max-width:1100px){
  .home-page .category-search-wrap{width:100%;flex-basis:auto}
}
@media(prefers-reduced-motion:reduce){
  .home-page .category-stage.is-changing .category-stage-image{filter:none}
  .home-page .category-search-results [role="option"][aria-selected="true"]{transform:none}
}

@media(max-width:700px){
  .home-page .category-search-results .search-result,
  .home-page .category-search-results>a{
    grid-template-columns:minmax(0,1fr);
    align-items:start;
    gap:2px;
    min-height:58px;
    padding:10px 12px;
  }
  .home-page .category-search-results strong{
    width:100%;
    font-size:.82rem;
  }
  .home-page .category-search-results small{
    width:100%;
    overflow:hidden;
    text-align:left;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
}

/* Live inventory copy must keep the asymmetric featured hierarchy intact. */
.home-page .status-pill.status-ready{
  background:#d9f8e8;
  color:#087646;
}
.home-page .status-pill.status-ready::before{background:#13a965}
.home-page .featured-card-main .home-price.price-on-request{
  display:block;
  max-width:285px;
  font-size:1.35rem;
  line-height:1.06;
}
.home-page .featured-card-main .home-price.price-on-request span,
.home-page .featured-card-main .home-price.price-on-request small{display:block}
.home-page .featured-card-main .home-price.price-on-request small{
  margin-top:6px;
  text-align:left;
}
.home-page .featured-card-small .featured-body{padding-top:54px}
.home-page .featured-card-small .home-price.price-on-request{
  font-size:1.02rem;
  line-height:1.06;
}

@media(max-width:700px){
  .home-page .featured-card-small .featured-body{padding-top:18px}
  .home-page .featured-card-main .home-price.price-on-request{max-width:none;font-size:1.55rem}
}

/* ================================================================
   v1.3 — photographic continuity repair
   The photographs themselves cross the section boundaries. Color
   remains the receiving field, never a band painted over the seam.
   ================================================================ */

.home-page{
  --bridge-hero-height:clamp(640px,40vw,800px);
  --institutional-bleed:clamp(130px,10vw,190px);
}

/* Let the negatively offset envelope keep its real rounded corner. */
.home-page .material-flow{
  overflow:visible;
}
.home-page .project-section{
  isolation:isolate;
}
.home-page .project-envelope{
  position:relative;
  z-index:3;
  overflow:hidden;
  border-radius:72px 0 72px 0;
  background-clip:padding-box;
}

/* Do not cover the bottom of the hero with an opaque color ramp. */
.home-page .hero-slide::after{
  display:none;
}

/* Mirror the final photographic edge into the next section. The first
   pixels below the hero therefore come from the same edge; the mask
   progressively exposes the global material field farther down. */
.home-page .material-flow>.flow-bridge{
  top:-1px;
  height:var(--bridge-hero-height);
  overflow:hidden;
}
.home-page .flow-bridge-layer{
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  background-position:center bottom;
  background-size:auto var(--bridge-hero-height);
  background-repeat:no-repeat;
  filter:saturate(.86) brightness(.74);
  transform:scaleY(-1);
  transform-origin:center;
  transition:opacity .9s var(--ease);
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,transparent 8%,rgba(0,0,0,.16) 30%,rgba(0,0,0,.66) 62%,#000 100%);
  mask-image:linear-gradient(180deg,transparent 0%,transparent 8%,rgba(0,0,0,.16) 30%,rgba(0,0,0,.66) 62%,#000 100%);
}
.home-page .flow-bridge-layer::after{
  display:none;
}
.home-page .flow-bridge-layer.is-active,
.home-page .flow-bridge-layer[aria-hidden="false"]{
  opacity:.78;
}

/* The institutional image is taller than its semantic section. Its
   transparent extremities live in the surrounding global background. */
.home-page .material-flow>.institutional-section{
  z-index:1;
  overflow:visible;
}
.home-page .institutional-section::before,
.home-page .institutional-section::after{
  display:none;
}
.home-page .institutional-visual{
  inset:0;
  overflow:visible;
  background:transparent;
}
.home-page .institutional-visual img{
  position:absolute;
  top:calc(-1 * var(--institutional-bleed));
  right:0;
  bottom:auto;
  left:0;
  width:100%;
  height:calc(100% + (2 * var(--institutional-bleed)));
  max-width:none;
  object-fit:cover;
  object-position:center;
  transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.025);
  transform-origin:center;
  transition:none;
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 12%,#000 32%,#000 68%,rgba(0,0,0,.18) 88%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 12%,#000 32%,#000 68%,rgba(0,0,0,.18) 88%,transparent 100%);
}
.home-page .institutional-visual::after{
  z-index:1;
  inset:calc(-1 * var(--institutional-bleed)) 0;
  background:linear-gradient(90deg,rgba(6,15,24,.62) 0%,rgba(6,15,24,.28) 38%,transparent 67%);
  -webkit-mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 12%,#000 32%,#000 68%,rgba(0,0,0,.18) 88%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 12%,#000 32%,#000 68%,rgba(0,0,0,.18) 88%,transparent 100%);
}
.home-page .institutional-copy,
.home-page .institutional-visual figcaption{
  z-index:3;
}
.home-page .institutional-visual:hover img{
  transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.025);
}

@media(max-width:1100px){
  .home-page{
    --bridge-hero-height:760px;
    --institutional-bleed:125px;
  }
  .home-page .flow-bridge-layer{
    background-position:62% bottom;
  }
  .home-page .project-envelope{
    border-radius:48px 0 48px 0;
  }
  .home-page .institutional-visual img{
    object-position:58% center;
  }
}

@media(max-width:700px){
  .home-page{
    --bridge-hero-height:790px;
    --institutional-bleed:96px;
  }
  .home-page .flow-bridge-layer{
    background-position:69% bottom;
    filter:saturate(.84) brightness(.7);
  }
  .home-page .project-envelope{
    border-radius:34px 0 34px 0;
  }
  .home-page .institutional-visual img{
    object-position:62% center;
    transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.018);
  }
  .home-page .institutional-visual:hover img{
    transform:translate3d(0,var(--institutional-parallax-y),0) scale(1.018);
  }
}

@media(prefers-reduced-motion:reduce){
  .home-page .flow-bridge-layer{
    transition:none!important;
  }
  .home-page .institutional-visual img,
  .home-page .institutional-visual:hover img{
    transform:scale(1.025)!important;
    transition:none!important;
  }
}

/* Avoid subpixel horizontal overflow from the full-bleed image on phones. */
@media(max-width:700px){
  .home-page .institutional-visual img,
  .home-page .institutional-visual:hover img{
    transform:translate3d(0,var(--institutional-parallax-y),0) scale(1);
  }
}
@media(max-width:700px) and (prefers-reduced-motion:reduce){
  .home-page .institutional-visual img,
  .home-page .institutional-visual:hover img{
    transform:none!important;
  }
}

/* ================================================================
   v1.3.1 — project labels, category scale and featured finish
   ================================================================ */

/* Project names are HTML, optically stronger and independent of media zoom. */
.home-page .project-card>span{
  right:54px;
  bottom:20px;
  left:20px;
  font-size:clamp(1.08rem,1.18vw,1.34rem);
  font-weight:780;
  line-height:1.08;
  letter-spacing:-.025em;
  text-shadow:0 2px 7px rgba(0,0,0,.72),0 8px 22px rgba(0,0,0,.42);
  transform:none;
  transition:none;
}
.home-page .project-card i{
  right:19px;
  bottom:19px;
  width:23px;
  height:23px;
}
.home-page .project-card:hover,
.home-page .project-card:hover>span{
  transform:none;
}

/* Category media occupies the real stage bounds; no artificial crop/zoom. */
.home-page .category-stage-image{
  inset:0;
  width:100%;
  height:100%;
  transform:translate3d(0,var(--category-parallax-y),0) scale(1.012);
  transform-origin:center;
}

/* Premium light material for the featured-product envelope. */
.home-page .featured-envelope{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border-color:rgba(255,255,255,.84);
  background:
    radial-gradient(ellipse at 8% 8%,rgba(76,128,255,.13),transparent 29%),
    radial-gradient(ellipse at 92% 88%,rgba(122,69,255,.1),transparent 31%),
    linear-gradient(142deg,#fcfdfd 0%,#f1f5f8 42%,#e7edf3 72%,#f8fafb 100%);
  box-shadow:0 44px 100px rgba(0,7,17,.42),0 12px 30px rgba(0,7,17,.23),inset 0 1px 0 #fff;
}
.home-page .featured-envelope::before{
  content:"";
  position:absolute;
  z-index:0;
  inset:0;
  pointer-events:none;
  opacity:.42;
  background-image:
    linear-gradient(115deg,transparent 0 46%,rgba(255,255,255,.72) 50%,transparent 54%),
    radial-gradient(circle at 22% 18%,rgba(255,255,255,.9),transparent 31%);
  mix-blend-mode:soft-light;
}
.home-page .featured-envelope>*{
  position:relative;
  z-index:1;
}
.home-page .featured-card{
  border-color:rgba(28,47,69,.11);
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 28px rgba(12,27,45,.08),inset 0 1px 0 rgba(255,255,255,.88);
}
.home-page .featured-card:hover{
  transform:translateY(-2px);
  box-shadow:0 17px 36px rgba(12,27,45,.12),inset 0 1px 0 rgba(255,255,255,.92);
}
.home-page .featured-card .button-line{
  border:1.5px solid transparent;
  border-radius:8px;
  background:
    linear-gradient(#fbfcfe,#fbfcfe) padding-box,
    linear-gradient(105deg,#206aff 0%,#5160ff 52%,#7a45ff 100%) border-box;
  color:#315fdc;
  box-shadow:0 6px 16px rgba(49,95,220,.08);
  transition:transform .22s var(--ease),color .22s,box-shadow .22s,background .22s;
}
.home-page .featured-card .button-line:hover{
  transform:translateY(-1px);
  background:
    linear-gradient(#f3f7ff,#f7f5ff) padding-box,
    linear-gradient(105deg,#206aff 0%,#5160ff 52%,#7a45ff 100%) border-box;
  color:#253eb5;
  box-shadow:0 9px 22px rgba(66,82,232,.15);
}

@media(max-width:700px){
  .home-page .project-card>span{
    right:45px;
    bottom:14px;
    left:13px;
    font-size:1.04rem;
    line-height:1.05;
  }
  .home-page .project-card i{
    right:13px;
    bottom:13px;
    width:20px;
    height:20px;
  }

  /* A single horizontal rail keeps the active tab touching its panel. */
  .home-page .category-tabs{
    display:flex;
    width:100%;
    height:104px;
    grid-template-columns:none;
    align-items:stretch;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x proximity;
    scroll-padding-inline:12px;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .home-page .category-tabs::-webkit-scrollbar{display:none}
  .home-page .category-tab,
  .home-page .category-tab.is-active,
  .home-page .category-tab:hover{
    width:min(42vw,164px);
    min-width:min(42vw,164px);
    height:104px;
    flex:0 0 min(42vw,164px);
    scroll-snap-align:start;
  }
  .home-page .category-tab.is-active{
    border-radius:15px 15px 0 0;
  }
  .home-page .category-icon{
    top:14px;
    width:38px;
    height:38px;
  }
  .home-page .category-tab>span:last-child{
    bottom:13px;
    padding-inline:5px;
    font-size:.84rem;
  }
  .home-page .category-stage-image{
    transform:translate3d(0,var(--category-parallax-y),0) scale(1.008);
  }
  .home-page .featured-envelope{
    background:
      radial-gradient(ellipse at 8% 4%,rgba(76,128,255,.12),transparent 24%),
      radial-gradient(ellipse at 92% 92%,rgba(122,69,255,.08),transparent 26%),
      linear-gradient(150deg,#fbfcfd 0%,#edf2f6 58%,#f8fafb 100%);
  }
  .home-page .featured-card:hover{transform:none}
}

@media(prefers-reduced-motion:reduce){
  .home-page .category-stage-image{
    transform:none!important;
    transition:none!important;
  }
  .home-page .featured-card,
  .home-page .featured-card:hover,
  .home-page .featured-card .button-line,
  .home-page .featured-card .button-line:hover{
    transform:none!important;
    transition:none!important;
  }
  .home-page .category-tabs{scroll-behavior:auto!important}
}

/* v1.3.1 featured media are finished 4:3 studio scenes, not cutouts. */
.home-page .featured-visual,
.home-page .featured-card-main .featured-visual{
  overflow:hidden;
  background:#e8edf2;
}
.home-page .featured-visual::before{display:none}
.home-page .featured-visual img,
.home-page .featured-card-main .featured-visual img,
.home-page .featured-card-small .featured-visual img{
  width:100%;
  height:100%;
  padding:0;
  object-fit:cover;
  object-position:center;
  mix-blend-mode:normal;
  filter:none;
  transform:scale(1.001);
}
.home-page .featured-card:hover .featured-visual img{
  transform:scale(1.018);
  filter:none;
}
.home-page .featured-card-medium{grid-template-columns:52% 48%}
.home-page .featured-card-small{
  grid-template-columns:1fr;
  grid-template-rows:56% 44%;
}
.home-page .featured-card-small .featured-body{
  justify-content:flex-start;
  padding:13px 15px 14px;
}
.home-page .featured-card-small .home-price{margin:auto 0 8px}

@media(max-width:1100px){
  .home-page .featured-card-small{
    grid-template-columns:1fr;
    grid-template-rows:58% 42%;
  }
}

@media(max-width:700px){
  .home-page .featured-card-main,
  .home-page .featured-card-medium,
  .home-page .featured-card-small{
    grid-template-columns:1fr;
  }
  .home-page .featured-card-main .featured-visual,
  .home-page .featured-card-medium .featured-visual,
  .home-page .featured-card-small .featured-visual{
    min-height:0;
    aspect-ratio:4/3;
  }
  .home-page .featured-card-small{
    grid-template-rows:auto 1fr;
  }
  .home-page .featured-card-small .featured-body{padding:18px}
}

@media(prefers-reduced-motion:reduce){
  .home-page .featured-visual img,
  .home-page .featured-card:hover .featured-visual img{
    transform:none!important;
  }
}

/* v1.3.1 final optical balance. */
.home-page .project-card>span{
  font-size:clamp(1.18rem,1.35vw,1.5rem);
}
.home-page .featured-card-small{
  grid-template-rows:50% 50%;
}
@media(min-width:1101px){
  .home-page .featured-grid{
    grid-template-rows:335px 345px;
  }
}
@media(max-width:1100px) and (min-width:701px){
  .home-page .featured-card-small{
    grid-template-rows:48% 52%;
  }
}
@media(max-width:700px){
  .home-page .project-card>span{font-size:1.04rem}
  .home-page .featured-card-small{grid-template-rows:auto 1fr}
}

/* v1.3 — the hero assurances follow their content width, with equal gaps. */
.home-page{
  overflow-x:clip;
}

@media(min-width:701px){
  .home-page .trust-list{
    display:flex;
    width:max-content;
    max-width:100%;
    align-items:center;
    gap:clamp(28px,3vw,48px);
  }
  .home-page .trust-list li{
    width:auto;
    min-width:max-content;
    padding:0;
    border:0;
  }
  .home-page .trust-list li+li{
    position:relative;
  }
  .home-page .trust-list li+li::before{
    content:"";
    position:absolute;
    top:7px;
    bottom:7px;
    left:calc(clamp(28px,3vw,48px) / -2);
    width:1px;
    background:rgba(255,255,255,.24);
  }
  .home-page .trust-list li span{
    white-space:nowrap;
  }
}

/* Keep the left-side category subject visible in the tall mobile stage. */
@media(max-width:700px){
  .home-page .category-stage-image{
    object-position:25% center!important;
  }
  .home-page .category-stage::after{
    background:linear-gradient(180deg,rgba(7,16,24,.4) 0%,rgba(7,16,24,.12) 30%,rgba(8,17,25,.84) 43%,#0d1923 50%,#0d1923 100%);
  }
  .home-page .featured-card-medium .featured-visual{
    width:100%;
    height:auto!important;
    align-self:stretch;
    justify-self:stretch;
  }
}

/* =========================================================
   v1.4 — continuidade sem reflexo + geometria estável
   Escopo: hero/projeto, institucional e painel de categorias
   ========================================================= */

/* A ponte invade suavemente o fim do hero e se dissolve no fundo global.
   A sobreposição elimina a emenda sem espelhar ou repetir uma borda rígida. */
.home-page .material-flow{
  --hero-flow-overlap:clamp(112px,9vw,168px);
  --hero-flow-depth:clamp(690px,50vw,850px);
}
.home-page .material-flow>.flow-bridge{
  top:calc(-1 * var(--hero-flow-overlap));
  height:var(--hero-flow-depth);
  overflow:visible;
  pointer-events:none;
}
.home-page .flow-bridge-layer{
  inset:0;
  background-position:center 62%;
  background-size:cover;
  background-repeat:no-repeat;
  transform:none;
  filter:saturate(.9) brightness(.78) contrast(1.025);
  opacity:0;
  -webkit-mask-image:linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,.2) 9%,
    rgba(0,0,0,.78) 25%,
    #000 38%,
    rgba(0,0,0,.82) 56%,
    rgba(0,0,0,.3) 76%,
    transparent 100%);
  mask-image:linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,.2) 9%,
    rgba(0,0,0,.78) 25%,
    #000 38%,
    rgba(0,0,0,.82) 56%,
    rgba(0,0,0,.3) 76%,
    transparent 100%);
  transition:opacity .72s ease;
  will-change:opacity;
}
.home-page .flow-bridge-layer.is-active{
  opacity:.54;
}

/* Mantém a continuidade visível nas laterais, com um respiro discreto
   antes do primeiro envelope e sem perder a sensação de sobreposição. */
.home-page .project-section{
  margin-top:-12px;
}

/* O texto institucional acompanha a borda interna dos envelopes:
   margem automática do envelope + seu padding horizontal. */
.home-page .institutional-copy{
  left:calc(((100% - var(--envelope))/2) + 64px);
}

/* Título, CTA e benefícios mantêm a mesma posição quando a categoria muda. */
.home-page .category-panel-copy h3{
  display:-webkit-box;
  min-height:1.94em;
  max-height:1.94em;
  overflow:hidden;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
}
.home-page .category-panel-copy>.button{
  position:absolute;
  left:58px;
  top:292px;
  margin:0;
}
.home-page .category-panel-copy .category-benefits{
  position:absolute;
  left:58px;
  right:58px;
  bottom:34px;
  width:auto;
  margin:0;
}

@media(max-width:1500px){
  .home-page .category-panel-copy>.button{
    left:42px;
    top:242px;
  }
  .home-page .category-panel-copy .category-benefits{
    left:42px;
    right:42px;
    bottom:30px;
  }
}

@media(max-width:1100px){
  .home-page .material-flow{
    --hero-flow-overlap:clamp(92px,11vw,126px);
    --hero-flow-depth:clamp(650px,72vw,780px);
  }
  .home-page .flow-bridge-layer{
    background-position:center 60%;
  }
  .home-page .project-section{
    margin-top:-8px;
  }
  .home-page .institutional-copy{
    left:calc(((100% - var(--envelope))/2) + 28px);
  }

  .home-page .category-panel-copy h3{
    max-width:49%;
  }
  .home-page .category-panel-copy>.button{
    left:30px;
    top:auto;
    bottom:28px;
  }
  .home-page .category-panel-copy .category-benefits{
    left:auto;
    right:24px;
    bottom:25px;
    width:46%;
    margin:0;
  }
}

@media(max-width:700px){
  .home-page .material-flow{
    --hero-flow-overlap:74px;
    --hero-flow-depth:650px;
  }
  .home-page .flow-bridge-layer{
    background-position:center 58%;
    filter:saturate(.88) brightness(.74) contrast(1.02);
  }
  .home-page .flow-bridge-layer.is-active{
    opacity:.49;
  }
  .home-page .project-section{
    margin-top:0;
  }
  .home-page .institutional-copy{
    left:calc(((100% - var(--envelope))/2) + 13px);
  }

  .home-page .category-panel-copy h3{
    max-width:100%;
  }
  .home-page .category-panel-copy>.button{
    left:20px;
    right:20px;
    top:auto;
    bottom:132px;
    width:calc(100% - 40px);
  }
  .home-page .category-panel-copy .category-benefits{
    left:10px;
    right:10px;
    bottom:18px;
    width:auto;
  }
}

@media(prefers-reduced-motion:reduce){
  .home-page .flow-bridge-layer{
    transition:none!important;
    will-change:auto;
  }
}

/* =========================================================
   v1.5 — emenda responsiva do hero + contenção lateral
   A camada de continuação usa a mesma caixa e o mesmo recorte
   responsivo do hero; somente o invólucro externo recebe o fade.
   ========================================================= */

html.home-root{
  max-width:100%;
  overflow-x:hidden;
  scrollbar-width:none;
}
html.home-root::-webkit-scrollbar{
  width:0;
  height:0;
}
body.home-page{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

.home-page{
  --hero-stage-height:clamp(640px,40vw,800px);
  --hero-flow-gap:clamp(26px,2.2vw,38px);
  --hero-flow-depth:clamp(330px,24vw,460px);
  --hero-flow-position:center center;
}
.home-page .material-flow{
  margin-top:0;
  padding-top:var(--hero-flow-gap);
}
.home-page .project-section{
  margin-top:0;
}
.home-page .material-flow>.flow-bridge{
  top:0;
  right:0;
  left:0;
  height:var(--hero-flow-depth);
  overflow:hidden;
  -webkit-mask-image:linear-gradient(180deg,#000 0%,rgba(0,0,0,.94) 10%,rgba(0,0,0,.62) 42%,rgba(0,0,0,.2) 72%,transparent 100%);
  mask-image:linear-gradient(180deg,#000 0%,rgba(0,0,0,.94) 10%,rgba(0,0,0,.62) 42%,rgba(0,0,0,.2) 72%,transparent 100%);
}
.home-page .flow-bridge-layer{
  inset:0 0 auto;
  width:100%;
  height:var(--hero-stage-height);
  background-position:var(--hero-flow-position);
  background-size:cover;
  background-repeat:no-repeat;
  filter:none;
  opacity:0;
  transform:scaleY(-1) scale(1.035);
  transform-origin:center;
  -webkit-mask-image:none;
  mask-image:none;
  transition:opacity .72s ease;
  will-change:opacity;
}
.home-page .flow-bridge-layer[data-flow-layer="1"]{
  transform:scale(-1,-1) scale(1.035);
}
.home-page .flow-bridge-layer.is-active,
.home-page .flow-bridge-layer[aria-hidden="false"]{
  opacity:1;
}
.home-page .material-flow>.flow-bridge::after{
  display:block;
  content:"";
  position:absolute;
  z-index:2;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(3,10,17,.5) 0%,rgba(3,10,17,.34) 29%,rgba(3,10,17,.1) 48%,transparent 68%),
    linear-gradient(180deg,rgba(2,8,14,.18) 0%,rgba(18,30,41,.28) 52%,var(--flow-base) 100%);
}

/* Uma gaveta fechada não deve continuar pintada fora da viewport. */
.cart-drawer[aria-hidden="true"]{
  visibility:hidden;
  pointer-events:none;
  transition:transform .45s var(--ease),visibility 0s linear .45s;
}

@media(max-width:1100px){
  .home-page{
    --hero-stage-height:760px;
    --hero-flow-gap:22px;
    --hero-flow-depth:380px;
    --hero-flow-position:62% center;
  }
  .home-page .material-flow>.flow-bridge::after{
    background:
      linear-gradient(90deg,rgba(3,10,17,.92),rgba(3,10,17,.46) 65%,rgba(3,10,17,.08)),
      linear-gradient(180deg,rgba(2,8,14,.14) 0%,rgba(18,30,41,.3) 52%,var(--flow-base) 100%);
  }
}

@media(max-width:700px){
  .home-page{
    --hero-stage-height:790px;
    --hero-flow-gap:16px;
    --hero-flow-depth:320px;
    --hero-flow-position:69% center;
  }
}

/* =========================================================
   v1.6 — continuação fotográfica real, sem espelhamento
   O primeiro hero e a ponte usam o mesmo bitmap estendido e a
   mesma janela de recorte. O trecho original ocupa exatamente a
   altura do hero; somente o terreno novo continua abaixo dele.
   ========================================================= */

.home-page{
  --hero-scene-anchor:50%;
  --hero-scene-offset:-50%;
}

.home-page .material-flow{
  --hero-flow-depth:clamp(350px,23vw,420px);
}

.home-page .hero-slide:first-child .hero-scene-frame{
  position:absolute;
  z-index:0;
  top:50%;
  left:var(--hero-scene-anchor);
  width:auto;
  height:100%;
  aspect-ratio:1983 / 793;
  overflow:visible;
  transform:translate3d(var(--hero-scene-offset),calc(-50% + var(--hero-parallax-y)),0);
  transform-origin:center;
  will-change:transform;
}

.home-page .hero-slide:first-child .hero-media-extended{
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:auto;
  max-width:none;
  object-fit:fill;
  object-position:initial;
  transform:none;
  transform-origin:initial;
  will-change:auto;
}

.home-page .material-flow>.flow-bridge{
  isolation:isolate;
}

.home-page .flow-bridge-layer.flow-bridge-photo{
  top:calc(-1 * var(--hero-stage-height));
  right:auto;
  bottom:auto;
  left:0;
  width:100%;
  height:var(--hero-stage-height);
  overflow:visible;
  background:none;
  filter:none;
  transform:none;
  transform-origin:initial;
  -webkit-mask-image:none;
  mask-image:none;
}

.home-page .flow-scene-frame{
  position:absolute;
  top:50%;
  left:var(--hero-scene-anchor);
  width:auto;
  height:100%;
  aspect-ratio:1983 / 793;
  overflow:visible;
  transform:translate3d(var(--hero-scene-offset),calc(-50% + var(--hero-parallax-y)),0);
  transform-origin:center;
  will-change:transform;
}

.home-page .flow-scene-frame img{
  position:absolute;
  inset:0 auto auto 0;
  display:block;
  width:100%;
  height:auto;
  max-width:none;
}

.home-page .flow-bridge-layer.flow-bridge-fallback{
  inset:0;
  width:100%;
  height:100%;
  background:
    radial-gradient(ellipse at 28% 0%,rgba(87,64,38,.24),transparent 42%),
    linear-gradient(180deg,#111b25 0%,var(--flow-base) 68%,transparent 100%);
  filter:none;
  transform:none;
  transform-origin:initial;
  -webkit-mask-image:none;
  mask-image:none;
}

.home-page .flow-bridge-layer.flow-bridge-photo.is-active,
.home-page .flow-bridge-layer.flow-bridge-photo[aria-hidden="false"]{
  opacity:1;
}

.home-page .flow-bridge-layer.flow-bridge-fallback.is-active,
.home-page .flow-bridge-layer.flow-bridge-fallback[aria-hidden="false"]{
  opacity:.9;
}

@media(min-width:2001px){
  .home-page .hero-slide:first-child .hero-scene-frame,
  .home-page .flow-scene-frame{
    width:100%;
    height:auto;
  }
}

@media(max-width:1100px){
  .home-page{
    --hero-scene-anchor:62%;
    --hero-scene-offset:-62%;
  }
  .home-page .material-flow{
    --hero-flow-depth:420px;
  }
}

@media(max-width:700px){
  .home-page{
    --hero-scene-anchor:69%;
    --hero-scene-offset:-69%;
  }
  .home-page .material-flow{
    --hero-flow-depth:430px;
  }
}

@media(prefers-reduced-motion:reduce){
  .home-page .hero-slide:first-child .hero-scene-frame,
  .home-page .flow-scene-frame{
    transform:translate3d(var(--hero-scene-offset),-50%,0)!important;
    will-change:auto;
  }
}
