.btn-restrito.is-icon-only {
  padding: 8px;
  min-width: 0 !important;
  width: auto !important;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.btn-restrito.is-icon-only i,
.btn-restrito.is-icon-only svg {
  font-size: 16px;
  margin: 0;
}
/* Neiva Serviços — Premium UI kit
   Palette:
   Navy:   #121D38
   Blue:   #466FB6
   Orange: #F26821
   Gray:   #373737
*/

/* Fonte oficial (AlanSans) */
@font-face{font-family:"Alan Sans";src:url("../fonts/AlanSans/static/AlanSans-Light.ttf") format("truetype");font-weight:300;font-style:normal;font-display:swap;}
@font-face{font-family:"Alan Sans";src:url("../fonts/AlanSans/static/AlanSans-Regular.woff2") format("woff2"),url("../fonts/AlanSans/static/AlanSans-Regular.ttf") format("truetype");font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:"Alan Sans";src:url("../fonts/AlanSans/static/AlanSans-Medium.ttf") format("truetype");font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:"Alan Sans";src:url("../fonts/AlanSans/static/AlanSans-SemiBold.woff2") format("woff2"),url("../fonts/AlanSans/static/AlanSans-SemiBold.ttf") format("truetype");font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:"Alan Sans";src:url("../fonts/AlanSans/static/AlanSans-Bold.woff2") format("woff2"),url("../fonts/AlanSans/static/AlanSans-Bold.ttf") format("truetype");font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:"Alan Sans";src:url("../fonts/AlanSans/static/AlanSans-ExtraBold.ttf") format("truetype");font-weight:800;font-style:normal;font-display:swap;}
@font-face{font-family:"Alan Sans";src:url("../fonts/AlanSans/static/AlanSans-Black.ttf") format("truetype");font-weight:900;font-style:normal;font-display:swap;}

:root{
  --navy:#121D38;
  --blue:#466FB6;
  --orange:#F26821;
  --border-blue: rgba(70,111,182,.55);
  --border-orange: rgba(242,104,33,.55);
  --border-blue-weak: rgba(70,111,182,.32);
  --border-orange-weak: rgba(242,104,33,.32);
  --gray:#373737;
  /* Cores solidas para cards (sem degrade) */
  --solid-blue: var(--blue);
  --solid-orange: var(--orange);
  /* Institutional (light) base */
  --bg:#F7F9FE;
  --surface:#FFFFFF;
  --surface2:#F3F5FA;
  --text:#0B1020;
  --muted: rgba(11,16,32,.64);
  --stroke: rgba(11,16,32,.10);
  --shadow: 0 14px 50px rgba(18,29,56,.10);
  --radius: 20px;
  --radius2: 28px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --font: "Alan Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  /* Light institutional background */
  background:
    radial-gradient(1100px 520px at 16% 0%, rgba(70,111,182,.16), transparent 62%),
    radial-gradient(900px 620px at 88% 0%, rgba(242,104,33,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg));
  min-height:100vh;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button, input, textarea{font:inherit}
::selection{background: rgba(242,104,33,.35)}

.container{width:min(var(--max), calc(100% - 48px)); margin-inline:auto}
.section{padding: clamp(52px, 6vw, 92px) 0}
.section--tight{padding: clamp(36px, 5vw, 64px) 0}

.kicker{
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:650;
  color: rgba(17,24,39,.55);
  font-size:.82rem;
}
.kicker--on-dark{
  color: rgba(245,247,255,.75);
}
.h1{
  margin:.55rem 0 0;
  /* Slightly smaller for a more premium/institutional look */
  font-size: clamp(1.575rem, 2.7vw, 2.115rem);
  line-height:1.08;
  letter-spacing:-.02em;
}
.h2{
  margin:.55rem 0 0;
  font-size: clamp(1.215rem, 1.98vw, 1.665rem);
  line-height:1.14;
  letter-spacing:-.02em;
}
.p{
  margin:1rem 0 0;
  color: var(--muted);
  line-height:1.65;
  font-size:1.02rem;
}

.badge{
  display:inline-flex; align-items:center; gap:.5rem;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.86);
  padding:.5rem .75rem;
  border-radius:999px;
  color: rgba(245,247,255,.86);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.badge i{
  width:.55rem; height:.55rem; border-radius:999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(242,104,33,.18);
}

.card{
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.card--p{padding: 22px}

/* ===== Accent cards (Orange / Blue) =====
   Used to highlight key blocks while keeping a clean, professional palette.
*/
.card-tone--blue,
.card-tone--orange{
  color:#fff;
  box-shadow: 0 16px 46px rgba(18,29,56,.18);
}
.card-tone--blue{
  background: var(--solid-blue) !important;
  border: 2px solid rgba(70,111,182,.95) !important;
  box-shadow: 0 16px 46px rgba(18,29,56,.14);
}
.card-tone--orange{
  background: var(--solid-orange) !important;
  border: 2px solid rgba(242,104,33,.95) !important;
  box-shadow: 0 16px 46px rgba(18,29,56,.14);
}

/* ===== Premium form card (light glass + subtle brand accent) ===== */
.card-tone--form{
  color: var(--text);
  background: rgba(255,255,255,.88) !important;
  border: 1px solid rgba(11,18,38,.10) !important;
  box-shadow: 0 16px 50px rgba(11,18,38,.10);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.card-tone--form::before{
  content:"";
  position:absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(242,104,33,.95), rgba(242,104,33,.35));
}
.card-tone--form .kicker{color: rgba(11,18,38,.60);}
.card-tone--form .help{color: rgba(11,18,38,.78);}
.card-tone--blue .kicker,
.card-tone--orange .kicker,
.card-tone--blue .help,
.card-tone--orange .help{color: rgba(255,255,255,.78);}
.card-tone--blue .p,
.card-tone--orange .p,
.card-tone--blue p,
.card-tone--orange p,
.card-tone--blue .small,
.card-tone--orange .small,
.card-tone--blue .values-card p,
.card-tone--orange .values-card p{color: rgba(255,255,255,.86);}

/* Lists/tiles inside accent cards */
.card-tone--blue .li,
.card-tone--orange .li,
.card-tone--blue .feature,
.card-tone--orange .feature{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
}
.card-tone--blue .dot,
.card-tone--orange .dot{
  background: rgba(255,255,255,.82);
  box-shadow: 0 0 0 6px rgba(255,255,255,.12);
}

/* Buttons sitting on accent cards (keep contrast) */
.card-tone--blue .btn,
.card-tone--orange .btn{
  border-color: rgba(255,255,255,.22);
}
.card-tone--blue .btn:hover,
.card-tone--orange .btn:hover{
  border-color: rgba(255,255,255,.36);
}
.grid{
  display:grid; gap: 18px;
}
.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))}
@media (max-width: 920px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
}

/* ===== Layout theming for key card groups ===== */

/* Services page background image */
.section--services-bg{
  position: relative;
  overflow: hidden;
}
.section--services-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(247,249,254,.92) 0%, rgba(247,249,254,.86) 45%, rgba(247,249,254,.92) 100%),
    url('../img/services-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: .55;
  transform: scale(1.03);
}
.section--services-bg > .container{
  position: relative;
  z-index: 1;
}

/* Services cards */
.services-grid > .card:nth-child(odd){
  background: var(--solid-blue);
  color:#fff;
  border-color: var(--border-blue);
  box-shadow: var(--shadow), 0 0 0 1px rgba(70,111,182,.18) inset;
}
.services-grid > .card:nth-child(even){
  background: var(--solid-orange);
  color:#fff;
  border-color: var(--border-orange);
  box-shadow: var(--shadow), 0 0 0 1px rgba(242,104,33,.18) inset;
}
.services-grid > .card:nth-child(odd) .kicker,
.services-grid > .card:nth-child(even) .kicker{color: rgba(255,255,255,.78);}
.services-grid > .card:nth-child(odd) .small,
.services-grid > .card:nth-child(even) .small{color: rgba(255,255,255,.86);}

/* Portfolio cards */
.portfolio-grid > .card:nth-child(odd){
  background: var(--solid-blue);
  color:#fff;
  border-color: var(--border-blue);
  box-shadow: var(--shadow), 0 0 0 1px rgba(70,111,182,.18) inset;
}
.portfolio-grid > .card:nth-child(even){
  background: var(--solid-orange);
  color:#fff;
  border-color: var(--border-orange);
  box-shadow: var(--shadow), 0 0 0 1px rgba(242,104,33,.18) inset;
}
.portfolio-grid > .card .kicker{color: rgba(255,255,255,.78);}
.portfolio-grid > .card .li{background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.16);}
.portfolio-grid > .card .dot{background: rgba(255,255,255,.82); box-shadow: 0 0 0 6px rgba(255,255,255,.12);}

/* About page highlight cards */
.about-grid > .card:nth-child(1),
.about-grid > .card:nth-child(3){
  background: var(--solid-blue);
  color:#fff;
  border-color: var(--border-blue);
  box-shadow: var(--shadow), 0 0 0 1px rgba(70,111,182,.18) inset;
}
.about-grid > .card:nth-child(2){
  background: var(--solid-orange);
  color:#fff;
  border-color: var(--border-orange);
  box-shadow: var(--shadow), 0 0 0 1px rgba(242,104,33,.18) inset;
}
.about-grid > .card .kicker{color: rgba(255,255,255,.78);}
.about-grid > .card .small{color: rgba(255,255,255,.86);}

/* Values (Sobre) */
.values-cards .values-card:nth-child(odd){
  background: var(--solid-orange);
  color:#fff;
  border-color: var(--border-orange);
  box-shadow: var(--shadow), 0 0 0 1px rgba(242,104,33,.18) inset;
}
.values-cards .values-card:nth-child(even){
  background: var(--solid-blue);
  color:#fff;
  border-color: var(--border-blue);
  box-shadow: var(--shadow), 0 0 0 1px rgba(70,111,182,.18) inset;
}
.values-cards .values-card__title{color:#fff;}
.values-cards .values-card p{color: rgba(255,255,255,.86);}

.topbar{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid rgba(11,16,32,.08);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap:.9rem;
}
.brand__mark{
  width:44px; height:44px;
  border-radius:14px;
  background: radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.18), transparent),
              linear-gradient(135deg, rgba(70,111,182,.55), rgba(242,104,33,.35));
  border:1px solid rgba(11,16,32,.10);
  box-shadow: 0 14px 40px rgba(18,29,56,.12);
}
.brand__name{font-weight:600; letter-spacing:.02em}
.brand__sub{display:block; margin-top:2px; font-size:.82rem; color:rgba(11,16,32,.62); font-weight:600}

.menu{display:flex; align-items:center; gap: 18px}
.menu a{
  color: rgba(11,16,32,.86);
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.menu a:hover{background: rgba(18,29,56,.06); transform: translateY(-1px)}
.menu a[aria-current="page"]{background: rgba(242,104,33,.10); color: rgba(11,16,32,.92); border:1px solid rgba(242,104,33,.18)}

.nav__right{display:flex; align-items:center; gap: 12px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(245,247,255,.14);
  background: rgba(255,255,255,.86);
  color:#fff;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09)}
.btn--primary{
  background: linear-gradient(135deg, rgba(242,104,33,.95), rgba(242,104,33,.72));
  border-color: rgba(242,104,33,.35);
  box-shadow: 0 18px 50px rgba(242,104,33,.22);
}
.btn--primary:hover{background: linear-gradient(135deg, rgba(242,104,33,1), rgba(242,104,33,.78))}
.btn--ghost{background: transparent}

.icon{
  width: 18px; height: 18px; display:inline-block;
  border-radius:6px;
  background: rgba(245,247,255,.12);
}

.hero{
  padding: clamp(56px, 7vw, 92px) 0 24px;
  position: relative;
  overflow:hidden;
}
.hero__wrap{
  display:grid; gap: 22px;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
}
@media (max-width: 920px){ .hero__wrap{grid-template-columns:1fr} }
.hero__panel{
  padding: 26px;
  border-radius: var(--radius2);
  border:1px solid rgba(245,247,255,.14);
  background: radial-gradient(900px 300px at 20% 0%, rgba(70,111,182,.25), transparent 60%),
              radial-gradient(600px 340px at 100% 0%, rgba(242,104,33,.20), transparent 55%),
              rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px}
.hero__stats{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 18px}
@media (max-width: 520px){ .hero__stats{grid-template-columns:1fr} }
.stat{
  padding: 14px 14px;
  border-radius: 18px;
  border:1px solid rgba(245,247,255,.14);
  background: rgba(255,255,255,.86);
}
.stat__n{font-size:1.25rem; font-weight:600}
.stat__l{color: rgba(245,247,255,.70); font-size:.9rem; margin-top:4px}

.hero__card{
  padding: 22px;
}
.hero__card.card{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(11,18,38,.10);
  box-shadow: 0 16px 40px rgba(11,18,38,.12);
  backdrop-filter: blur(18px);
}
.hero__card h3{margin:0; font-size:1.05rem}
.hero__card p{margin:10px 0 0; color: var(--muted); line-height:1.6}


/* HOME premium layout */
/* Keep the tower visible: align the hero panel to the right on desktop */
.hero__wrap--premium{
  display:flex;
  justify-content:flex-end;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__panel--premium{
  /* Mais compacto para caber confortavelmente dentro do HERO sem cortar conteúdo */
  /* levemente menor para evitar corte de conteúdo em telas 1366x768 */
  width: min(600px, 100%);
  /* Keep the glass card fully inside the hero (show top & bottom rounded borders) */
  margin: 14px 0;
  max-height: calc(100% - 28px);
  padding: 16px 20px 12px;
  position: relative;
  overflow: hidden;

  transform: scale(0.90);
  transform-origin: center;
}
.hero__panel--premium::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(900px 320px at 10% -20%, rgba(70,111,182,.22), transparent 60%),
    radial-gradient(780px 320px at 110% -10%, rgba(242,104,33,.18), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02) 55%, rgba(0,0,0,.00));
}
.hero__panel--premium > *{ position: relative; }
.hero__panel--premium .h1{
  font-size: clamp(1.62rem, 2.12vw, 2.16rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero__panel--premium .p{max-width: 62ch;}
@media (max-width: 560px){
  .hero__panel--premium{margin: 10px 0; padding: 16px 14px 12px;}
}
@media (max-width: 920px){
  .hero__wrap--premium{justify-content:center;}
  .hero__panel--premium{width: min(720px, 100%);}
}
.hero__cta--premium .btn{white-space: nowrap;}
.hero__cta--premium{justify-content:center;}
.hero__meta{display:flex; justify-content:center;}
.hero__chips{display:flex; flex-wrap:wrap; gap:8px; margin: 6px 0 8px; justify-content:center;}
.hero-chip{display:inline-flex; align-items:center; padding: 7px 10px; border-radius: 999px; font-weight: 600; font-size: .85rem; color: rgba(18,29,56,.95); background: rgba(255,255,255,.78); border: 1px solid rgba(70,111,182,.22); box-shadow: 0 10px 24px rgba(2,6,23,.10); backdrop-filter: blur(8px);}
.hero-chip--orange{border-color: rgba(242,104,33,.26);}

/* Mini cards (16+ anos / alcance / segurança) integrados ao HERO */
.hero__stats--premium{margin: 0 0 8px; justify-items:center;}
.heroStat{display:flex; align-items:center; gap: 10px; padding: 8px 10px; border-radius: 18px; background: rgba(255,255,255,.86); border: 1px solid rgba(11,18,38,.12); box-shadow: 0 14px 34px rgba(2,6,23,.10); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);} 
.hero__stats--premium .heroStat{max-width: 190px; width:100%;}
.heroStat:hover{transform: translateY(-3px); box-shadow: 0 22px 56px rgba(2,6,23,.16); border-color: rgba(70,111,182,.26);} 
.heroStat__icon{width: 38px; height: 38px; border-radius: 14px; display:grid; place-items:center; background: rgba(70,111,182,.12); border: 1px solid rgba(70,111,182,.18);} 
.heroStat--orange .heroStat__icon{background: rgba(242,104,33,.12); border-color: rgba(242,104,33,.20);} 
.heroStat__icon svg{width: 22px; height: 22px; fill: rgba(18,29,56,.92);} 
.heroStat__title{font-weight: 600; letter-spacing: -.01em; color: rgba(18,29,56,.98); line-height: 1.1;}
.heroStat__desc{margin-top: 2px; font-size: .88rem; color: rgba(18,29,56,.72);} 
.hero__meta{margin-top: 6px;}
.hero__metaLink{display:inline-flex; align-items:center; gap:8px; font-weight:600; color: rgba(255,255,255,.92); text-decoration:none;}
.hero__metaLink:hover{color:#fff; text-decoration: underline;}

/* Premium HERO — responsividade (sem alterar a altura do HERO):
   - card 100% no mobile
   - tipografia mais confortável
   - chips/CTAs alinhados e com quebra bonita */
@media (max-width: 768px){
  .hero__wrap--premium{justify-content:center; padding: 0 14px;}
  .hero__panel--premium{width: 100%;}
  .hero__panel--premium .h1{font-size: clamp(1.7rem, 7vw, 2.15rem); line-height: 1.10;}
  .hero__chips{justify-content:flex-start;}
  .hero__cta--premium{justify-content:flex-start;}
}

.home-proof{padding: 18px 0 6px;}
.home-proof__grid{display:grid; gap: 14px; grid-template-columns: repeat(3, minmax(0,1fr));}
@media (max-width: 920px){ .home-proof__grid{grid-template-columns: 1fr; } }
.proof-card{display:flex; align-items:center; gap:12px; padding: 16px 16px; border-radius: 18px; background: rgba(255,255,255,.92); border: 1px solid rgba(11,18,38,.10); box-shadow: 0 14px 34px rgba(2,6,23,.10); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);}
.proof-card:hover{transform: translateY(-4px); box-shadow: 0 20px 54px rgba(2,6,23,.16); border-color: rgba(70,111,182,.28);}
.proof-card__icon{width: 42px; height: 42px; border-radius: 14px; display:grid; place-items:center; background: rgba(70,111,182,.12); border: 1px solid rgba(70,111,182,.18);}
.home-proof__grid .proof-card:nth-child(2) .proof-card__icon{background: rgba(242,104,33,.12); border-color: rgba(242,104,33,.18);}
.home-proof__grid .proof-card:nth-child(3) .proof-card__icon{background: rgba(18,29,56,.10); border-color: rgba(18,29,56,.16);}
.proof-card__icon svg{width: 22px; height: 22px; fill: rgba(18,29,56,.92);}
.proof-card__title{font-weight: 600; letter-spacing: -.01em; color: rgba(18,29,56,.98); line-height: 1.05;}
.proof-card__desc{margin-top: 2px; font-size: .92rem; color: rgba(18,29,56,.70);}

.home-why{padding: 18px 0 44px;}
.home-why__head{max-width: 720px;}
.home-why__grid{display:grid; gap: 14px; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 14px;}
@media (max-width: 920px){ .home-why__grid{grid-template-columns: 1fr; } }
.why-card{padding: 22px 22px; border-radius: 22px; background: rgba(255,255,255,.92); border: 1px solid rgba(11,18,38,.10); box-shadow: 0 18px 44px rgba(2,6,23,.10); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); position: relative; overflow:hidden;}
.why-card::after{
  content:"";
  position:absolute;
  left: 18px; right: 18px; top: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(70,111,182,.75), rgba(70,111,182,.10));
  opacity: .0;
  transition: opacity .2s var(--ease);
}
.home-why__grid .why-card:nth-child(2)::after{background: linear-gradient(90deg, rgba(242,104,33,.82), rgba(242,104,33,.12));}
.why-card:hover{transform: translateY(-6px); box-shadow: 0 26px 72px rgba(2,6,23,.16); border-color: rgba(18,29,56,.18);} 
.why-card:hover::after{opacity: 1;}
.why-card__top{display:flex; align-items:center; gap: 12px; margin-bottom: 6px;}
.why-card__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(70,111,182,.12);
  border: 1px solid rgba(70,111,182,.20);
} 
.why-card__icon--orange{background: rgba(242,104,33,.12); border-color: rgba(242,104,33,.20);} 
.why-card__icon svg{width: 22px; height: 22px; fill: rgba(18,29,56,.92); display:block;}
.why-card h3{margin:0; font-size: 1.02rem;}
.why-card p{margin: 10px 0 0; color: rgba(18,29,56,.72); line-height: 1.55;}
.list{margin: 14px 0 0; padding:0; list-style:none; display:grid; gap: 10px}
.li{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px 12px;
  border:1px solid rgba(245,247,255,.12);
  background: rgba(255,255,255,.86);
  border-radius: 16px;
}
.dot{
  width:10px; height:10px; border-radius:999px; margin-top: 5px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(70,111,182,.14);
}

