:root{
  --bg:#07111d;
  --bg-soft:#0b1726;
  --surface:#0f1b2b;
  --card:#132131;
  --line:rgba(159, 218, 255, .12);
  --line-strong:rgba(0, 199, 199, .22);
  --cyan:#18d4d4;
  --cyan-soft:rgba(24, 212, 212, .14);
  --orange:#ff6a3d;
  --orange-soft:rgba(255, 106, 61, .14);
  --text:#eaf2fb;
  --muted:#91a4bb;
  --head:'Plus Jakarta Sans',sans-serif;
  --body:'Inter',sans-serif;
  --mono:'JetBrains Mono',monospace;
  color-scheme:dark;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(24,212,212,.09), transparent 50%),
    radial-gradient(900px 500px at 95% 0%, rgba(255,106,61,.07), transparent 45%),
    linear-gradient(180deg, #06101a 0%, #050b12 100%);
  color:var(--text);
  font-family:var(--body);
  line-height:1.7;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.container{
  width:min(1200px, calc(100% - 2rem));
  margin:0 auto;
}

.shell{
  position:relative;
  z-index:1;
}

.grid-noise::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.6), transparent 90%);
}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(18px);
  background:rgba(6, 13, 22, .7);
  border-bottom:1px solid var(--line);
}
.site-header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:.85rem;
  font-family:var(--head);
  font-weight:800;
  letter-spacing:-.03em;
}
.brand__mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(145deg, #13263d, #0a141f);
  border:1px solid rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  box-shadow:0 14px 32px rgba(0,0,0,.24);
}
.brand__mark svg{width:24px;height:24px;stroke:var(--cyan);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.brand__text{display:flex;flex-direction:column;line-height:1}
.brand__text strong{font-size:1rem}
.brand__text strong em{font-style:normal;color:var(--cyan)}
.brand__text span{font-size:.72rem;color:var(--muted);letter-spacing:.12em;text-transform:uppercase;margin-top:.25rem}

.nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
  gap:.45rem;
}
.nav a{
  padding:.7rem .95rem;
  border-radius:999px;
  color:var(--muted);
  transition:background .2s ease,color .2s ease,border-color .2s ease;
  border:1px solid transparent;
}
.nav a:hover,
.nav a:focus-visible{
  color:var(--text);
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.07);
  outline:none;
}

.hero{
  position:relative;
  padding:4.5rem 0 2.5rem;
}
.hero--compact{padding:3.5rem 0 2rem}
.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:1.5rem;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:var(--cyan-soft);
  color:#c8ffff;
  font-family:var(--mono);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.eyebrow::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--cyan);
  box-shadow:0 0 0 5px rgba(24,212,212,.12);
}
.hero h1,
.section-title{
  font-family:var(--head);
  letter-spacing:-.05em;
  line-height:1.02;
  margin:0;
}
.hero h1{
  font-size:clamp(2.35rem, 6vw, 4.9rem);
  max-width:12ch;
  margin-top:1rem;
}
.hero p{
  margin:1rem 0 0;
  max-width:60ch;
  color:var(--muted);
  font-size:1.02rem;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin-top:1.6rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  min-height:48px;
  padding:0 1.15rem;
  border-radius:999px;
  border:1px solid transparent;
  font-family:var(--head);
  font-weight:700;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  will-change:transform;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:linear-gradient(135deg, var(--orange), #ff8458);
  color:#09111b;
  box-shadow:0 16px 28px rgba(255,106,61,.15);
}
.btn--secondary{
  background:rgba(255,255,255,.02);
  border-color:var(--line);
  color:var(--text);
}
.btn--secondary:hover{
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.btn--ghost{
  color:#d9fbfb;
  border-color:var(--line-strong);
  background:var(--cyan-soft);
}

.panel{
  background:linear-gradient(180deg, rgba(17,29,46,.96), rgba(12,19,31,.96));
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 28px 80px rgba(0,0,0,.25);
  overflow:hidden;
}
.panel--lift{box-shadow:0 22px 70px rgba(0,0,0,.22)}
.panel__pad{padding:1.25rem}

.mini-kpis{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.75rem;
}
.kpi{
  border:1px solid var(--line);
  border-radius:18px;
  padding:1rem;
  background:rgba(255,255,255,.02);
}
.kpi strong{
  display:block;
  font-family:var(--head);
  font-size:1.05rem;
  margin-bottom:.35rem;
}
.kpi span{color:var(--muted);font-size:.92rem}

.section{
  padding:2.25rem 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1.25rem;
  margin-bottom:1rem;
}
.section-title{
  font-size:clamp(1.6rem, 3vw, 2.7rem);
  max-width:18ch;
}
.section-copy{
  margin:0;
  color:var(--muted);
  max-width:62ch;
}

.grid{
  display:grid;
  gap:1rem;
}
.grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}

.card{
  position:relative;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:22px;
  padding:1.25rem;
  overflow:hidden;
  min-height:100%;
}
.card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:2px;
  background:linear-gradient(90deg, var(--cyan), rgba(24,212,212,.08));
}
.card h3{
  margin:.1rem 0 .6rem;
  font-family:var(--head);
  font-size:1.1rem;
}
.card p{
  margin:0;
  color:var(--muted);
}
.card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin-top:.85rem;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:.35rem .65rem;
  border-radius:999px;
  font-size:.78rem;
  color:#dffeff;
  background:rgba(24,212,212,.09);
  border:1px solid rgba(24,212,212,.18);
}