.feature{
  padding: 18px;
  border-radius: var(--radius2);
  border:1px solid rgba(245,247,255,.12);
  background: rgba(255,255,255,.86);
}
.feature h4{margin:0; font-size:1.05rem}
.feature p{margin:.65rem 0 0; color: var(--muted); line-height:1.6}

.sep{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(245,247,255,.16), transparent);
  margin: 20px 0;
}

.footer{
  border-top: 1px solid rgba(245,247,255,.12);
  padding: 26px 0;
  color: rgba(245,247,255,.72);
}
.footer__grid{
  display:grid; gap: 18px;
  grid-template-columns: 1.4fr .8fr .8fr;
  align-items:start;
}
@media (max-width: 920px){ .footer__grid{grid-template-columns:1fr} }
.small{font-size:.92rem; line-height:1.6; color: rgba(245,247,255,.70)}
.footer a{color: rgba(245,247,255,.78)}
.footer a:hover{color:#fff}
.chip{
  display:inline-flex; align-items:center; gap:.55rem;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(245,247,255,.14);
  background: rgba(255,255,255,.86);
}
.form{
  display:grid; gap: 12px;
}
.form > div{display:grid; gap: 6px;}

/* Field validation (minimal, premium) */
.field{position: relative;}
.field__error{
  margin: 2px 0 0;
  font-size: .84rem;
  line-height: 1.35;
  color: rgba(185, 28, 28, .92);
  min-height: 1.1em; /* keeps layout stable */
}
.input.is-invalid, .textarea.is-invalid{
  border-color: rgba(185, 28, 28, .45) !important;
  box-shadow: 0 0 0 4px rgba(185, 28, 28, .10), 0 14px 34px rgba(2,6,23,.08) !important;
}
.input.is-valid, .textarea.is-valid{
  border-color: rgba(22, 163, 74, .35) !important;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .10), 0 14px 34px rgba(2,6,23,.08) !important;
}
.input, .textarea{
  width:100%;
  padding: 13px 14px;
  border-radius: 16px;
  border:1px solid rgba(11,18,38,.12);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline: none;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.textarea{min-height: 140px; resize: vertical}

/* Remove orange focus glow (keep a subtle, premium focus state) */
.input:focus, .textarea:focus,
.input:focus-visible, .textarea:focus-visible{
  border-color: rgba(70,111,182,.38);
  box-shadow: 0 0 0 4px rgba(70,111,182,.12), 0 14px 34px rgba(2,6,23,.08);
  background: rgba(255,255,255,.98);
}

/* Consistent label style on light cards */
.help{font-size:.86rem; font-weight:600; color: rgba(11,18,38,.75)}

/* Prevent browser autofill yellow from breaking the premium look */
input.input:-webkit-autofill,
input.input:-webkit-autofill:hover,
input.input:-webkit-autofill:focus,
textarea.textarea:-webkit-autofill,
textarea.textarea:-webkit-autofill:hover,
textarea.textarea:-webkit-autofill:focus{
  -webkit-text-fill-color: #0B1226;
  box-shadow: 0 0 0px 1000px rgba(255,255,255,.98) inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

@media (max-width: 560px){
  .form{gap: 10px;}
  .input, .textarea{border-radius: 14px; padding: 12px 12px;}
  .form .btn{width:100%; justify-content:center;}
}

/* Better spacing & tap targets on mobile */
@media (max-width: 520px){
  .form{gap: 10px;}
  .input, .textarea{padding: 14px 14px; border-radius: 16px;}
  .form .btn{width:100%; justify-content:center;}
}

.toast{
  position: fixed; bottom: 18px; right: 18px;
  max-width: 380px;
  padding: 14px 14px;
  border-radius: 18px;
  border:1px solid rgba(245,247,255,.14);
  background: rgba(9,14,32,.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(12px);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.toast.show{opacity:1; transform: translateY(0)}

/* === V6 Light & Minimal (inspired by Axia / Taesa / Solastra) === */
:root{
  --bg:#F6F8FF;
  --bg2:#FFFFFF;
  --text:#0B1226;
  --muted: rgba(11,18,38,.70);
  --stroke: rgba(11,18,38,.10);
  --surface:#FFFFFF;
  --surface2:#FFFFFF;
  --shadow: 0 14px 40px rgba(11,18,38,.10);
}

body{
  color: var(--text);
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(70,111,182,.18), transparent 62%),
    radial-gradient(820px 440px at 85% -8%, rgba(242,104,33,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), #FFFFFF 70%);
}

/* Topbar smaller & cleaner */
.topbar{
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
}
.nav{padding: 10px 0}
.brand__mark{display:none !important;}
.brand__name{font-weight:600; color: var(--navy)}
.brand__sub{color: rgba(11,18,38,.62)}

/* Logo image in header */
.brand__logo{
  height: 34px;
  width: auto;
  display:block;
}
@media (max-width: 520px){
  .brand__logo{height: 30px}
}

/* Menu lighter */
.menu a{
  color: rgba(11,18,38,.80);
}
.menu a:hover{
  background: rgba(70,111,182,.08);
}
.menu a[aria-current="page"]{
  background: rgba(70,111,182,.10);
  border: 1px solid rgba(70,111,182,.18);
  color: var(--text);
}

/* Buttons */
.btn{
  color: var(--text);
  background: rgba(11,18,38,.04);
  border: 1px solid rgba(11,18,38,.10);
}
.btn:hover{background: rgba(11,18,38,.06)}
.btn--primary{
  color:#fff;
  background: linear-gradient(135deg, rgba(242,104,33,1), rgba(242,104,33,.86));
  border-color: rgba(242,104,33,.35);
  box-shadow: 0 14px 34px rgba(242,104,33,.20);
}
.btn--ghost{background: transparent}

/* Cards and sections */
.card, .feature, .li, .stat{
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(11,18,38,.10) !important;
  box-shadow: 0 14px 40px rgba(11,18,38,.10) !important;
  backdrop-filter: blur(10px);
}
.p, .small, .help{color: rgba(11,18,38,.70) !important;}

.sep{
  background: linear-gradient(90deg, transparent, rgba(11,18,38,.14), transparent);
}

/* Footer lighter */
.footer{
  background: #FFFFFF;
  border-top: 1px solid rgba(11,18,38,.10);
  color: rgba(11,18,38,.70);
}
.footer a{color: rgba(11,18,38,.72)}
.footer a:hover{color: rgba(11,18,38,.92)}

/* Hero panel: less heavy, more whitespace */
.hero{
  padding: clamp(44px, 6vw, 74px) 0 18px;
}
.hero__panel{
  background: rgba(255,255,255,.86);
  border:1px solid rgba(11,18,38,.10);
  box-shadow: 0 18px 50px rgba(11,18,38,.10);
  backdrop-filter: blur(18px);
}
.badge{
  background: rgba(70,111,182,.08);
  border: 1px solid rgba(70,111,182,.14);
  color: rgba(11,18,38,.78);
}
.badge i{
  box-shadow: 0 0 0 6px rgba(242,104,33,.14);
}

/* Page transition */
html.is-entering body{opacity:0; transform: translateY(6px)}
body{
  transition: opacity .22s cubic-bezier(.2,.8,.2,1), transform .22s cubic-bezier(.2,.8,.2,1);
}
body.is-exiting{opacity:0; transform: translateY(6px)}

/* Make headings slightly tighter */
.h1,.h2{color: var(--navy)}
/* Footer logo sizing */
.footer .brand__logo{height:40px}

/* === V7 Typography Minimal === */
:root{
  /* Fonte oficial (integrada em assets/fonts) */
  --font: "Alan Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", "Noto Sans", sans-serif;
}
body{font-family: var(--font); letter-spacing: -0.01em}
.h1{
  font-weight: 600; /* SemiBold (mais leve que Black/ExtraBold) */
  letter-spacing: -0.03em;
  font-size: clamp(1.53rem, 2.7vw, 2.115rem);
  line-height: 1.08;
}
.h2{
  /* títulos menos “pesados” para aparência mais premium */
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.16vw, 1.89rem);
  line-height: 1.15;
}
.p{font-size: 1.0rem}
.kicker{font-weight: 600; letter-spacing: .12em; font-size: .76rem}
.small{font-size: .90rem}
.menu a{font-weight: 600; font-size: .95rem}
.btn{font-weight: 600}

/* === V7 Header Minimal === */
.nav{padding: 8px 0}
.brand__sub{display:none !important;}
.nav__right{gap:10px}
.menu{gap:10px}
.menu a{padding: 8px 10px; border-radius: 10px}
.btn{padding: 10px 12px; border-radius: 12px}
/* Hide secondary header button on small widths */
@media (max-width: 920px){
  .nav__right .btn.btn--ghost{display:none}
}

/* === V9 Menu underline minimal === */
.menu a{
  background: transparent !important;
  position: relative;
}
.menu a::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: transparent;
  transition: background .18s ease, transform .18s ease;
  transform: scaleX(0);
}
.menu a:hover::after{
  background: rgba(70,111,182,.35);
  transform: scaleX(1);
}
.menu a[aria-current="page"]::after{
  background: rgba(242,104,33,.85);
  transform: scaleX(1);
}

/* === V10 Header on scroll === */
.topbar{transition: background .18s ease, box-shadow .18s ease, border-color .18s ease}
.topbar.topbar--scrolled{
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 30px rgba(11,18,38,.08);
  border-bottom-color: rgba(11,18,38,.12);
}
/* Slightly stronger underline when scrolled (institutional feel) */
.topbar.topbar--scrolled .menu a::after{
  height: 2px;
  opacity: .95;
}

/* === V11 Page Intro (no hero) === */
.page-intro{padding: 34px 0 10px}
.page-intro__inner{
  border: 1px solid rgba(11,18,38,.08);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 18px 18px;
}
.page-intro__title{
  margin: 0;
  font-weight: 600; /* SemiBold */
  letter-spacing: -0.04em;
  font-size: clamp(1.44rem, 2.34vw, 2.07rem);
  line-height: 1.12;
}
.page-intro__sub{
  margin: 10px 0 0;
  color: rgba(11,18,38,.70);
  max-width: 70ch;
}
.page-intro .cta{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 520px){
  .page-intro{padding-top: 22px}
  .page-intro__inner{padding: 16px}
}

/* === Page intro backgrounds (subtle, premium) === */
.page-intro--tower,
.page-intro--about08{position:relative; overflow:hidden}

.page-intro--tower::before,
.page-intro--about08::before{
  content:"";
  position:absolute;
  inset:-30px;
  background-size:cover;
  background-repeat:no-repeat;
  filter: grayscale(100%) blur(2px);
  mix-blend-mode:multiply;
  z-index:0;
}

.page-intro--tower::before{
  background-image:url("../img/torre-sutil.jpg");
  background-position:72% 88%;
  opacity:.10;
}

.page-intro--about08::before{
  background-image:url("../img/about-bg-08.jpg");
  background-position:50% 55%;
  opacity:.12;
}

.page-intro--tower::after,
.page-intro--about08::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(248,250,252,.90), rgba(248,250,252,.96));
  z-index:1;
}

.page-intro--tower .page-intro__inner,
.page-intro--about08 .page-intro__inner{position:relative; z-index:2}

@media (max-width: 768px){
  .page-intro--tower::before{opacity:.06; background-position:center 92%}
  .page-intro--about08::before{opacity:.08; background-position:center 62%}
}


/* === V14 Footer (refined, institutional) === */
.footer{
  background: linear-gradient(180deg, #FFFFFF, rgba(246,248,255,.70));
  border-top:1px solid rgba(11,18,38,.08);
  padding:42px 0 0;
  margin-top:64px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap:36px;
  padding-bottom:22px;
}
.footer__logo{height:40px; width:auto; max-width:240px; object-fit:contain}
.footer__desc{
  margin-top:12px;
  max-width: 46ch;
  color: rgba(11,18,38,.62);
  font-size: .95rem;
  line-height: 1.6;
}

.footer__col h4{
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin: 6px 0 14px;
  color: rgba(11,18,38,.72);
}
.footer__col ul{list-style:none; padding:0; margin:0}
.footer__col li{margin-bottom:10px}
.footer__col a{
  color: rgba(11,18,38,.78);
  font-size:.95rem;
  text-decoration:none;
}
.footer__col a:hover{color: rgba(11,18,38,.98)}

/* LinkedIn as minimal icon-row */
.icon-link{
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.icon-link svg{opacity:.85}
.icon-link span{
  font-size:.95rem;
}

/* Bottom bar */
.footer__bottom{
  border-top:1px solid rgba(11,18,38,.08);
  padding: 14px 0;
}
.footer__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color: rgba(11,18,38,.55);
  font-size: .85rem;
}


@media (max-width: 980px){
  .footer__grid{grid-template-columns: 1fr; gap:22px}
  .footer__desc{max-width: 70ch}
  .footer__bottom-inner{flex-wrap:wrap; row-gap:6px}
}

/* === V17 Footer brand typography === */
.footer__brand{display:flex; flex-direction:column; gap:10px}
.footer__kicker{
  margin:0;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(11,18,38,.60);
}
.footer__desc{
  margin:0;
  font-size:.95rem;
  line-height:1.65;
  color: rgba(11,18,38,.70);
  max-width: 40ch;
}


/* === V21 Global layout fixes === */
*{
  box-sizing:border-box;
}
img{
  max-width:100%;
  height:auto;
}
.container{
  width:100%;
  max-width:1200px;
  margin-inline:auto;
  padding-inline:24px;
}
section{
  overflow:hidden;
}

/* Clients top 6 */
.clients__grid--top{
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:36px;
  padding:24px;
}
.clients__cta{
  margin-top:22px;
}
.link-more{
  font-size:.95rem;
  color:#0B1226;
  border-bottom:1px solid rgba(11,18,38,.25);
  padding-bottom:2px;
}
.link-more:hover{
  border-color:#0B1226;
}

/* === V21 Principais Clientes (top 6 + ver todos) === */
.clients{
  padding:72px 0 64px;
  background:#fff;
  border-top: 1px solid rgba(11,18,38,.06);
}
.clients__header{max-width: 760px; margin-bottom: 22px;}
.clients__kicker{
  font-size:.75rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(11,18,38,.55);
}
.clients__title{
  margin-top:6px;
  font-size:1.85rem;
  font-weight:650;
  color:#0B1226;
  letter-spacing:-0.02em;
}
.clients__lead{
  margin:10px 0 0;
  color: rgba(11,18,38,.62);
  max-width: 72ch;
  line-height: 1.65;
  font-size: .98rem;
}

.clients__top{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap;}
.clients__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 26px 34px;
  align-items:center;
  padding: 16px 18px;
  border: 1px solid rgba(11,18,38,.06);
  border-radius: 16px;
  background: rgba(246,248,255,.50);
  flex: 1 1 720px;
}
.clients__grid img{
  max-height: 52px;
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: auto;
  filter:none;
opacity: 1;
  transition:opacity .2s ease, filter .2s ease, transform .2s ease;
}
.clients__grid img:hover{ filter:none; opacity:1; transform: translateY(-1px); }

.clients__toggle{
  appearance:none;
  border:1px solid rgba(11,18,38,.12);
  background:#fff;
  color: rgba(11,18,38,.82);
  border-radius:999px;
  padding:10px 14px;
  font-weight:600;
  font-size:.92rem;
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.clients__toggle:hover{
  background: rgba(70,111,182,.06);
  border-color: rgba(70,111,182,.22);
  transform: translateY(-1px);
}

.clients__all{margin-top: 22px;}
.clients__block{margin-top: 18px;}
.clients__sub{
  margin: 0 0 12px;
  font-size: .82rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(11,18,38,.70);
}
.clients__grid--partners{
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: start;
}

@media (max-width: 720px){
  .clients{padding:56px 0}
  .clients__grid{gap: 18px 18px; padding: 14px}
  .clients__toggle{width:100%}
}

/* === V22 global media guard === */
main img, .section img, .container img{
  max-width: 100%;
  height: auto;
}

/* === V23 header/footer logo sizing === */
.header img, .nav img{max-width:100%; height:auto}
.nav__logo, .header__logo, .brand__logo, .site-logo{
  display:block;
  max-height:38px;
  width:auto;
}
@media (max-width: 720px){
  .nav__logo, .header__logo, .brand__logo, .site-logo{max-height:34px}
}
.footer__logo{
  display:block;
  max-height:44px;
  width:auto;
}
@media (max-width: 720px){
  .footer__logo{max-height:40px}
}

/* === V23 clients logos color + consistent sizing === */
.clients__grid img{
  filter:none;
  opacity:1;
  max-height:48px;
  max-width:170px;
  width:100%;
  height:auto;
  object-fit:contain;
}
.clients__grid--all img{max-height:44px; max-width:160px}
.clients__grid--partners img{max-height:44px; max-width:180px}


/* === V24 footer logo refined === */
.footer__logo{
  max-height:36px !important;
  width:auto;
}


/* === V24 uniform client logos === */
.clients__grid img,
.clients__grid--all img,
.clients__grid--partners img{
  max-height:40px;
  max-width:150px;
  width:150px;
  height:40px;
  object-fit:contain;
}

/* === V25 footer logo smaller (institutional) === */
.footer__logo{
  max-height:28px !important;
  width:auto;
}
@media (max-width:720px){
  .footer__logo{max-height:24px !important;}
}

/* === V25 clients logo sizing (PPT-style) === */
.clients__grid img,
.clients__grid--all img,
.clients__grid--partners img{
  width:auto !important;
  height:52px !important;
  max-width:200px !important;
  max-height:none !important;
  object-fit:contain !important;
  margin:auto !important;
}
@media (max-width:720px){
  .clients__grid img,
  .clients__grid--all img,
  .clients__grid--partners img{
    height:44px !important;
    max-width:180px !important;
  }
}
/* soften background box a bit for better contrast like PPT */
.clients__grid{
  background:#ffffff !important;
}

/* === V25 clients spacing refinement === */
.clients__grid{
  padding:18px 20px !important;
  gap:22px 34px !important;
}
@media (max-width:720px){
  .clients__grid{padding:16px 16px !important; gap:18px 18px !important;}
}

/* ===== FIX REAL V26 ===== */

/* Footer logo – force small */
footer img,
.footer img,
.footer-logo img {
  max-height: 32px !important;
  width: auto !important;
}

/* Header logo – prevent overflow */
header img,
.header img {
  max-height: 48px !important;
  width: auto !important;
}

/* Clients logos – uniform like PPT */
.clients img,
.clients-section img,
.client-logo img {
  height: 52px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
}

/* Spacing */
.clients,
.clients-section {
  gap: 24px !important;
}


/* === FINAL OVERRIDES (v28) === */
/* Use original high-res logo; scale down via CSS for maximum quality */
.brand__logo{
  height:40px;
  width:auto;
  max-width:220px;
  object-fit:contain;
}
.footer__logo{
  height:26px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  opacity:.95;
}
@media (max-width: 768px){
  .brand__logo{height:36px; max-width:200px;}
  .footer__logo{height:24px; max-width:160px;}
}
/* Client carousel (marquee) */
.clients-marquee{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 16px;
  background: #fff;
  padding: 18px 24px;
}
.clients-marquee::before,
.clients-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:64px;
  pointer-events:none;
  z-index:2;
}
.clients-marquee::before{
  left:0;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}
.clients-marquee::after{
  right:0;
  background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}
.marquee-track{
  /* inline-flex improves cross-browser marquee animation stability (desktop) */
  display:inline-flex;
  gap: 42px;
  align-items:center;
  flex-wrap: nowrap;
  width: max-content;
  padding-left: 28px;
  /* Mais lento para leitura confortável */
  animation: marquee-scroll 70s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.marquee-item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width: 150px;
  padding: 6px 10px;
}
.marquee-item img{
  height: 54px;
  width:auto;
  max-width: 170px;
  object-fit: contain;
  filter: none;
}
@media (max-width: 768px){
  .marquee-track{gap:32px; animation-duration: 60s;}
  .marquee-item{min-width: 130px;}
  .marquee-item img{height:46px; max-width:150px;}
}
@keyframes marquee-scroll{
  from{transform: translate3d(0,0,0);}
  to{transform: translate3d(-50%,0,0);}
}
@media (prefers-reduced-motion: reduce){
  /* Keep motion subtle instead of disabling completely to avoid "frozen" effect on desktop */
  .marquee-track{animation-duration: 140s;}
}

/* Footer alignment (v28.1) */
.footer__brand{align-items:flex-start}
.footer__kicker{letter-spacing:.14em; text-transform:uppercase; font-size:.78rem; color:rgba(11,18,38,.65)}
.footer__desc{max-width:34ch}


/* === FINAL OVERRIDES (v30) === */
.hero{position:relative; overflow:hidden;}
.hero-bg{
  position:absolute; inset:-1px;
  z-index:0; pointer-events:none;
  transition: opacity .35s ease;
}
.hero-bg.is-fading{opacity:.55;}
.hero-bg__video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: saturate(1.1) contrast(1.07);
  opacity:.34;
}
.hero-bg__video{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  transition: opacity 3s ease-in-out;
  opacity: 1;
  filter: saturate(1.08) contrast(1.05);
  /* Reframe the video so the transmission tower stays visible */
  /*
    NOTE:
    - O vídeo está em object-fit: cover (recorta as bordas para preencher).
    - Para deixar a torre mais evidente, deslocamos o enquadramento para a
      esquerda e um pouco para cima.
  */
  object-position: 8% 22%;
  /* Keep near-1:1 scale to reduce cropping on shorter hero heights */
  transform: scale(1.0);
}
.hero-bg__video.is-hidden{opacity:0}
.hero-bg__video.fade-out{opacity:0}

@media (min-aspect-ratio: 21/9){
  /* Em ultrawide, dá para subir um pouco e manter a torre sempre no quadro */
  .hero-bg__video{object-position: 10% 18%;}
}

@media (max-width: 640px){
  /* On narrow screens, keep framing centered to avoid over-cropping */
  .hero-bg__video{object-position: 50% 35%;}
}

.hero-bg__overlay{
  position:absolute; inset:0;
  /* Scrim mais leve para deixar o vídeo (torre) aparecer */
  background:
    radial-gradient(900px 420px at 22% 30%, rgba(11,18,38,.25), transparent 60%),
    linear-gradient(180deg, rgba(11,18,38,.18) 0%, rgba(11,18,38,.08) 48%, rgba(245,247,255,.94) 100%);
}
.hero > .container{position:relative; z-index:1;}
/* stats: more centered + premium */
.hero__stats{
  display:flex!important;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.stat{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,24,40,.08);
  backdrop-filter: blur(10px);
  min-width: 220px;
  max-width: 260px;
}
.stat__icon{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(70,111,182,.10);
  border: 1px solid rgba(70,111,182,.18);
}
.stat__icon svg{width:18px; height:18px; fill: rgba(18,29,56,.92);}
.stat__n{font-size:1.05rem; font-weight:600; letter-spacing:-.01em; line-height:1.1}
.stat__l{font-size:.82rem; color: rgba(18,29,56,.70); margin-top:2px}
@media (max-width: 640px){
  .stat{min-width: 100%; max-width: 100%;}
}


/* footer logo refine (v30) */
.footer__logo{height:52px; max-width:260px;}
.footer__desc{font-size:.92rem; margin-top:8px;}



/* ===== Pillars (premium) ===== */
.section--pillars{
  position: relative;
  background: radial-gradient(1200px 400px at 10% 0%, rgba(70,111,182,.10), transparent 55%),
              radial-gradient(900px 360px at 90% 10%, rgba(242,104,33,.08), transparent 50%);
}

/* === HERO CARD FIT FIX (vFinal) ===
   Mantém o painel 100% dentro do HERO (hero--static) sem alterar a altura do HERO.
   Ajuste SUAVE: reduz apenas o necessário para mostrar borda superior/inferior sem cortar conteúdo.
*/
.hero--static .hero__panel--premium{
  width: min(600px, 100%);
  padding: 16px 20px 14px;
  margin: 14px 0;
  max-height: calc(100% - 28px);
  border-radius: 26px;
  overflow: visible;
}

.hero--static .hero__panel--premium .badge{margin-bottom: 12px;}
.hero--static .hero__panel--premium .h1{
  font-size: clamp(2.05rem, 3.15vw, 2.95rem);
  line-height: 1.08;
  font-weight: 600; /* Alan Sans SemiBold */
  letter-spacing: -.02em;
  margin: 10px 0 10px;
}
.hero--static .hero__panel--premium .p{
  margin: 0 0 12px;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(18,29,56,.76);
}
.hero--static .hero__panel--premium .hero__pills{gap: 10px; margin: 10px 0 10px;}
.hero--static .hero__panel--premium .hero__facts{margin-top: 10px;}
.hero--static .hero__panel--premium .hero__actions{margin-top: 12px;}
.hero--static .hero__panel--premium .hero__download{margin-top: 8px;}

/* Mobile: painel full-width e tipografia controlada */
@media (max-width: 768px){
  .hero--static .hero__panel--premium{width: 100%; padding: 18px 16px 16px;}
  .hero--static .hero__panel--premium .h1{font-size: clamp(1.65rem, 6.2vw, 2.05rem);}
  .hero--static .hero__stats--premium{grid-template-columns: 1fr;}
  .hero--static .hero__stats--premium .heroStat:nth-child(3){grid-column:auto; max-width:none;}
}
.pillars-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}
.pillar-card{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px 18px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-height: 128px;
}

/* Alternating accent tones on home "Pilares" cards */
.pillars-grid .pillar-card:nth-child(odd){
  background: var(--solid-blue);
  border-color: var(--border-blue);
  box-shadow: 0 16px 46px rgba(18,29,56,.14), 0 0 0 1px rgba(70,111,182,.20) inset;
}
.pillars-grid .pillar-card:nth-child(even){
  background: var(--solid-orange);
  border-color: var(--border-orange);
  box-shadow: 0 16px 46px rgba(18,29,56,.14), 0 0 0 1px rgba(242,104,33,.20) inset;
}
.pillars-grid .pillar-card{color:#fff;}
.pillars-grid .pillar-body p{color: rgba(255,255,255,.86);}
.pillars-grid .pillar-icon{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}
.pillars-grid .pillar-icon svg{fill:#fff; opacity:.92;}
.pillar-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
.pillars-grid .pillar-card:nth-child(odd):hover{border-color: var(--border-blue);}
.pillars-grid .pillar-card:nth-child(even):hover{border-color: var(--border-orange);}
.pillar-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(70,111,182,.12), rgba(70,111,182,.06));
  border: 1px solid rgba(70,111,182,.18);
  flex: 0 0 auto;
}
.pillar-icon svg{
  width: 22px;
  height: 22px;
  fill: var(--navy);
  opacity: .92;
}
.pillar-body h4{
  margin: 2px 0 6px;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.pillar-body p{
  margin: 0;
  color: rgba(15,23,42,.72);
  font-size: .98rem;
  line-height: 1.55;
}

.pillars-split{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 22px;
}
.mv-card{
  padding: 20px 20px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 46px rgba(15,23,42,.06);
}

/* Mission / Vision cards (home) */
.pillars-split .mv-card:nth-child(1){
  background: var(--solid-orange);
  border-color: var(--border-orange);
  box-shadow: 0 16px 46px rgba(18,29,56,.14), 0 0 0 1px rgba(242,104,33,.20) inset;
  color:#fff;
}
.pillars-split .mv-card:nth-child(2){
  background: var(--solid-blue);
  border-color: var(--border-blue);
  box-shadow: 0 16px 46px rgba(18,29,56,.14), 0 0 0 1px rgba(70,111,182,.20) inset;
  color:#fff;
}
.pillars-split .mv-kicker{color: rgba(255,255,255,.78);} 
.pillars-split .mv-copy{color: rgba(255,255,255,.86);} 
.pillars-split .mv-icon{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}
.pillars-split .mv-icon svg{fill:#fff; opacity:.92;}
.mv-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.mv-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(242,104,33,.12), rgba(242,104,33,.06));
  border: 1px solid rgba(242,104,33,.18);
}
.mv-icon svg{
  width: 22px;
  height: 22px;
  fill: var(--navy);
  opacity: .92;
}
.mv-kicker{
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(15,23,42,.55);
}
.mv-text{
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.01em;
  color: var(--navy);
}