.media-frame{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  background:#09111a;
  box-shadow:0 20px 50px rgba(0,0,0,.24);
}
.media-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.media-frame--hero img{aspect-ratio:4/3}
.media-frame--wide img{aspect-ratio:16/9}

.carousel-shell{
  position:relative;
  margin-top:1rem;
}
.carousel{
  overflow:hidden;
  border-radius:28px;
}
.carousel__track{
  display:flex;
  gap:1rem;
  transition:transform .5s cubic-bezier(.77,0,.175,1);
  will-change:transform;
}
.carousel__slide{
  flex:0 0 min(420px, 86vw);
}
.slide-link{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  height:100%;
  padding:1.2rem;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(18,30,48,.95), rgba(11,18,29,.95));
  box-shadow:0 16px 40px rgba(0,0,0,.16);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.slide-link:hover{
  transform:translateY(-2px);
  border-color:rgba(24,212,212,.32);
  box-shadow:0 20px 44px rgba(0,0,0,.22);
}
.slide-link strong{
  font-family:var(--head);
  font-size:1.15rem;
}
.slide-link span{
  color:var(--muted);
  font-size:.95rem;
}
.card-shot{
  width:100%;
  height:170px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.card-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}
.carousel__slide.is-active .slide-link:hover .card-shot img{
  transform:scale(1.035);
}
.card-kicker{
  font-size:.78rem;
  color:var(--cyan);
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.card-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin-top:-.15rem;
}
.card-tags span{
  font-size:.72rem;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  padding:.28rem .55rem;
  background:rgba(255,255,255,.025);
}
.card-cta{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-family:var(--head);
  font-size:.9rem;
  font-weight:700;
  color:var(--orange);
  margin-top:.5rem;
}
.carousel__controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-top:1rem;
}
.icon-btn{
  width:48px;height:48px;
  border-radius:50%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.icon-btn:hover{
  transform:translateY(-1px) scale(1.03);
  background:rgba(24,212,212,.09);
  border-color:rgba(24,212,212,.24);
}
.icon-btn svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round}
.dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  flex:1;
}
.dot{
  width:8px;height:8px;border-radius:99px;border:0;
  background:rgba(24,212,212,.25);
  padding:0;
  cursor:pointer;
  transition:width .28s ease, background .28s ease;
}
.dot.is-active{width:28px;background:var(--cyan)}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}
.gallery figure{
  margin:0;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
}
.gallery img{width:100%;aspect-ratio:4/3;object-fit:cover}
.gallery figcaption{
  padding:.9rem 1rem 1rem;
  color:var(--muted);
  font-size:.92rem;
}