@media (max-width: 980px){
  .pillars-grid{ grid-template-columns: 1fr; }
  .pillars-split{ grid-template-columns: 1fr; }
  .pillar-card{ min-height: auto; }
}



/* === v32 institutional refinements === */
.hero-bg{position:relative;overflow:hidden}
.hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(0.95) contrast(1.02);
  transform:scale(1.02);
}
.hero-bg:before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(18,29,56,.35), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(248,250,252,.94));
  z-index:1;
}
.hero-bg > *{position:relative;z-index:2}

.hero h1{letter-spacing:-0.02em}
.hero p{max-width:56ch}

.nav a{font-weight:500}
.nav a.active, .nav a:hover{
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:10px;
  text-decoration-color:rgba(242,104,33,.55);
}
.nav a{ text-decoration:none }

.logo img{max-height:44px;width:auto;height:auto;image-rendering:auto}
.footer-brand img{max-height:40px;width:auto;height:auto}

.clients .container{padding-left:24px;padding-right:24px}
.marquee{
  overflow:hidden;
  border-radius:20px;
}
.marquee__track{
  padding-inline:12px;
}
.marquee__item{padding:18px 22px}
.marquee__item img{
  height:44px;
  width:auto;
  max-width:160px;
  object-fit:contain;
}
@media (max-width: 820px){
  .marquee__item img{height:34px;max-width:140px}
}

.stats{gap:14px}
.stat{
  text-align:center;
  padding:14px 14px;
}
.stat strong{font-size:18px;font-weight:600}
.stat span{font-size:13px;color:rgba(17,24,39,.70);display:block;margin-top:2px}

.mv-copy{
  margin:0;
  font-weight:500;
  font-size:15px;
  line-height:1.45;
  color:rgba(17,24,39,.82);
}
.mv-top .mv-label{
  font-weight:600;
  letter-spacing:.12em;
}


/* --- Institutional tweaks (v33) --- */
.nav__right .btn.btn--ghost{
  min-width: 240px;
  justify-content: center;
  text-align: center;
  padding-left: 18px;
  padding-right: 18px;
}

/* Ensure header/brand logos never estouram */
.brand__logo, .footer__brand img{
  max-height: 44px;
  width: auto;
  height: auto;
}

/* Footer logo sizing/alignment */
.footer__brand img{
  max-height: 72px;
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.footer__brand{gap:12px;}

@media (max-width: 720px){
  .nav__right .btn.btn--ghost{min-width: unset;}
}

/* Coverage map layout */
.coverage__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:center;
}
.coverage__map{
  width:100%;
  height:auto;
  border-radius: 18px;
  background: #f5f7fb;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 30px rgba(2,8,23,.08);
}
.coverage__chips{ margin-top: 14px; display:flex; flex-wrap:wrap; gap:10px; }

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

/* Mobile performance & spacing polish */
@media (max-width: 768px){
  html{ scroll-behavior: auto; }
  /* Evita custo alto de renderização em celulares */
  .topbar, .card, .badge, .panel{backdrop-filter:none !important; -webkit-backdrop-filter:none !important;}
  .card, .panel{box-shadow: 0 10px 22px rgba(18,29,56,.10) !important;}
  .section{padding: 28px 0;}
  .grid{gap: 14px;}
  .btn{min-height: 44px;}
}

/* Premium coverage band (Quem somos) */
.coverage-band{
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 20px 60px rgba(15,23,42,.10);
  position: relative;
  overflow: hidden;
}
.coverage-band::before{
  content:"";
  position:absolute; inset:-40% -20% auto -20%;
  height: 220px;
  background: radial-gradient(closest-side, rgba(33,98,185,.10), transparent 70%);
  pointer-events:none;
}
.coverage-band__grid{
  display:grid;
  /* Text + states (left) | Map (right) */
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
  position: relative;
}
.coverage-band__kicker{
  margin:0;
}
.coverage-band__title{
  margin:.4rem 0 .65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: clamp(1.395rem, 1.98vw, 1.845rem);
  color: var(--navy);
}
.coverage-band__text{
  margin:0 0 1.05rem;
  color: rgba(17,24,39,.72);
  max-width: 60ch;
}
.coverage-band__states{
  display:grid;
  /* 2 columns keeps labels readable and looks more institutional */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}