.gallery-carousel{
  display:grid;
  gap:1.15rem;
}
.gallery-carousel__viewport{
  overflow:hidden;
  border-radius:32px;
  border:1px solid rgba(159, 218, 255, .14);
  background:
    radial-gradient(1100px 420px at 0% 0%, rgba(24,212,212,.08), transparent 55%),
    linear-gradient(180deg, rgba(14,23,36,.96), rgba(8,14,22,.98));
  box-shadow:0 28px 72px rgba(0,0,0,.26);
}
.gallery-carousel__track{
  display:flex;
  gap:1rem;
  padding:clamp(.95rem, 1.5vw, 1.25rem);
  transition:transform .5s cubic-bezier(.77,0,.175,1);
  will-change:transform;
}
.gallery-carousel__slide{
  flex:0 0 100%;
  min-width:100%;
}
.gallery-card{
  height:100%;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(260px,.85fr);
  align-items:stretch;
  overflow:hidden;
  margin:0;
  border-radius:24px;
  border:1px solid rgba(159, 218, 255, .12);
  background:linear-gradient(180deg, rgba(20,32,47,.98), rgba(8,14,22,.98));
  box-shadow:0 18px 48px rgba(0,0,0,.24);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.gallery-card:hover{
  transform:translateY(-3px);
  border-color:rgba(24,212,212,.28);
  box-shadow:0 24px 58px rgba(0,0,0,.28);
}
.gallery-card img{
  width:100%;
  height:100%;
  min-height:100%;
  object-fit:cover;
}
.gallery-card figcaption{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:.55rem;
  padding:clamp(1.25rem, 2vw, 2rem);
  border-left:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, rgba(12,19,30,.84), rgba(10,15,24,.94));
}
.gallery-card strong{
  font-family:var(--head);
  font-size:clamp(1.15rem, 1.5vw, 1.45rem);
  line-height:1.12;
  letter-spacing:-.03em;
}
.gallery-card span{
  color:var(--muted);
  font-size:.98rem;
  line-height:1.7;
  max-width:34ch;
}
.gallery-carousel__controls{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:.95rem;
  padding-inline:.25rem;
}
.gallery-carousel__controls .dots{
  min-width:0;
  justify-content:center;
}

.story-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}

.list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.75rem;
}
.list li{
  display:flex;
  gap:.65rem;
  color:var(--muted);
}
.list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--cyan);
  margin-top:.45rem;
  flex:none;
}

.callout{
  background:linear-gradient(180deg, rgba(24,212,212,.08), rgba(255,255,255,.02));
  border:1px solid rgba(24,212,212,.18);
  border-radius:28px;
  padding:1.5rem;
}

.footer{
  margin-top:2rem;
  padding:2rem 0 3rem;
  border-top:1px solid var(--line);
}
.footer__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:1rem;
}
.footer small,
.footer p{
  color:var(--muted);
}
.footer__back{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin-top:.4rem;
  padding:.5rem .9rem;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:var(--cyan-soft);
  color:#c8ffff;
  font-family:var(--head);
  font-weight:600;
  font-size:.85rem;
  white-space:nowrap;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}
.footer__back svg{width:15px;height:15px;flex:none;stroke:currentColor;fill:none;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round}
.footer__back:hover,
.footer__back:focus-visible{
  background:rgba(24,212,212,.2);
  border-color:rgba(24,212,212,.4);
  transform:translateY(-1px);
  outline:none;
}

/* Breadcrumb + barra de voltar (páginas internas) */
.subnav{
  padding:1.1rem 0 .2rem;
}
.subnav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.45rem;
  font-size:.82rem;
  color:var(--muted);
  font-family:var(--mono);
  letter-spacing:.02em;
}
.breadcrumb a{color:var(--muted);transition:color .18s ease}
.breadcrumb a:hover{color:var(--cyan)}
.breadcrumb span[aria-current]{color:var(--text)}
.breadcrumb .sep{opacity:.5}
/* Footer institucional (páginas internas) */
.site-footer{
  margin-top:3rem;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg, rgba(10,17,26,.4), rgba(6,11,18,.6));
}
.site-footer__grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:2rem;
  padding:3rem 0 2rem;
}
.site-footer__brand .brand{margin-bottom:.9rem}
.site-footer__brand p{color:var(--muted);font-size:.92rem;max-width:38ch;margin:0 0 1rem}
.site-footer__col h4{
  font-family:var(--mono);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--cyan);
  margin:0 0 .9rem;
}
.site-footer__col ul{list-style:none;margin:0;padding:0;display:grid;gap:.6rem}
.site-footer__col a,
.site-footer__col .foot-plain{color:var(--muted);font-size:.92rem;transition:color .18s ease;display:inline-flex;align-items:center;gap:.5rem}
.site-footer__col a:hover{color:var(--cyan)}
.site-footer__col svg{width:15px;height:15px;flex:none;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.site-footer__bar{
  border-top:1px solid var(--line);
  padding:1.15rem 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.site-footer__bar small{color:var(--muted);font-size:.82rem}
@media (max-width:820px){
  .site-footer__grid{grid-template-columns:1fr 1fr;gap:1.6rem}
  .site-footer__brand{grid-column:1 / -1}
}
@media (max-width:520px){
  .site-footer__grid{grid-template-columns:1fr}
}

.btn-back{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.6rem 1.05rem;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:rgba(255,255,255,.02);
  color:var(--text);
  font-family:var(--head);
  font-weight:700;
  font-size:.88rem;
  white-space:nowrap;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-back:hover,
.btn-back:focus-visible{
  background:var(--cyan-soft);
  border-color:rgba(24,212,212,.34);
  transform:translateX(-2px);
  outline:none;
}
.btn-back svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.25;stroke-linecap:round;stroke-linejoin:round}

/* Feed de novidades / lançamentos (blog) */
.novidades{
  display:grid;
  gap:1rem;
}
.novidade{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:1.5rem;
  align-items:center;
  padding:1.4rem 1.6rem;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg, rgba(18,30,48,.6), rgba(11,18,29,.6));
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.novidade:hover{
  transform:translateY(-2px);
  border-color:rgba(24,212,212,.3);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}
.novidade__date{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:64px;
  padding:.65rem .5rem;
  border-radius:14px;
  background:var(--cyan-soft);
  border:1px solid var(--line-strong);
  line-height:1;
}
.novidade__date b{font-family:var(--head);font-size:1.5rem;font-weight:800;color:#c8ffff}
.novidade__date span{font-family:var(--mono);font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--cyan);margin-top:.3rem}
.novidade__body{min-width:0}
.novidade__tag{
  display:inline-block;
  font-family:var(--mono);
  font-size:.66rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:.35rem;
}
.novidade__title{
  font-family:var(--head);
  font-size:1.15rem;
  font-weight:800;
  letter-spacing:-.02em;
  margin:0 0 .3rem;
}
.novidade__desc{color:var(--muted);font-size:.94rem;line-height:1.55;margin:0}
.novidade__cta{
  flex:none;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-family:var(--head);
  font-weight:700;
  font-size:.88rem;
  color:var(--cyan);
  white-space:nowrap;
  transition:gap .18s ease;
}
.novidade:hover .novidade__cta{gap:.65rem}
@media (max-width:720px){
  .novidade{grid-template-columns:auto 1fr;gap:1rem;row-gap:.8rem}
  .novidade__cta{grid-column:1 / -1;justify-content:flex-start}
}

/* Grid de soluções (cards visuais com print real) */
.sol-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.15rem;
}
.sol-card{
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(18,30,48,.96), rgba(11,18,29,.96));
  box-shadow:0 16px 40px rgba(0,0,0,.18);
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sol-card:hover{
  transform:translateY(-4px);
  border-color:rgba(24,212,212,.34);
  box-shadow:0 26px 56px rgba(0,0,0,.3);
}
.sol-card__shot{
  aspect-ratio:16/10;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#09111a;
}
.sol-card__shot img{
  width:100%;height:100%;
  object-fit:cover;object-position:top;
  display:block;
  transition:transform .5s ease;
}
.sol-card:hover .sol-card__shot img{transform:scale(1.045)}
.sol-card__body{
  display:flex;
  flex-direction:column;
  gap:.5rem;
  padding:1.15rem 1.25rem 1.35rem;
  flex:1;
}
.sol-card__kicker{
  font-family:var(--mono);
  font-size:.7rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--cyan);
}
.sol-card__name{
  font-family:var(--head);
  font-size:1.2rem;
  font-weight:800;
  letter-spacing:-.025em;
  margin:0;
}
.sol-card__desc{
  color:var(--muted);
  font-size:.94rem;
  line-height:1.6;
  flex:1;
}
.sol-card__cta{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-family:var(--head);
  font-weight:700;
  font-size:.9rem;
  color:var(--orange);
  margin-top:.4rem;
  transition:gap .18s ease;
}
.sol-card:hover .sol-card__cta{gap:.65rem}
.sol-cat{
  font-family:var(--mono);
  font-size:.74rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:.7rem;
  margin:0 0 1.1rem;
}
.sol-cat::after{
  content:"";
  flex:1;
  height:1px;
  background:linear-gradient(90deg, var(--line-strong), transparent);
}
.sol-cat + .sol-grid{margin-bottom:2.4rem}
@media (max-width: 980px){.sol-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 620px){.sol-grid{grid-template-columns:1fr}}