.state-tile{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(248,250,252,.9);
  padding: 10px 12px;
  display:flex;
  align-items:center;
  gap:10px;
}
.coverage-band__state .pin{
  width: 30px; height: 30px;
  display:grid; place-items:center;
  border-radius: 10px;
  background: rgba(245,115,48,.12);
  color: var(--orange);
  flex: 0 0 auto;
}
.coverage-band__state strong{display:block; font-size:.95rem; color: var(--navy);}
.coverage-band__state span{display:block; font-size:.78rem; color: rgba(17,24,39,.55); margin-top:1px;}
.coverage-band__note{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(248,250,252,.85);
  color: rgba(17,24,39,.68);
}
.coverage-band__mapwrap{
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(180deg, rgba(248,250,252,.95), rgba(255,255,255,.92));
}
.coverage-band__map{
  /* Sized for side-by-side layout (map on the right). */
  width: 100%;
  max-width: 520px;
  height: auto;
  display:block;
  border-radius: 18px;
  margin: 0 auto;
}
@media (max-width: 980px){
  .coverage-band{ padding: 24px; border-radius: 22px; }
  .coverage-band__grid{ grid-template-columns: 1fr; }
  .coverage-band__states{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .coverage-band__mapwrap{ padding: 12px; border-radius: 20px; }
  .coverage-band__map{ width: 100%; max-width: none; }
}

/* Nav CTA text fit on mobile */
.nav__cta .btn{
  white-space: nowrap;
}
@media (max-width: 520px){
  .nav__cta{
    gap: 10px;
  }
  .nav__cta .btn{
    padding: 10px 12px;
    font-size: .92rem;
  }
}

/* Slightly smaller section titles everywhere */
.section-title{
  font-size: clamp(1.44rem, 2.34vw, 2.07rem);
  line-height: 1.12;
}

/* Valores line (Quem somos) */
.values-lines{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.values-lines li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.values-lines li .dot{display:none;}
.values-lines li strong{
  display:block;
  font-size:.98rem;
  font-weight:600;
  color: rgba(18,29,56,.92);
  letter-spacing:-.01em;
}
.values-lines li span{
  display:block;
  margin-top:2px;
  font-size:.92rem;
  line-height:1.4;
  color: rgba(18,29,56,.66);
}
@media (max-width: 900px){
  .values-lines{grid-template-columns:1fr; gap: 14px;}
}

/* Values + Coverage layout (institutional) */
.values-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.values-card{padding:18px 18px}
.values-card__title{font-weight:600;font-size:1.05rem;letter-spacing:-0.01em;margin:2px 0 6px;color:var(--ink)}
.values-card p{margin:0;color:var(--muted);line-height:1.55}
@media(max-width:900px){.values-cards{grid-template-columns:1fr;gap:14px}.values-card{padding:16px}}

/* Coverage: improve state label formatting */
.coverage-band__states{gap:12px}
.coverage-band__state strong{display:inline;font-size:.98rem}
.coverage-band__state span{display:inline;margin-left:8px;font-size:.85rem;opacity:.72}
.coverage-band__states .coverage-band__state{padding:12px 14px}

/* Page titles: slightly tighter on small screens */
@media(max-width:520px){
  .h1{font-size:clamp(1.6rem,7vw,2.05rem)}
  .h2{font-size:clamp(1.25rem,5.5vw,1.55rem)}
}

/* ==============================
   Branding audit (institutional)
   Enforce consistent logo sizing, spacing and typography across all pages.
   ============================== */

/* Header / Footer logo sizing */
.brand__logo{
  height:42px;
  width:auto;
  max-width:220px;
  object-fit:contain;
}

.footer__logo{
  height:34px;
  width:auto;
  max-width:240px;
  object-fit:contain;
}

@media(max-width:520px){
  .brand__logo{height:38px}
  .footer__logo{height:30px}
}

/* Reduce overly strong shadows for a more premium feel */
.card, .section-card, .hero-card, .panel, .client-card{
  box-shadow: 0 14px 45px rgba(18,29,56,.08) !important;
}

/* Buttons: consistent vertical rhythm */
.btn{line-height:1}
.btn--pill{padding:12px 18px}
@media(max-width:520px){
  .btn--pill{padding:11px 16px}
}

/* Coverage: lock two-column layout on desktop */
@media(min-width:980px){
  .coverage-band__grid{grid-template-columns: 1.05fr .95fr; align-items:stretch;}
  .coverage-band__map{height:100%}
  .coverage-band__map img{max-height:520px}
}

/* --- Institutional refinements: brand tagline + footer copy --- */
.brand{
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.brand__logo{
  height: 34px;
  width: auto;
}
.brand__tagline{
  font-family: "Alan Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #F26821;
  font-size: clamp(7px, 0.65vw, 9px);
  line-height: 1.2;
  margin-top: 6px;
}
@media (max-width: 520px){
  .brand__tagline{ display:none; }
  .brand__logo{ height: 32px; }
}
.footer__brand{
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 8px;
}
.footer__logo{
  height: 36px !important;
  width: auto !important;
}
.footer__tagline{
  font-family: "Alan Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #F26821;
  font-size: clamp(8px, 0.8vw, 10px);
  line-height: 1.2;
  margin-top: 6px;
}
.footer__desc{
  margin: 0;
  max-width: 42ch;
}
@media (max-width: 680px){
  .footer__logo{ height: 34px !important; }
  .footer__desc{ max-width: 100%; }
}

/* =====================
   Mobile navigation (layout + performance)
   ===================== */
.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(18,29,56,.12);
  border-radius:999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 28px rgba(15,23,42,.10);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav__toggle span{
  width:18px;
  height:2px;
  /* Make the mobile menu icon clearly visible */
  background: var(--orange);
  display:block;
  border-radius:999px;
  position:relative;
}
.nav__toggle span::before,
.nav__toggle span::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: var(--orange);
  border-radius:999px;
}
.nav__toggle span::before{ top:-6px; }
.nav__toggle span::after{ top:6px; }

.mobile-nav{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(2,6,23,.55);
}
.mobile-nav__panel{
  position:absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(18,29,56,.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 28px 80px rgba(2,6,23,.25);
}
.mobile-nav__head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
.mobile-nav__close{ width:44px; height:44px; border-radius:999px; border:1px solid rgba(18,29,56,.12); background: transparent; cursor:pointer; }
.mobile-nav__links{ display:grid; gap:8px; margin: 10px 0 14px; }
.mobile-nav__links a{ padding: 12px 12px; border:1px solid rgba(18,29,56,.10); border-radius: 14px; text-decoration:none; color: var(--ink); background: rgba(248,250,252,.9); font-weight: 600; }
.mobile-nav__actions{ display:grid; gap:10px; }

@media (max-width: 920px){
  .nav__menu{ display:none !important; }
  .nav__right{ display:none !important; }
  .nav__toggle{ display:flex; }
}

/* mobile performance: reduce expensive effects while scrolling */
@media (max-width: 720px){
  html{ scroll-behavior: auto; }
  .topbar{ backdrop-filter: none !important; }
  .card, .feature, .li, .stat, .hero__panel, .page-intro__inner, .mapWrap{ backdrop-filter: none !important; }
  .card, .feature, .li, .stat, .hero__panel, .page-intro__inner{ box-shadow: 0 10px 28px rgba(2,6,23,.10) !important; }
  .bgGlow, .orb, .grain{ display:none !important; }
  .client-track{ animation: none !important; }
  .client-track .client{ flex: 0 0 auto; }
  .statesGrid{ grid-template-columns: 1fr !important; }
  .coverageGrid{ grid-template-columns: 1fr !important; }
  .mapCard img{ max-width: 100%; height: auto; }
}

/* --- Hero (institutional) - Axia-style video overlay --- */
.hero--axia{position:relative;padding:32px 0 72px;background:radial-gradient(1200px 600px at 30% 0%, rgba(242,104,33,.18) 0%, rgba(242,104,33,0) 55%), radial-gradient(900px 520px at 90% 20%, rgba(64,122,255,.18) 0%, rgba(64,122,255,0) 60%), #0b1020;}
.hero--axia .hero-shell{max-width:1180px;width:calc(100% - 40px);margin:0 auto;border-radius:32px;overflow:hidden;position:relative;}

/* hero-shell responsive */
@media (max-width: 640px){
  .hero--axia .hero-shell{width:calc(100% - 24px);border-radius:24px;}
}
.hero--axia .hero-video{position:absolute;inset:0;width:100%;height:100%;z-index:1;}

.hero--axia .hero-scrim{position:absolute;inset:0;z-index:2;background:linear-gradient(90deg, rgba(7,16,31,.82) 0%, rgba(7,16,31,.55) 45%, rgba(7,16,31,.25) 70%, rgba(7,16,31,.10) 100%);}
.hero--axia .hero-video__el{width:100%;height:100%;object-fit:cover;transform:scale(1.02);}
.hero--axia .hero-video__scrim{position:absolute;inset:0;background:linear-gradient(90deg, rgba(9,14,30,.72) 0%, rgba(9,14,30,.55) 40%, rgba(9,14,30,.25) 70%, rgba(9,14,30,.45) 100%), radial-gradient(900px 480px at 20% 10%, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 60%);}
.hero--axia .hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:end;padding:64px;}
.hero--axia .hero-copy{max-width:620px;color:#fff;}
.hero--axia .hero-chip{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(10px);font-size:14px;color:rgba(255,255,255,.92);} 
.hero--axia .hero-chip .dot{width:8px;height:8px;border-radius:999px;background:#F26821;box-shadow:0 0 0 4px rgba(242,104,33,.18);} 
.hero--axia .hero-title{margin:18px 0 14px;font-size:52px;line-height:1.05;letter-spacing:-.02em;color:#fff;}
.hero--axia .hero-lead{margin:0 0 24px;color:rgba(255,255,255,.82);font-size:18px;line-height:1.6;max-width:56ch;}
.hero--axia .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:28px;}
.hero--axia .btn--glass{display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#fff;text-decoration:none;backdrop-filter:blur(10px);} 
.hero--axia .btn--glass:hover{background:rgba(255,255,255,.16);} 
.hero--axia .btn--primary{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;background:#F26821;color:#fff;text-decoration:none;box-shadow:0 14px 30px rgba(242,104,33,.28);} 
.hero--axia .btn--primary:hover{filter:brightness(1.02);} 
.hero--axia .btn--outline{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;background:rgba(15,21,40,.25);border:1px solid rgba(255,255,255,.18);color:#fff;text-decoration:none;backdrop-filter:blur(10px);} 
.hero--axia .btn--outline:hover{background:rgba(15,21,40,.35);} 
.hero--axia .play-ic{width:34px;height:34px;border-radius:999px;display:grid;place-items:center;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.18);} 
.hero--axia .play-ic:before{content:"";display:block;width:0;height:0;border-left:10px solid #fff;border-top:6px solid transparent;border-bottom:6px solid transparent;margin-left:2px;}

.hero--axia .hero-cards{display:flex;gap:18px;justify-content:flex-end;align-items:stretch;}
.hero--axia .hero-card{width:220px;height:520px;border-radius:28px;background:var(--bg) center/cover no-repeat;position:relative;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.35);}
.hero--axia .hero-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.35) 100%);} 
.hero--axia .hero-card:nth-child(1){transform:translateY(20px);} 
.hero--axia .hero-card:nth-child(3){transform:translateY(10px);} 

/* Responsive */
@media (max-width: 980px){
  .hero--axia .hero-shell{max-width:1180px;width:calc(100% - 40px);margin:0 auto;border-radius:32px;overflow:hidden;position:relative;}
  .hero--axia .hero-grid{grid-template-columns:1fr;gap:18px;padding:44px;}
  .hero--axia .hero-cards{justify-content:flex-start;}
  .hero--axia .hero-card{width:180px;height:360px;}
  .hero--axia .hero-title{font-size:42px;}
}
@media (max-width: 640px){
  .hero--axia{padding:18px 0 54px;}
  .hero--axia .hero-shell{max-width:1180px;width:calc(100% - 40px);margin:0 auto;border-radius:32px;overflow:hidden;position:relative;}
  .hero--axia .hero-grid{padding:28px;}
  .hero--axia .hero-cards{display:none;}
  .hero--axia .hero-title{font-size:34px;}
  .hero--axia .hero-lead{font-size:16px;}
}
.hero-video__el{transition:opacity .18s ease;}
.hero-video__el.is-near-end{opacity:.86;}

@media (max-width: 980px){
  .hero--axia .hero-shell{max-width:1180px;width:calc(100% - 40px);margin:0 auto;border-radius:32px;overflow:hidden;position:relative;}
  .hero--axia .hero-axia__grid{position:relative;z-index:3;color:#fff;}
}
@media (max-width: 560px){
  .hero--axia .hero-shell{max-width:1180px;width:calc(100% - 40px);margin:0 auto;border-radius:32px;overflow:hidden;position:relative;}
  .hero--axia .hero-axia__grid{position:relative;z-index:3;color:#fff;}
}


/* v49 AXIA hero overrides */
.hero--axia .hero-shell{max-width:1180px;width:min(1180px, calc(100% - 40px));}
@media(max-width:640px){.hero--axia .hero-shell{width:calc(100% - 24px);border-radius:24px;min-height:520px}}
.hero--axia .hero-video{z-index:1;}
.hero--axia .hero-scrim{z-index:2;}
.hero--axia .hero-axia__grid{z-index:3;color:#fff;}
.hero--axia .hero-axia__title,.hero--axia .hero-axia__lead,.hero--axia .hero-axia__copy{color:#fff;}
.hero--axia .hero-axia__actions .btn{backdrop-filter:saturate(1.2) blur(10px);}


/* Static hero (com vídeo de fundo no index) */
.hero--static{
  /* Altura controlada para manter harmonia em desktop e ultrawide */
  height: 48vh;
  max-height: 560px;
  min-height: 420px;

  /* Espaçamento e centralização vertical do conteúdo */
  padding: 34px 0;
  display: flex;
  align-items: center;

  /* Deixa o vídeo aparecer: o scrim fica no .hero-bg__overlay */
  background: transparent;
  position: relative;
}
.hero--static .hero__inner{min-height:auto; height:100%; display:flex; align-items:center;}

/* Keep the premium content vertically centered inside the fixed-height hero */
.hero--static .hero__wrap--premium{height:100%; align-items:center;}
.hero--static .hero__panel--premium{max-height: calc(100% - 28px);}

/* Garante que o vídeo fique como fundo (e não como coluna ao lado) mesmo com overrides antigos */
.hero--static .hero-bg{
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
}
.hero--static .hero-bg:before{content:none;}
.hero--static > .container{position: relative; z-index: 1; height:100%;}

/* Ultrawide (21:9): hero mais baixo e elegante */
@media (min-aspect-ratio: 21/9){
  .hero--static{height: 50vh; max-height: 600px;}
}

/* Mobile: deixa o conteúdo mandar e evita ocupar tela inteira */
@media (max-width: 768px){
  .hero--static{
    height: auto;
    max-height: none;
    min-height: unset;
    padding: 64px 0 72px;
    display: block;
  }
}

/* === v3.2 Tower framing (force) ===
   Objetivo: manter a torre sempre visível no HERO.
   O vídeo está em object-fit: cover (recorta para preencher), então forçamos
   o enquadramento para o TOPO e levemente ao centro.
   Usamos !important para evitar que algum override/camada antiga sobrescreva.
*/
.hero--static .hero-bg__video{
  /* puxa o enquadramento para a ESQUERDA para destacar a torre */
  object-position: 30% 0% !important;
  transform: none !important;
}

@media (min-aspect-ratio: 21/9){
  .hero--static .hero-bg__video{object-position: 32% 0% !important;}
}

@media (max-width: 640px){
  .hero--static .hero-bg__video{object-position: 50% 18% !important;}
}

/* Glassmorphism do conteúdo sobre o vídeo (apenas no HERO) */
.hero--static .hero__panel{
  /* Card principal (esquerda): mais translúcido para evidenciar o vídeo */
  background: var(--hero-panel-bg);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow:
    0 40px 80px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.28);
  backdrop-filter: blur(var(--hero-panel-blur));
  -webkit-backdrop-filter: blur(var(--hero-panel-blur));
}
.hero--static .hero__card.card{
  /* Card lateral (direita) */
  background: var(--hero-side-bg);
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 32px 64px rgba(0,0,0,.18);
  backdrop-filter: blur(var(--hero-side-blur));
  -webkit-backdrop-filter: blur(var(--hero-side-blur));
}

.hero--static .li{
  /* Subcards internos (lista): mais transparentes sem perder leitura */
  background: var(--hero-subcard-bg);
  border: 1px solid rgba(255,255,255,.40);
  backdrop-filter: blur(var(--hero-subcard-blur));
  -webkit-backdrop-filter: blur(var(--hero-subcard-blur));
}
.hero--static .stat{
  /* Subcards internos (stats) */
  background: var(--hero-subcard-bg);
  border: 1px solid rgba(255,255,255,.40);
  backdrop-filter: blur(var(--hero-subcard-blur));
  -webkit-backdrop-filter: blur(var(--hero-subcard-blur));
}

/* Mobile: reforça contraste para garantir leitura */
@media (max-width: 768px){
  .hero--static .hero__panel,
  .hero--static .hero__card.card{
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .hero--static .li,
  .hero--static .stat{
    background: rgba(255,255,255,.92);
  }
}

/* === HERO COMPONENT TOKENS (reutilizavel) === */
:root{
  /* Glass tokens (mais transparente para evidenciar o vídeo) */
  --hero-panel-bg: rgba(255,255,255,.34);
  --hero-panel-blur: 22px;
  --hero-side-bg: rgba(255,255,255,.38);
  --hero-side-blur: 18px;
  --hero-subcard-bg: rgba(255,255,255,.58);
  --hero-subcard-blur: 12px;
}

/* Accessibility: visible focus rings */
:focus-visible{
  outline: 3px solid rgba(242,104,33,.85);
  outline-offset: 3px;
}

@media (prefers-contrast: more){
  .hero-bg__overlay{
    background:
      radial-gradient(900px 420px at 22% 30%, rgba(11,18,38,.55), transparent 60%),
      linear-gradient(180deg, rgba(11,18,38,.45) 0%, rgba(11,18,38,.20) 52%, rgba(245,247,255,.96) 100%);
  }
  .hero--static .hero__panel{ background: var(--hero-panel-bg); }
  .hero--static .hero__card.card{ background: var(--hero-side-bg); }
}

/* =====================
   FINAL AUDIT PATCH (Jan/2026)
   Fix mobile menu class mismatches + add Axia-like slide panel
   ===================== */
@media (max-width: 920px){
  .menu{ display:none !important; }
  .nav__right{ display:none !important; }
  .nav__toggle{ display:flex; }
}

/* MobileNav MUST NOT affect desktop: keep all overlay rules inside the mobile breakpoint
   and respect the [hidden] attribute (otherwise the overlay can appear on desktop). */
@media (max-width: 920px){
  .mobileNav{
    position: fixed;
    inset: 0;
    z-index: 80;
    padding: 14px;
    display: none;
    align-items: flex-start;
    justify-content: center;
    background: rgba(2,6,23,.55);
    backdrop-filter: blur(6px);
  }
  html.nav-open .mobileNav{ display:flex; }
  .mobileNav[hidden]{ display:none !important; }
}

@media (max-width: 920px){
  .mobileNav__panel{
    width: min(560px, 100%);
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(18,29,56,.12);
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(2,6,23,.28);
    padding: 14px;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
  }
  html.nav-open .mobileNav__panel{ transform: translateY(0); opacity: 1; }
}

.mobileNav__head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 10px; }
.mobileNav__title{ font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.mobileNav__close{ width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(18,29,56,.12); background: rgba(255,255,255,.7); cursor:pointer; display:flex; align-items:center; justify-content:center; }
.mobileNav__close:hover{ filter: brightness(1.02); }

.mobileNav__links{ display:grid; gap: 8px; margin: 8px 0 14px; }
.mobileNav__links a{
  padding: 12px 12px;
  border: 1px solid rgba(18,29,56,.10);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(248,250,252,.92);
  font-weight: 600;
}
.mobileNav__links a[aria-current="page"]{ border-color: rgba(242,104,33,.35); box-shadow: 0 0 0 4px rgba(242,104,33,.10); }

.mobileNav__actions{ display:grid; gap: 10px; }

/* small phones: breathing room */
@media (max-width: 420px){
  .mobileNav{ padding: 10px; }
  .mobileNav__panel{ border-radius: 16px; }
}

/* === PREMIUM CLIENTS STRIP (v32 - photo background + colored logos) === */
.clients{
  position: relative;
  /*
    Background image path hardening:
    - ../img/... works when CSS is in /assets/css/
    - /assets/img/... works on some hosts/CDNs that rewrite/relocate CSS
    If one URL 404s, the other can still render.
  */
  background-image: url("../img/clients-bg.jpg"), url("/assets/img/clients-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 0;
}
.clients::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(245,247,255,.92) 0%, rgba(255,255,255,.82) 48%, rgba(255,255,255,.94) 100%);
  pointer-events:none;
}
.clients .container{ position: relative; z-index: 1; }

.clients__header{
  text-align:center;
  margin: 0 auto 18px;
}
.clients__header .h2{margin-top:6px;}
.clients__header .p{margin-left:auto; margin-right:auto;}

.clients-marquee{
  box-shadow: 0 18px 50px rgba(11,18,38,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.marquee-item{
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px;
  background: rgba(246,248,255,.55);
  padding: 10px 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.marquee-item img{
  filter: none;
  opacity: 1;
  transition: transform .25s ease;
}
.marquee-item:hover{
  background: rgba(255,255,255,.98);
  border-color: rgba(242,104,33,.22);
  transform: translateY(-1px);
}
.marquee-item:hover img{
  transform: translateY(-1px);
}

@media (max-width: 768px){
  .clients{padding:44px 0 40px;}
  .clients-marquee{padding: 16px 16px;}
  .marquee-item{padding: 8px 10px; border-radius: 12px;}
}

/* =====================
   Requested adjustments (Jan/2026)
   ===================== */

/* 1) Mobile menu indicator color */
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after{
  background: #F26821;
}

/* 2) Contact form text visibility */
.input, .textarea{ color: #0B1226; }
.input::placeholder, .textarea::placeholder{ color: rgba(11,18,38,.45); }

/* 3) Topbar + Footer background navy and white text */
.topbar{
  background: #121D38 !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}
.topbar .brand__tagline{ color: rgba(255,255,255,.82) !important; }
.topbar .menu a{ color: rgba(255,255,255,.88) !important; }
.topbar .menu a:hover{ background: rgba(255,255,255,.10) !important; }
.topbar .menu a[aria-current="page"]{
  background: rgba(242,104,33,.18) !important;
  border-color: rgba(242,104,33,.35) !important;
  color: #FFFFFF !important;
}
.topbar .btn{
  color: #FFFFFF !important;
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.16) !important;
}
.topbar .btn:hover{ background: rgba(255,255,255,.12) !important; }
.topbar .btn--ghost{ background: transparent !important; }
.topbar .nav__toggle{
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.16) !important;
}

.footer{
  background: #121D38 !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.80) !important;
}
.footer a{ color: rgba(255,255,255,.86) !important; }
.footer a:hover{ color: #FFFFFF !important; }
.footer__col h4,
.footer__bottom-inner{ color: rgba(255,255,255,.82) !important; }
.footer__desc{ color: rgba(255,255,255,.78) !important; }
.footer__bottom{ border-top: 1px solid rgba(255,255,255,.10) !important; }

/* ===== Language switch (flags) ===== */
.langSwitch{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}
.langSwitch__btn{
  width:34px; height:24px;
  padding:0;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background: rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
}
.langSwitch__btn img{width:20px; height:20px; object-fit:cover; border-radius:999px; display:block}

/* Ensure flag images never disappear due to inherited filters/masks */
.langSwitch__btn img{ filter:none !important; mix-blend-mode: normal !important; opacity:1 !important; }
.langSwitch__btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.langSwitch__btn.is-active{ border-color: rgba(242,104,33,.75); box-shadow: 0 0 0 3px rgba(242,104,33,.18); }
.langSwitch--mobile{ justify-content:center; width:100%; margin-bottom: 10px; }



/* =====================
   FINAL HEADER + FOOTER POLISH (Professional topbar)
   ===================== */

/* Keep all topbar labels on a single line and centered */
.topbar .menu a,
.topbar .btn,
.topbar .brand__tagline{ white-space: nowrap; }

.topbar .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.topbar .nav{ gap: 18px; }
.topbar .menu{ gap: 10px; }
.topbar .menu a{ padding: 10px 10px; }

.topbar .nav__right{ flex-wrap: nowrap; align-items: center; gap: 10px; }

/* Reduce button width pressure so text doesn't wrap */
.topbar .nav__right .btn{ padding: 10px 14px; font-size: .96rem; }

/* Language switch pill a bit tighter and aligned */
.langSwitch{ display:flex; align-items:center; gap:8px; padding:6px 8px; }
.langSwitch__btn{ width:34px; height:26px; display:flex; align-items:center; justify-content:center; }
.langSwitch__btn img{ width:18px; height:18px; }

/* Footer tagline must be white */
.footer__tagline{ color:#fff !important; opacity: 1 !important; }

/* Small desktop: keep everything in one line */
@media (max-width: 1180px){
  .topbar .nav{ gap: 12px; }
  .topbar .menu{ gap: 6px; }
  .topbar .menu a{ padding: 10px 8px; font-size: .95rem; }
  .topbar .nav__right .btn{ padding: 10px 12px; font-size: .94rem; }
}

@media (max-width: 1020px){
  /* On medium screens, hide the tagline to avoid breaking layout */
  .topbar .brand__tagline{ display:none; }
}

/* === Hotfix: preserve layout after i18n update + footer tagline === */
.footer .brand__tagline,
.footer__desc,
.footer__kicker,
.footer__col,
.footer__col h4,
.footer__bottom,
.footer__bottom *{
  color: rgba(255,255,255,.86) !important;
}

/* --- FINAL HERO PANEL FIT (no cut) --- */
.hero--static .hero__panel--premium{
  max-height: none !important;
  width: min(640px, 92vw) !important;
  padding: 18px 20px 16px !important;
}
.hero--static .hero__panel--premium .h1{
  font-size: clamp(34px, 3.0vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
}
.hero--static .hero__panel--premium p{
  font-size: 1.02rem !important;
  line-height: 1.55 !important;
}
.hero--static .hero__pills--premium{
  margin-top: 12px !important;
  gap: 8px !important;
}
.hero--static .hero__pills--premium .pill{
  padding: 8px 12px !important;
  font-size: .92rem !important;
}
.hero--static .hero__stats--premium{
  margin-top: 12px !important;
  gap: 10px !important;
}
.hero--static .hero__stats--premium .heroStat{
  padding: 12px 12px !important;
  min-height: 60px;
}
.hero--static .heroStat__icon{
  width: 38px !important;
  height: 38px !important;
}
.hero--static .hero__cta--premium{
  margin-top: 12px !important;
  gap: 10px !important;
}
.hero--static .hero__meta{
  margin-top: 10px !important;
}
@media (max-width: 980px){
  .hero--static .hero__panel--premium{width: min(680px, 92vw) !important;}
  .hero--static .hero__panel--premium .h1{font-size: clamp(30px, 6vw, 40px) !important;}
}

/* --- FINAL HERO PANEL FIT v3 (no clipping; panel grows with content) --- */
.hero--static .hero__panel--premium{
  /* allow the panel to grow with content (avoid clipping chips/text) */
  max-height: none !important;
  width: min(640px, 92vw) !important;
  padding: 18px 18px 16px !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.hero--static .hero__panel--premium .badge{
  margin-bottom: 10px !important;
}

.hero--static .hero__panel--premium .h1{
  /* Ajuste para evitar corte do link "Baixar apresentação corporativa" no HERO fixo */
  font-size: clamp(23px, 2.1vw, 33px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.02em;
  margin-bottom: 10px !important;
}

.hero--static .hero__panel--premium p{
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  margin-bottom: 10px !important;
}

.hero--static .hero__pills--premium{
  margin-top: 6px !important;
  gap: 8px !important;
}

.hero--static .hero__pills--premium .pill{
  padding: 7px 10px !important;
  font-size: 0.88rem !important;
}

.hero--static .hero__stats--premium{
  margin-top: 10px !important;
  gap: 10px !important;
}

.hero--static .hero__stats--premium .heroStat{
  padding: 10px 10px !important;
  min-height: 56px !important;
}

.hero--static .heroStat__icon{
  width: 36px !important;
  height: 36px !important;
}

.hero--static .heroStat__title{
  font-size: 1.0rem !important;
}

.hero--static .heroStat__desc{
  font-size: 0.92rem !important;
}

.hero--static .hero__cta--premium{
  margin-top: 10px !important;
  gap: 10px !important;
}

.hero--static .hero__meta{
  margin-top: 8px !important;
}

@media (max-width: 980px){
  .hero--static .hero__panel--premium{
    width: min(680px, 92vw) !important;
    max-height: calc(100% - 20px) !important;
    padding: 14px 16px 12px !important;
  }
  .hero--static .hero__panel--premium .h1{
    font-size: clamp(24px, 5.2vw, 34px) !important;
  }
}

/* v50 HERO TITLE SIZE FIX (ensure CTA is visible) */
.hero--axia .hero-title{
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: 1.08 !important;
  margin: 14px 0 10px !important;
}


/* v51 HERO TITLE 10% REDUCTION */
.hero--axia .hero-title{
  font-size: calc(0.9 * clamp(30px, 3.2vw, 46px)) !important;
  line-height: 1.08 !important;
}


/* =========================================================
   Premium Card Colors (Neiva) — Orange / Blue / Navy / Gray
   Goal: intercalate subtle tinted cards across pages while
   keeping readability and a sophisticated look.
   ========================================================= */
:root{
  --c-orange: 242 104 33;   /* #F26821 */
  --c-blue:   70 111 182;   /* #466FB6 */
  --c-navy:   18 29 56;     /* #121D38 */
  --c-gray:   55 55 55;     /* #373737 */
}

/* Generic tinted card using --card-accent-rgb */
.card{
  position: relative;
}
.card.card-tone--orange,
.card.card-tone--blue,
.card.card-tone--navy,
.card.card-tone--gray{
  color: var(--navy);
  background: linear-gradient(180deg,
      rgba(var(--card-accent-rgb), .14),
      rgba(255,255,255,.06)
  ) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .28) !important;
  box-shadow: 0 18px 52px rgba(18,29,56,.10) !important;
}

/* Accent bar (premium cue) */
.card.card-tone--orange::before,
.card.card-tone--blue::before,
.card.card-tone--navy::before,
.card.card-tone--gray::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  border-radius: 999px;
  background: rgb(var(--card-accent-rgb));
  opacity: .95;
}

/* Tone variables */
.card-tone--orange{ --card-accent-rgb: var(--c-orange); }
.card-tone--blue{   --card-accent-rgb: var(--c-blue); }
.card-tone--navy{   --card-accent-rgb: var(--c-navy); }
.card-tone--gray{   --card-accent-rgb: var(--c-gray); }

/* Text refinement inside tinted cards */
.card.card-tone--orange .kicker,
.card.card-tone--blue .kicker,
.card.card-tone--navy .kicker,
.card.card-tone--gray .kicker{
  color: rgba(18,29,56,.78) !important;
}
.card.card-tone--orange p,
.card.card-tone--blue p,
.card.card-tone--navy p,
.card.card-tone--gray p{
  color: rgba(18,29,56,.82) !important;
}

/* ===== Auto intercalation (Sobre / Servicos / Portfolio / Contato) ===== */
.about-grid > .card,
.services-grid > .card,
.portfolio-grid > .card,
.values-cards > .card,
.channels-grid > .card{
  --card-accent-rgb: var(--c-blue);
  background: linear-gradient(180deg,
      rgba(var(--card-accent-rgb), .12),
      rgba(255,255,255,.06)
  ) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .24) !important;
  box-shadow: 0 18px 52px rgba(18,29,56,.10) !important;
  position: relative;
}

.about-grid > .card::before,
.services-grid > .card::before,
.portfolio-grid > .card::before,
.values-cards > .card::before,
.channels-grid > .card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  border-radius: 999px;
  background: rgb(var(--card-accent-rgb));
  opacity: .95;
}

/* Intercalation pattern: Navy -> Blue -> Orange -> Gray */
.about-grid > .card:nth-child(4n+1),
.services-grid > .card:nth-child(4n+1),
.portfolio-grid > .card:nth-child(4n+1),
.values-cards > .card:nth-child(4n+1),
.channels-grid > .card:nth-child(4n+1){ --card-accent-rgb: var(--c-navy); }

.about-grid > .card:nth-child(4n+2),
.services-grid > .card:nth-child(4n+2),
.portfolio-grid > .card:nth-child(4n+2),
.values-cards > .card:nth-child(4n+2),
.channels-grid > .card:nth-child(4n+2){ --card-accent-rgb: var(--c-blue); }

.about-grid > .card:nth-child(4n+3),
.services-grid > .card:nth-child(4n+3),
.portfolio-grid > .card:nth-child(4n+3),
.values-cards > .card:nth-child(4n+3),
.channels-grid > .card:nth-child(4n+3){ --card-accent-rgb: var(--c-orange); }

.about-grid > .card:nth-child(4n+4),
.services-grid > .card:nth-child(4n+4),
.portfolio-grid > .card:nth-child(4n+4),
.values-cards > .card:nth-child(4n+4),
.channels-grid > .card:nth-child(4n+4){ --card-accent-rgb: var(--c-gray); }

/* Ensure the 5px scale hero panel doesn't blur card edges on some GPUs */
@supports (backdrop-filter: blur(1px)){
  .card{ -webkit-backdrop-filter: blur(10px); }
}


/* =========================================================
   Card Title Color = Card Accent Color
   ========================================================= */
.card.card-tone--orange h3,
.card.card-tone--orange h4{
  color: rgb(var(--c-orange)) !important;
}

.card.card-tone--blue h3,
.card.card-tone--blue h4{
  color: rgb(var(--c-blue)) !important;
}

.card.card-tone--navy h3,
.card.card-tone--navy h4{
  color: rgb(var(--c-navy)) !important;
}

.card.card-tone--gray h3,
.card.card-tone--gray h4{
  color: rgb(var(--c-gray)) !important;
}

/* Auto-intercalated cards */
.about-grid > .card h3,
.services-grid > .card h3,
.portfolio-grid > .card h3,
.values-cards > .card h3,
.channels-grid > .card h3{
  color: rgb(var(--card-accent-rgb)) !important;
}


/* =========================================================
   Remove White Text – Align all card text to brand colors
   ========================================================= */

/* Default card text */
.card{
  color: rgba(18,29,56,.82) !important;
}

/* Card body text follows neutral dark (premium readability) */
.card p,
.card li,
.card span{
  color: rgba(18,29,56,.78) !important;
}

/* Force removal of white text inside cards */
.card *{
  text-shadow: none !important;
}

/* Titles already inherit accent; ensure no white override */
.card h3,
.card h4{
  color: rgb(var(--card-accent-rgb)) !important;
}

/* Icons / minor labels */
.card .icon,
.card .badge{
  color: rgb(var(--card-accent-rgb)) !important;
  opacity: .85;
}


/* =========================================================
   Typography & Color Refinement — Premium / Lighter
   ========================================================= */

/* Global text tuning */
body{
  color: #121D38;
  font-weight: 400;
}

/* Card base */
.card{
  color: rgba(18,29,56,.82) !important;
  font-weight: 400;
}

/* Card titles – lighter and accent-colored */
.card h3,
.card h4{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 600 !important;
  letter-spacing: .2px;
}

/* Section labels (O&M, AMBIENTAL, etc.) */
.card .kicker,
.card .label,
.card small{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
  opacity: .9;
}

/* Paragraphs – neutral dark, never gray/white */
.card p,
.card li,
.card span{
  color: rgba(18,29,56,.78) !important;
  font-weight: 400 !important;
}

/* Values cards highlight fix */
.values-cards .card h3,
.values-cards .card h4{
  background: none !important;
  padding: 0 !important;
}

/* Remove any forced white text */
.card,
.card *{
  text-shadow: none !important;
}

/* Buttons inside cards */
.card .btn,
.card button{
  font-weight: 600;
}


/* =========================================================
   FINAL OVERRIDES (Guarantee) — Card sequence + text colors
   ========================================================= */

/* Sequence: Navy -> Blue -> Orange -> Gray */
.about-grid > .card:nth-child(4n+1),
.services-grid > .card:nth-child(4n+1),
.portfolio-grid > .card:nth-child(4n+1),
.values-cards > .card:nth-child(4n+1),
.channels-grid > .card:nth-child(4n+1){ --card-accent-rgb: var(--c-navy) !important; }

.about-grid > .card:nth-child(4n+2),
.services-grid > .card:nth-child(4n+2),
.portfolio-grid > .card:nth-child(4n+2),
.values-cards > .card:nth-child(4n+2),
.channels-grid > .card:nth-child(4n+2){ --card-accent-rgb: var(--c-blue) !important; }

.about-grid > .card:nth-child(4n+3),
.services-grid > .card:nth-child(4n+3),
.portfolio-grid > .card:nth-child(4n+3),
.values-cards > .card:nth-child(4n+3),
.channels-grid > .card:nth-child(4n+3){ --card-accent-rgb: var(--c-orange) !important; }

.about-grid > .card:nth-child(4n+4),
.services-grid > .card:nth-child(4n+4),
.portfolio-grid > .card:nth-child(4n+4),
.values-cards > .card:nth-child(4n+4),
.channels-grid > .card:nth-child(4n+4){ --card-accent-rgb: var(--c-gray) !important; }

/* Force card background/border using the accent */
.about-grid > .card,
.services-grid > .card,
.portfolio-grid > .card,
.values-cards > .card,
.channels-grid > .card{
  background: linear-gradient(180deg, rgba(var(--card-accent-rgb), .14), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .28) !important;
}


/* Titles and labels in accent color (guaranteed) */
.about-grid > .card h3,
.about-grid > .card h4,
.about-grid > .card .kicker,
.about-grid > .card .label,
.services-grid > .card h3,
.services-grid > .card h4,
.services-grid > .card .kicker,
.services-grid > .card .label,
.portfolio-grid > .card h3,
.portfolio-grid > .card h4,
.portfolio-grid > .card .kicker,
.portfolio-grid > .card .label,
.values-cards > .card h3,
.values-cards > .card h4,
.values-cards > .card .kicker,
.values-cards > .card .label,
.channels-grid > .card h3,
.channels-grid > .card h4,
.channels-grid > .card .kicker,
.channels-grid > .card .label{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 600 !important;
}

/* Body copy always navy (never white/washed) */
.about-grid > .card p,
.about-grid > .card li,
.about-grid > .card span,
.services-grid > .card p,
.services-grid > .card li,
.services-grid > .card span,
.portfolio-grid > .card p,
.portfolio-grid > .card li,
.portfolio-grid > .card span,
.values-cards > .card p,
.values-cards > .card li,
.values-cards > .card span,
.channels-grid > .card p,
.channels-grid > .card li,
.channels-grid > .card span{
  color: rgba(18,29,56,.80) !important;
  font-weight: 400 !important;
}


/* =========================================================
   HARMONY UPDATE — Better color rhythm + lighter titles
   ========================================================= */

/* Harmonious sequence for 3-column grids:
   Row pattern: Navy, Blue, Orange | Gray, Navy, Blue | Orange, Gray, Navy ...
   Implemented as 6-step cycle to avoid clumps.
*/
.about-grid > .card:nth-child(6n+1),
.services-grid > .card:nth-child(6n+1),
.portfolio-grid > .card:nth-child(6n+1),
.values-cards > .card:nth-child(6n+1),
.channels-grid > .card:nth-child(6n+1){ --card-accent-rgb: var(--c-navy) !important; }

.about-grid > .card:nth-child(6n+2),
.services-grid > .card:nth-child(6n+2),
.portfolio-grid > .card:nth-child(6n+2),
.values-cards > .card:nth-child(6n+2),
.channels-grid > .card:nth-child(6n+2){ --card-accent-rgb: var(--c-blue) !important; }

.about-grid > .card:nth-child(6n+3),
.services-grid > .card:nth-child(6n+3),
.portfolio-grid > .card:nth-child(6n+3),
.values-cards > .card:nth-child(6n+3),
.channels-grid > .card:nth-child(6n+3){ --card-accent-rgb: var(--c-orange) !important; }

.about-grid > .card:nth-child(6n+4),
.services-grid > .card:nth-child(6n+4),
.portfolio-grid > .card:nth-child(6n+4),
.values-cards > .card:nth-child(6n+4),
.channels-grid > .card:nth-child(6n+4){ --card-accent-rgb: var(--c-gray) !important; }

.about-grid > .card:nth-child(6n+5),
.services-grid > .card:nth-child(6n+5),
.portfolio-grid > .card:nth-child(6n+5),
.values-cards > .card:nth-child(6n+5),
.channels-grid > .card:nth-child(6n+5){ --card-accent-rgb: var(--c-navy) !important; }

.about-grid > .card:nth-child(6n+6),
.services-grid > .card:nth-child(6n+6),
.portfolio-grid > .card:nth-child(6n+6),
.values-cards > .card:nth-child(6n+6),
.channels-grid > .card:nth-child(6n+6){ --card-accent-rgb: var(--c-blue) !important; }

/* Guarantee tinted background/border */
.about-grid > .card,
.services-grid > .card,
.portfolio-grid > .card,
.values-cards > .card,
.channels-grid > .card{
  background: linear-gradient(180deg, rgba(var(--card-accent-rgb), .14), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .28) !important;
}

/* TITLES: match accent + lighter weight (fix "cinza" + "pesada") */
.about-grid > .card h3,
.about-grid > .card h4,
.services-grid > .card h3,
.services-grid > .card h4,
.portfolio-grid > .card h3,
.portfolio-grid > .card h4,
.values-cards > .card h3,
.values-cards > .card h4,
.channels-grid > .card h3,
.channels-grid > .card h4{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
  letter-spacing: .15px;
}

/* Labels (O&M, AMBIENTAL...) */
.about-grid > .card .kicker,
.services-grid > .card .kicker,
.portfolio-grid > .card .kicker,
.values-cards > .card .kicker,
.channels-grid > .card .kicker{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
  opacity: .92;
}

/* Body text: always navy (never white/washed gray) */
.about-grid > .card p,
.about-grid > .card li,
.about-grid > .card span,
.services-grid > .card p,
.services-grid > .card li,
.services-grid > .card span,
.portfolio-grid > .card p,
.portfolio-grid > .card li,
.portfolio-grid > .card span,
.values-cards > .card p,
.values-cards > .card li,
.values-cards > .card span,
.channels-grid > .card p,
.channels-grid > .card li,
.channels-grid > .card span{
  color: rgba(18,29,56,.80) !important;
  font-weight: 400 !important;
}


/* =========================================================
   FORCE TONES (v2) — explicit classes win everywhere
   ========================================================= */
.card-tone--navy{ --card-accent-rgb: var(--c-navy) !important; }
.card-tone--blue{ --card-accent-rgb: var(--c-blue) !important; }
.card-tone--orange{ --card-accent-rgb: var(--c-orange) !important; }
.card-tone--gray{ --card-accent-rgb: var(--c-gray) !important; }

.card.card-tone--navy,
.card.card-tone--blue,
.card.card-tone--orange,
.card.card-tone--gray{
  background: linear-gradient(180deg, rgba(var(--card-accent-rgb), .14), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .28) !important;
}

.card.card-tone--navy h3, .card.card-tone--navy h4,
.card.card-tone--blue h3, .card.card-tone--blue h4,
.card.card-tone--orange h3, .card.card-tone--orange h4,
.card.card-tone--gray h3, .card.card-tone--gray h4{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
}

.card.card-tone--navy .kicker,
.card.card-tone--blue .kicker,
.card.card-tone--orange .kicker,
.card.card-tone--gray .kicker{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
  opacity: .92;
}

.card.card-tone--navy p, .card.card-tone--navy li, .card.card-tone--navy span,
.card.card-tone--blue p, .card.card-tone--blue li, .card.card-tone--blue span,
.card.card-tone--orange p, .card.card-tone--orange li, .card.card-tone--orange span,
.card.card-tone--gray p, .card.card-tone--gray li, .card.card-tone--gray span{
  color: rgba(18,29,56,.80) !important;
  font-weight: 400 !important;
}


/* =========================================================
   FINAL SEQUENCE — Orange → Blue → Navy → Gray
   ========================================================= */
.card-tone--orange{ --card-accent-rgb: var(--c-orange) !important; }
.card-tone--blue{   --card-accent-rgb: var(--c-blue) !important; }
.card-tone--navy{   --card-accent-rgb: var(--c-navy) !important; }
.card-tone--gray{   --card-accent-rgb: var(--c-gray) !important; }

.card.card-tone--orange,
.card.card-tone--blue,
.card.card-tone--navy,
.card.card-tone--gray{
  background: linear-gradient(180deg, rgba(var(--card-accent-rgb), .14), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .28) !important;
}

.card.card-tone--orange h3, .card.card-tone--orange h4,
.card.card-tone--blue h3, .card.card-tone--blue h4,
.card.card-tone--navy h3, .card.card-tone--navy h4,
.card.card-tone--gray h3, .card.card-tone--gray h4{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
}

.card.card-tone--orange .kicker,
.card.card-tone--blue .kicker,
.card.card-tone--navy .kicker,
.card.card-tone--gray .kicker{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
}

.card.card-tone--orange p, .card.card-tone--orange li,
.card.card-tone--blue p, .card.card-tone--blue li,
.card.card-tone--navy p, .card.card-tone--navy li,
.card.card-tone--gray p, .card.card-tone--gray li{
  color: rgba(18,29,56,.80) !important;
  font-weight: 400 !important;
}


/* =========================================================
   Services Grid — lighter subtitles (h4) and labels
   ========================================================= */
.services-grid .card h4{
  font-weight: 500 !important;
}
.services-grid .card .kicker{
  font-weight: 500 !important;
  letter-spacing: .18em;
}
.services-grid .card p{
  font-weight: 400 !important;
}


/* =========================================================
   HARD OVERRIDE v400 — guarantee tones + lighter typography
   ========================================================= */

/* tone variables */
.card-tone--orange{ --card-accent-rgb: var(--c-orange) !important; }
.card-tone--blue{   --card-accent-rgb: var(--c-blue) !important; }
.card-tone--navy{   --card-accent-rgb: var(--c-navy) !important; }
.card-tone--gray{   --card-accent-rgb: var(--c-gray) !important; }

/* card shell */
.card.card-tone--orange,
.card.card-tone--blue,
.card.card-tone--navy,
.card.card-tone--gray{
  background: linear-gradient(180deg, rgba(var(--card-accent-rgb), .14), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .28) !important;
}

/* left accent bar */
.card.card-tone--orange::before,
.card.card-tone--blue::before,
.card.card-tone--navy::before,
.card.card-tone--gray::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  border-radius: 999px;
  background: rgb(var(--card-accent-rgb));
  opacity: .95;
}

/* kicker/labels */
.card.card-tone--orange .kicker,
.card.card-tone--blue .kicker,
.card.card-tone--navy .kicker,
.card.card-tone--gray .kicker{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
  letter-spacing: .18em;
}

/* titles inside cards (h4 in Servicos grid) */
.card.card-tone--orange h3, .card.card-tone--orange h4,
.card.card-tone--blue h3,   .card.card-tone--blue h4,
.card.card-tone--navy h3,   .card.card-tone--navy h4,
.card.card-tone--gray h3,   .card.card-tone--gray h4{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
}

/* body copy always navy and light */
.card.card-tone--orange p, .card.card-tone--orange li, .card.card-tone--orange span,
.card.card-tone--blue p,   .card.card-tone--blue li,   .card.card-tone--blue span,
.card.card-tone--navy p,   .card.card-tone--navy li,   .card.card-tone--navy span,
.card.card-tone--gray p,   .card.card-tone--gray li,   .card.card-tone--gray span{
  color: rgba(18,29,56,.80) !important;
  font-weight: 400 !important;
}

/* ensure no bold leftovers */
.card b, .card strong{ font-weight: 600 !important; }


/* =========================================================
   FIX v401 — force card-tone classes to WIN over any nth-child
   and make grid subtitles lighter (no heavy bold)
   ========================================================= */

/* Force tone variables with container+tone specificity (wins) */
.services-grid > .card.card-tone--orange,
.about-grid > .card.card-tone--orange,
.portfolio-grid > .card.card-tone--orange,
.values-cards > .card.card-tone--orange,
.channels-grid > .card.card-tone--orange{ --card-accent-rgb: var(--c-orange) !important; }

.services-grid > .card.card-tone--blue,
.about-grid > .card.card-tone--blue,
.portfolio-grid > .card.card-tone--blue,
.values-cards > .card.card-tone--blue,
.channels-grid > .card.card-tone--blue{ --card-accent-rgb: var(--c-blue) !important; }

.services-grid > .card.card-tone--navy,
.about-grid > .card.card-tone--navy,
.portfolio-grid > .card.card-tone--navy,
.values-cards > .card.card-tone--navy,
.channels-grid > .card.card-tone--navy{ --card-accent-rgb: var(--c-navy) !important; }

.services-grid > .card.card-tone--gray,
.about-grid > .card.card-tone--gray,
.portfolio-grid > .card.card-tone--gray,
.values-cards > .card.card-tone--gray,
.channels-grid > .card.card-tone--gray{ --card-accent-rgb: var(--c-gray) !important; }

/* Lighter typography inside grid cards */
.services-grid .card h4,
.about-grid .card h4,
.portfolio-grid .card h4,
.values-cards .card h4,
.channels-grid .card h4{
  font-weight: 500 !important;
}

.services-grid .card h4 strong,
.about-grid .card h4 strong,
.portfolio-grid .card h4 strong,
.values-cards .card h4 strong,
.channels-grid .card h4 strong{
  font-weight: inherit !important;
}

/* Ensure body copy stays light */
.services-grid .card p,
.about-grid .card p,
.portfolio-grid .card p,
.values-cards .card p,
.channels-grid .card p{
  font-weight: 400 !important;
}


/* =========================================================
   TYPOGRAPHY REFRESH — lighter, modern, harmonious
   ========================================================= */

/* Base font */
:root{
  --font-sans-primary: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Global application */
body{
  font-family: var(--font-sans-primary);
  font-weight: 400;
}

/* Section headings */
h1, h2{
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Card titles & subtitles */
.card h3,
.card h4{
  font-family: var(--font-sans-primary);
  font-weight: 500 !important; /* lighter than bold */
  letter-spacing: -0.005em;
}

/* Card labels (O&M, AMBIENTAL, etc.) */
.card .kicker,
.card .label{
  font-family: var(--font-sans-primary);
  font-weight: 500 !important;
  letter-spacing: 0.18em;
}

/* Card body text */
.card p,
.card li,
.card span{
  font-family: var(--font-sans-primary);
  font-weight: 400 !important;
  line-height: 1.55;
}

/* Neutralize any forced bolds */
.card b,
.card strong{
  font-weight: 600 !important;
}


/* =========================================================
   TYPOGRAPHY — Alan Sans SemiBold (cards)
   ========================================================= */

/* If font files are present locally, they will be used.
   Otherwise, browser will fallback gracefully. */
/* Load Alan Sans from local files shipped with the site */
@font-face{
  font-family: 'Alan Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local('Alan Sans Regular'),
    local('AlanSans-Regular'),
    url('../fonts/AlanSans/static/AlanSans-Regular.ttf') format('truetype');
}

@font-face{
  font-family: 'Alan Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    local('Alan Sans Medium'),
    local('AlanSans-Medium'),
    url('../fonts/AlanSans/static/AlanSans-Medium.ttf') format('truetype');
}

@font-face{
  font-family: 'Alan Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    local('Alan Sans SemiBold'),
    local('AlanSans-SemiBold'),
    url('../fonts/AlanSans/static/AlanSans-SemiBold.ttf') format('truetype');
}

/* Card titles & subtitles */
.card h3,
.card h4{
  font-family: 'Alan Sans', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 500 !important; /* lighter than SemiBold for a premium feel */
  letter-spacing: -0.01em;
}

/* Card labels */
.card .kicker,
.card .label{
  font-family: 'Alan Sans', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em;
}

/* For legacy inline titles converted to .card__title */
.card .card__title{
  font-family: 'Alan Sans', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
  font-size: 1.08rem;
}

/* Body copy remains lighter for contrast */
.card p,
.card li,
.card span{
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 400 !important;
}


/* =========================================================
   KERNING FINO — Titles (Alan Sans SemiBold)
   ========================================================= */

/* Improve glyph spacing/kerning quality (where supported) */
.card h3,
.card h4,
.section-title,
.hero h1,
.hero h2{
  font-kerning: normal;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
}

/* Fine tracking for titles (desktop) */
@media (min-width: 1024px){
  .card h3, .card h4{
    letter-spacing: -0.012em !important;
  }
}

/* Fine tracking for titles (tablet) */
@media (min-width: 768px) and (max-width: 1023px){
  .card h3, .card h4{
    letter-spacing: -0.010em !important;
  }
}

/* Fine tracking for titles (mobile) — avoid over-tightening */
@media (max-width: 767px){
  .card h3, .card h4{
    letter-spacing: -0.006em !important;
  }
}

/* Avoid "too tight" on all-caps kickers */
.card .kicker,
.card .label{
  letter-spacing: 0.14em !important;
}


/* =========================================================
   SUBTITLES FIX v620 — card__title lighter + 3-color sequence
   ========================================================= */

/* Card grid title (under kicker) */
.card__title{
  font-family: 'Alan Sans', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.008em;
  margin: 0;
  color: rgb(var(--card-accent-rgb)) !important;
}

/* Ensure old heavy weights don't leak */
.services-grid .card [style*="font-weight"],
.about-grid .card [style*="font-weight"],
.portfolio-grid .card [style*="font-weight"],
.values-cards .card [style*="font-weight"],
.channels-grid .card [style*="font-weight"]{
  font-weight: 500 !important;
}

/* Sequence now: Orange -> Blue -> Navy (repeat) */
.card-tone--gray{ --card-accent-rgb: var(--c-navy) !important; } /* safety if any leftover */


/* =========================================================
   FIX VALORES — titles follow card accent color
   ========================================================= */

/* Normalize Valores cards to match the global card style (no solid fill) */
.values-cards .values-card{
  background: linear-gradient(180deg, rgba(var(--card-accent-rgb), .14), rgba(255,255,255,.06)) !important;
  border: 1px solid rgba(var(--card-accent-rgb), .28) !important;
  color: rgba(18,29,56,.88) !important;
}

.values-cards .values-card p{
  color: rgba(18,29,56,.80) !important;
  font-weight: 400 !important;
}

/* Valores grid titles (Ética, Segurança, Qualidade) */
.values-cards .card h3,
.values-cards .card h4,
.values-cards .card .card__title,
.values-cards .card .values-card__title{
  color: rgb(var(--card-accent-rgb)) !important;
  font-weight: 500 !important;
}

/* Ensure no white override remains */
.values-cards .card *{
  text-shadow: none !important;
}


/* =========================================================
   FORM FOCUS — Soft & Premium
   ========================================================= */

/* Remove harsh default outline */
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Soft focus state */
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(242, 104, 33, 0.45); /* soft orange */
  box-shadow:
    0 0 0 2px rgba(242, 104, 33, 0.12),
    0 6px 18px rgba(18, 29, 56, 0.08);
  transition: box-shadow .25s ease, border-color .25s ease;
}

/* Hover (even softer) */
input:hover,
textarea:hover,
select:hover {
  border-color: rgba(18, 29, 56, 0.25);
}


/* =========================================================
   MICRO-ANIMAÇÕES — premium, discretas (com reduced-motion)
   ========================================================= */

:root{
  --ease-out: cubic-bezier(.2,.8,.2,1);
}

/* Cards: subtle lift on hover */
.card{
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
  will-change: transform;
}
.card:hover{
  transform: translateY(-3px);
}

/* Buttons: soft press + glow */
.btn, button, .button{
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), filter .22s var(--ease-out);
}
.btn:hover, button:hover, .button:hover{
  filter: brightness(1.02);
  box-shadow: 0 10px 24px rgba(18,29,56,.12);
}
.btn:active, button:active, .button:active{
  transform: translateY(1px) scale(.99);
}

/* Links: underline slide */
a{
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.nav a{
  position: relative;
  text-decoration: none;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  height:2px;
  width:100%;
  transform: scaleX(0);
  transform-origin:left;
  background: currentColor;
  opacity:.35;
  transition: transform .28s var(--ease-out);
}
.nav a:hover::after{
  transform: scaleX(1);
}

/* Reveal on scroll (JS adds .reveal and toggles .is-inview) */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.is-inview{
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .card, .btn, button, .button, .reveal{
    transition: none !important;
    transform: none !important;
  }
  .nav a::after{ transition: none !important; }
}


/* =========================================================
   FORM INPUTS — Minimal / Solid Border (No Glow)
   ========================================================= */

input,
textarea,
select{
  border: 1px solid rgba(18, 29, 56, 0.22); /* azul escuro sutil */
  border-radius: 14px;
  box-shadow: none;
  transition: border-color .2s ease;
}

input:focus,
textarea:focus,
select:focus{
  outline: none;
  border-color: rgba(18, 29, 56, 0.45); /* apenas reforço sólido */
  box-shadow: none;
}

input::placeholder,
textarea::placeholder{
  color: rgba(18, 29, 56, 0.45);
}


/* =====================
   MOBILE FIXES (Jan/2026 - requested)
   - Only affects mobile (<= 920px / 768px)
   ===================== */

/* 1) Mobile menu: force dark text on the slide panel actions (topbar sets white understand) */
@media (max-width: 920px){
  .mobileNav .btn{
    color: rgba(11,18,38,.92) !important;
  }
  .mobileNav .btn--ghost{
    background: rgba(248,250,252,.92) !important;
    border-color: rgba(18,29,56,.12) !important;
  }
  .mobileNav .btn--primary{
    /* Match the solid orange CTA used in the desktop HERO */
    background: #F26821 !important;
    border-color: rgba(242,104,33,.55) !important;
    box-shadow: 0 14px 30px rgba(242,104,33,.28) !important;
    color: #fff !important;
  }
}

/* 2) Sobre > Abrangencia nacional: 2 columns on mobile to optimize space */
@media (max-width: 768px){
  .coverage-band__states{
    display: grid;
    /* Requested: 1 column on mobile */
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .coverage-band__states .state-tile{
    width: 100%;
    padding: 12px 12px;
    border-radius: 16px;
  }
}

/* 4) Mobile navigation smoothness: disable page fade transitions (reduces perceived "travadas" on low-end devices) */
@media (max-width: 768px){
  body{ transition: none !important; }
  html.is-entering body,
  body.is-exiting{ opacity: 1 !important; transform: none !important; }
}

/* 3) Home HERO: center content + use 2-column grid for indicators on mobile */
@media (max-width: 768px){
  .hero--static .hero__panel--premium{
    text-align: center;
  }
  .hero--static .hero__chips{ justify-content: center; }
  .hero--static .hero__cta--premium{ justify-content: center; }
  .hero--static .hero__meta{ justify-content: center; }

  /* 2 columns for the 3 indicators (3rd spans) */
  .hero--static .hero__stats--premium{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-items: stretch;
  }
  .hero--static .hero__stats--premium .heroStat{
    max-width: none;
    width: 100%;
  }
  .hero--static .hero__stats--premium .heroStat:nth-child(3){
    grid-column: 1 / -1;
  }
}

/* Very small phones: back to 1 column for readability */
@media (max-width: 380px){
  .hero--static .hero__stats--premium{ grid-template-columns: 1fr; }
}

/* Sobre > Abrangência (mobile): 1 coluna para melhor leitura */
@media (max-width: 420px){
  .coverage-band__states{ grid-template-columns: 1fr !important; }
}


/* HERO VIDEO PREMIUM LOOP (vPremium) */
.hero-bg__video{
  transition: opacity 1.8s ease-in-out !important;
  will-change: opacity, transform, filter;
  transform: translate3d(0, var(--heroParallax, 0px), 0) scale(1.04) !important;
  filter: brightness(0.95) contrast(1.06) saturate(1.08) !important;
}
@media (max-width: 640px){
  .hero-bg__video{transform: translate3d(0, var(--heroParallax, 0px), 0) scale(1.02) !important;}
}

/* =========================================================
   FINAL MOBILE UX + CONTRASTE (v3 -> v3.1)
   - Hero: link "Baixar apresentação corporativa" em preto no mobile
   - Abrangência: 1 coluna no mobile para melhor leitura
   - Contraste: kicker "Abrangência" mais legível
   - UX: feedback sutil ao toque nos cards de estado
========================================================= */

/* 1) HERO (mobile): meta link em preto dentro do painel */
@media (max-width: 768px){
  .hero--static .hero__panel--premium .hero__metaLink{
    color: #111 !important;
  }
  .hero--static .hero__panel--premium .hero__metaLink:hover{
    color: #000 !important;
    text-decoration: underline;
  }
}

/* 2) Sobre > Abrangência (mobile): 1 coluna para melhor leitura */
@media (max-width: 768px){
  .coverage-band__states{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .coverage-band__states .state-tile{
    width: 100% !important;
    text-align: center;
    padding: 14px 16px;
  }
}

/* 3) Contraste do kicker "Abrangência" (sem pesar) */
.coverage-band .kicker{
  color: rgba(18, 29, 56, .70);
  letter-spacing: .14em;
}

/* 4) Feedback ao toque (mobile) nos cards de estado */
.coverage-band__states .state-tile{
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
@media (hover: none) and (pointer: coarse){
  .coverage-band__states .state-tile:active{
    transform: scale(.99);
    background-color: rgba(18, 29, 56, .03);
  }
}

/* ===============================
   LOGIN (ACESSO RESTRITO)
   =============================== */

body.loginPage{
  min-height: 100vh;
  background: #071A2A;
  color: #ffffff;
}

.loginWrap{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  overflow: hidden;
}

.loginBg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 65% 35%, rgba(70,111,182,.35), rgba(7,26,42,0) 60%),
    radial-gradient(900px 600px at 20% 70%, rgba(18,29,56,.55), rgba(7,26,42,0) 65%),
    linear-gradient(180deg, #071A2A 0%, #041423 100%);
}

.loginBg__waves{
  position: absolute;
  inset: -35% -10%;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(255,255,255,.10) 0 2px, rgba(255,255,255,0) 2px 10px),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.10) 50%, rgba(255,255,255,0) 100%);
  opacity: .20;
  filter: blur(0.2px);
  transform: rotate(-10deg);
  mask-image: radial-gradient(circle at 55% 45%, #000 0%, #000 55%, transparent 72%);
}

.loginBg__waves::before,
.loginBg__waves::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 55% 45%, rgba(255,255,255,.18) 0 1px, rgba(255,255,255,0) 1px 34px);
  opacity: .45;
  transform: rotate(0deg);
}

.loginBg__waves::after{
  opacity: .25;
  transform: rotate(10deg) scale(1.05);
}

.loginBg__fade{
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 70%, rgba(0,0,0,.75) 100%);
}

.loginCard{
  position: relative;
  width: min(520px, 100%);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 24px 24px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}

.loginCard__brand{
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  margin-bottom: 18px;
}

.loginCard__logo{
  width: min(320px, 78%);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

.loginCard__subtitle{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.loginForm{
  display: grid;
  gap: 14px;
}

.loginField{ display: grid; gap: 8px; }

.loginField__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.loginField__label{
  font-size: 12px;
  color: rgba(255,255,255,.86);
}

.loginField__hint{
  font-size: 12px;
  color: rgba(255,255,255,.70);
  text-decoration: none;
}
.loginField__hint:hover{ text-decoration: underline; }

.loginField__control{
  position: relative;
  display: flex;
  align-items: center;
}

.loginField__icon{
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  background-color: rgba(255,255,255,.78);
  pointer-events: none;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.loginField__icon.is-user{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4.5 4.5 0 1 0-4.5-4.5A4.51 4.51 0 0 0 12 12Zm0 2c-4.4 0-8 2.24-8 5v1h16v-1c0-2.76-3.6-5-8-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4.5 4.5 0 1 0-4.5-4.5A4.51 4.51 0 0 0 12 12Zm0 2c-4.4 0-8 2.24-8 5v1h16v-1c0-2.76-3.6-5-8-5Z'/%3E%3C/svg%3E");
}

.loginField__icon.is-lock{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 9h-1V7a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Zm-7-2a2 2 0 0 1 4 0v2h-4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 9h-1V7a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Zm-7-2a2 2 0 0 1 4 0v2h-4Z'/%3E%3C/svg%3E");
}

.loginField input,
.loginField select{
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7, 26, 42, .22);
  color: #ffffff;
  padding: 0 12px;
  outline: none;
}

.loginField select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.75) 50%),
    linear-gradient(135deg, rgba(255,255,255,.75) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.loginField input::placeholder{ color: rgba(255,255,255,.55); }

.loginField input:focus,
.loginField select:focus{
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 0 0 3px rgba(70,111,182,.14);
}

.loginField__toggle{
  position: absolute;
  right: 10px;
  border: none;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}

.loginField__toggle::before{
  content: "";
  width: 18px;
  height: 18px;
  background-color: rgba(255,255,255,.80);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7Zm0 11a4 4 0 1 1 4-4 4 4 0 0 1-4 4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7Zm0 11a4 4 0 1 1 4-4 4 4 0 0 1-4 4Z'/%3E%3C/svg%3E");
  opacity: .95;
}

.loginField__toggle.is-revealed::before{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M2 5.27 3.28 4 20 20.72 18.73 22l-2.02-2.02A10.9 10.9 0 0 1 12 21C5 21 2 14 2 14a20.6 20.6 0 0 1 4.06-5.9Zm10 13.73a8.9 8.9 0 0 0 3.16-.58l-1.7-1.7a4 4 0 0 1-5.18-5.18L6.9 9.16A17.3 17.3 0 0 0 4.12 14S6.73 19 12 19Zm0-14c7 0 10 7 10 7a20.3 20.3 0 0 1-3.17 4.64l-2.16-2.16A4 4 0 0 0 9.52 7.68L7.6 5.76A11.1 11.1 0 0 1 12 5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M2 5.27 3.28 4 20 20.72 18.73 22l-2.02-2.02A10.9 10.9 0 0 1 12 21C5 21 2 14 2 14a20.6 20.6 0 0 1 4.06-5.9Zm10 13.73a8.9 8.9 0 0 0 3.16-.58l-1.7-1.7a4 4 0 0 1-5.18-5.18L6.9 9.16A17.3 17.3 0 0 0 4.12 14S6.73 19 12 19Zm0-14c7 0 10 7 10 7a20.3 20.3 0 0 1-3.17 4.64l-2.16-2.16A4 4 0 0 0 9.52 7.68L7.6 5.76A11.1 11.1 0 0 1 12 5Z'/%3E%3C/svg%3E");
}

.loginField__toggle:hover{ background: rgba(255,255,255,.06); }
.loginField__toggle:active{ background: rgba(255,255,255,.08); }

.loginCheck{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  padding: 4px 2px;
}

.loginCheck input{ accent-color: #466FB6; }

.loginBtn{
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, #466FB6 0%, #2E5EA9 100%);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease;
}

@media (max-width: 480px){
  .loginCard{ padding: 20px 18px 18px; border-radius: 18px; }
  .loginCard__logo{ width: min(280px, 78%); }
  .loginField input, .loginField select{ height: 42px; }
  .loginBtn{ height: 42px; }
}

.loginBtn:hover{ filter: brightness(1.06); }
.loginBtn:active{ transform: translateY(1px); }

.loginNote{
  margin: 8px 2px 0;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.35;
}

/* Mensagem de erro (padrão corporativo) */
.loginNote.is-error{
  color: rgba(255,255,255,.92);
  background: rgba(231, 76, 60, 0.14);
  border: 1px solid rgba(231, 76, 60, 0.28);
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

/* Topbar button (Acesso Restrito) */
.btn--restricted{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--restricted::before{
  content: "\1F512"; /* 🔒 */
  font-size: 14px;
  line-height: 1;
}

/* Icon-only variant */
.btn--restricted.is-icon-only{
  gap: 0;
  padding: 8px;
  min-width: 0 !important;
  width: auto !important;
  justify-content: center;
}

/* =====================================================
   Services Photo Gallery (minimal, premium)
   ===================================================== */

.svcGalleryBlock{ margin-top: 10px; }

.svcGallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 1100px){
  .svcGallery{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px){
  .svcGallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .svcGallery{ grid-template-columns: 1fr; }
}

.svcCard{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: inherit;
  padding: 0;
  text-align:left;
  border-radius: 18px;
  overflow:hidden;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.svcCard:focus-visible{
  outline: 3px solid rgba(242,104,33,0.55);
  outline-offset: 2px;
}

.svcCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
}

.svcCard__media{
  display:block;
  position:relative;
  overflow:hidden;
  background: rgba(0,0,0,0.24);
  padding: 0;
  /* Premium, consistent covers: 16:9 frame (no crop; image is letterboxed if needed) */
  aspect-ratio: 16 / 9;
}

/* Premium "no-crop" preview: show full frame inside the 16:9 frame */
.svcCard__media::before{
  content:"";
  position:absolute;
  inset:-22px;
  background-image: var(--svc-bg);
  background-size: cover;
  background-position: center;
  filter: blur(22px) saturate(1.02) brightness(0.95);
  transform: scale(1.12);
  opacity: .28;
}

/* Soft vignette to keep a premium, consistent tone */
.svcCard__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(120% 90% at 50% 30%, rgba(255,255,255,0.10), rgba(0,0,0,0.24) 62%, rgba(0,0,0,0.32));
  opacity: .95;
  z-index: 0;
}


.svcCard__media img{
  width:100%;
  height:100%;
  display:block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0,0,0,0.10);
  transform: none;
  transition: transform .35s ease;
}

.svcCard:hover .svcCard__media img{ transform: none; }

.svcCard__meta{
  display:grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 8px;
  padding: 12px 14px 14px;
}

.svcCard__label{
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .92;
}

.svcCard__title{
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: .1px;
}

.svcCard__sub{
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  font-size: 12px;
  opacity: .78;
  white-space: nowrap;
}

/* Modal */
.svcModal[hidden]{ display:none !important; }

.svcModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}

.svcModal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(2, 10, 24, 0.72);
  backdrop-filter: blur(10px);
}

.svcModal__panel{
  position:relative;
  width: min(1040px, 100%);
  /* Fill available viewport height so the image can always fit without scroll */
  max-height: calc(100vh - 36px);
  /* IMPORTANT: without an explicit height, the flex stage can collapse and the image won't appear */
  height: calc(100vh - 36px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7, 16, 34, 0.88);
  box-shadow: 0 24px 70px rgba(0,0,0,0.50);
  overflow:hidden;
  display:flex;
  flex-direction: column;
}

.svcModal__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.svcModal__tools{
  display:flex;
  align-items:center;
  gap: 8px;
}

.svcModal__tool{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor:pointer;
}

.svcModal__tool:hover{ background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.26); }
.svcModal__tool:focus-visible{ outline: 3px solid rgba(242,104,33,0.55); outline-offset: 2px; }

.svcModal__zoom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor:pointer;
}

.svcModal__zoom:hover{ background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.26); }
.svcModal__zoom:focus-visible{ outline: 3px solid rgba(242,104,33,0.55); outline-offset: 2px; }

.svcModal__title{
  font-weight: 650;
  letter-spacing: .1px;
  font-size: 14px;
  color: #fff;
}

.svcModal__counter{
  font-size: 12px;
  opacity: .78;
  color: rgba(255,255,255,0.82);
}

.svcModal__stage{
  position:relative;
  flex: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
  background: rgba(0,0,0,0.18);
  /* Default: always fit image inside the viewport (no scroll). */
  overflow:hidden;
  min-height: 0;
  touch-action: none;
}

.svcModal__img{
  position:absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  /* IMPORTANT: prevent global img{max-width:100%} from constraining width while height is fixed,
     which causes aspect distortion ("achatado/prensado") when we size via natural px + transforms. */
  max-width: none;
  max-height: none;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.40);
  background: rgba(0,0,0,0.18);
  transform: translate(-50%,-50%) translate(var(--tx, 0px), var(--ty, 0px)) scale(var(--scale, 1));
  transform-origin: center;
  will-change: transform;
  cursor: grab;
}

.svcModal.is-dragging .svcModal__img{ cursor: grabbing; }

.svcModal__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.svcModal__nav:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-50%) scale(1.03);
}

.svcModal__nav:focus-visible{ outline: 3px solid rgba(242,104,33,0.55); outline-offset: 2px; }

.svcModal__nav.prev{ left: 14px; }
.svcModal__nav.next{ right: 14px; }

.svcModal__close{
  /* Close button lives inside the tools row to avoid overlapping the counter */
  position: static;
  top: auto;
  right: auto;
  width: 34px;
  height: 30px;
  min-width: 34px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  z-index: auto;
}

.svcModal__close:hover{ background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.26); }

.svcModal__thumbs{
  display:flex;
  gap: 8px;
  padding: 10px 12px 12px;
  overflow:auto;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.06);
}

.svcThumb{
  flex: 0 0 auto;
  width: 62px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  padding: 0;
  cursor:pointer;
  overflow:hidden;
  transition: border-color .18s ease, transform .18s ease;
}

.svcThumb img{
  width:100%;
  height:100%;
  object-fit: contain;
  padding: 4px;
  display:block;
}

.svcThumb.is-active{
  border-color: rgba(242,104,33,0.75);
  transform: translateY(-1px);
}

@media (max-width: 520px){
  .svcModal{ padding: 12px; }
  .svcModal__nav{ width: 40px; height: 40px; }
  .svcModal__nav.prev{ left: 10px; }
  .svcModal__nav.next{ right: 10px; }
}

@media (prefers-reduced-motion: reduce){
  .svcCard, .svcCard__media img, .svcModal__nav, .svcThumb{ transition: none !important; }
}

/* prevent background scroll while modal open */
html.svcModalOpen, html.svcModalOpen body{ overflow: hidden; }