/* Card featured (produto principal) */
.sol-featured{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:
    radial-gradient(900px 360px at 100% 0%, rgba(24,212,212,.1), transparent 55%),
    linear-gradient(180deg, rgba(18,30,48,.96), rgba(11,18,29,.96));
  box-shadow:0 22px 52px rgba(0,0,0,.24);
  margin-bottom:2.4rem;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.sol-featured:hover{
  transform:translateY(-3px);
  border-color:rgba(24,212,212,.34);
  box-shadow:0 28px 60px rgba(0,0,0,.32);
}
.sol-featured__shot{overflow:hidden;border-right:1px solid var(--line);background:#09111a;min-height:300px}
.sol-featured__shot img{width:100%;height:100%;object-fit:cover;object-position:top left;transition:transform .5s ease}
.sol-featured:hover .sol-featured__shot img{transform:scale(1.03)}
.sol-featured__body{
  display:flex;
  flex-direction:column;
  gap:.7rem;
  justify-content:center;
  padding:clamp(1.5rem, 3vw, 2.6rem);
}
.sol-featured__badge{
  align-self:flex-start;
  font-family:var(--mono);
  font-size:.68rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#c8ffff;
  background:var(--cyan-soft);
  border:1px solid var(--line-strong);
  border-radius:999px;
  padding:.32rem .7rem;
}
.sol-featured__name{
  font-family:var(--head);
  font-size:clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.05;
  margin:.2rem 0 0;
}
.sol-featured__desc{color:var(--muted);font-size:1rem;line-height:1.65;margin:0}
.sol-featured__cta{
  display:inline-flex;align-items:center;gap:.45rem;
  align-self:flex-start;margin-top:.5rem;
  font-family:var(--head);font-weight:700;color:var(--orange);
  transition:gap .18s ease;
}
.sol-featured:hover .sol-featured__cta{gap:.7rem}
@media (max-width: 760px){
  .sol-featured{grid-template-columns:1fr}
  .sol-featured__shot{border-right:0;border-bottom:1px solid var(--line);min-height:0;aspect-ratio:16/10}
}

.fade{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .55s ease, transform .55s ease;
}
.fade.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 960px){
  .hero__grid,
  .grid--2,
  .grid--3,
  .grid--4,
  .story-grid,
  .gallery,
  .footer__grid,
  .section-head{
    grid-template-columns:1fr;
    display:grid;
  }
  .nav{justify-content:flex-start}
  .site-header__inner{align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start}
}

@media (max-width: 640px){
  .container{width:min(100% - 1rem, 1200px)}
  .hero{padding-top:2.5rem}
  .hero h1{max-width:none}
  .mini-kpis{grid-template-columns:1fr}
  .carousel__controls{flex-wrap:wrap}
  .gallery-carousel__track{padding:.8rem}
  .gallery-card{
    grid-template-columns:1fr;
    min-height:0;
  }
  .gallery-card img{
    height:auto;
    min-height:0;
    aspect-ratio:4/3;
  }
  .gallery-card figcaption{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.06);
    padding:1.1rem 1.05rem 1.15rem;
  }
}

/* === TRANSIÇÃO DE PÁGINA INTEIRA (cross-document View Transitions) === */
@view-transition { navigation: auto; }
.site-header{ view-transition-name: page-header; }
@media (prefers-reduced-motion: no-preference){
  ::view-transition-old(root){ animation: pg-out .3s ease both; }
  ::view-transition-new(root){ animation: pg-in .42s cubic-bezier(.2,.8,.2,1) both; }
}
@keyframes pg-out{ to { opacity:0; transform:translateY(-10px); } }
@keyframes pg-in { from { opacity:0; transform:translateY(20px); } }
