
:root{
  --bg:#ffffff;
  --soft:#F7F9FC;
  --text:#121826;
  --muted:#5A6472;
  --line: rgba(18,24,38,.10);

  --brand:#1FA67A;
  --brand2:#127A59;
  --accent:#2A7DE1;

  --shadow: 0 18px 50px rgba(18,24,38,.10);
  --shadow2: 0 10px 30px rgba(18,24,38,.08);
  --radius: 18px;

  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(92vw, var(--container));
  margin-inline:auto;
}

.top-progress{
  position:fixed; inset:0 0 auto 0;
  height:3px;
  z-index:9999;
  background:transparent;
}
.top-progress span{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width .08s linear;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.70);
  border-bottom:1px solid var(--line);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:34px; height:34px;
  border-radius:12px;
  background: radial-gradient(circle at 30% 30%, rgba(31,166,122,.35), transparent 60%),
              linear-gradient(135deg, rgba(31,166,122,.95), rgba(18,122,89,.95));
  box-shadow: 0 10px 25px rgba(31,166,122,.22);
}
.brand__text{font-weight:600; letter-spacing:.2px}

.nav{
  display:flex;
  gap:18px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.60);
}
.nav a{
  font-weight:700;
  font-size:13.5px;
  color: rgba(18,24,38,.82);
  padding:8px 10px;
  border-radius:999px;
  transition: background .2s ease, transform .2s ease;
}
.nav a:hover{
  background: rgba(31,166,122,.10);
  transform: translateY(-1px);
}

.header__cta{display:flex; gap:10px; align-items:center}

.menu{
  display:none;
  width:42px; height:42px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius:14px;
  cursor:pointer;
}
.menu span{
  display:block; height:2px; width:18px;
  background: rgba(18,24,38,.72);
  margin: 4px auto;
  border-radius:99px;
}

.mobile-nav{
  display:none;
  padding: 10px 0 16px;
  border-top:1px solid var(--line);
}
.mobile-nav a{
  display:block;
  padding:12px 0;
  font-weight:800;
}
.mobile-nav .btn{width:100%; justify-content:center; margin-top:8px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  user-select:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  position:relative;
  overflow:hidden;
}
.btn:active{transform: translateY(0px) scale(.99)}

.btn--primary{
  color:white;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 18px 40px rgba(31,166,122,.22);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(31,166,122,.28);
}

.btn--ghost{
  background: rgba(255,255,255,.55);
  border-color: var(--line);
}
.btn--ghost:hover{
  background: rgba(31,166,122,.08);
  transform: translateY(-1px);
}

.btn--soft{
  background: rgba(18,24,38,.04);
  border-color: rgba(18,24,38,.08);
}
.btn--soft:hover{
  background: rgba(18,24,38,.06);
  transform: translateY(-1px);
}

.btn--lg{padding:14px 18px; border-radius:16px}
.btn--xl{padding:16px 20px; border-radius:18px}

.btn__shine{
  position:absolute;
  inset:-40% auto -40% -30%;
  width:40%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  filter: blur(2px);
  animation: shine 2.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shine{
  0%,55%{transform: translateX(-20%) rotate(18deg); opacity:.0}
  70%{opacity:.65}
  100%{transform: translateX(420%) rotate(18deg); opacity:0}
}

.hero{
  position:relative;
  padding: 72px 0 36px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:-20% -20% -30% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(31,166,122,.16), transparent 52%),
    radial-gradient(circle at 78% 24%, rgba(42,125,225,.12), transparent 48%),
    radial-gradient(circle at 55% 70%, rgba(18,122,89,.10), transparent 55%),
    linear-gradient(180deg, rgba(247,249,252,.85), rgba(255,255,255,1));
  z-index:0;
}

.hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(31,166,122,.22);
  background: rgba(255,255,255,.60);
  box-shadow: var(--shadow2);
  font-weight:800;
  font-size:13px;
  color: rgba(18,24,38,.78);
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(31,166,122,.12);
}

.hero h1{
  margin:16px 0 12px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -1.2px;
}
.accent{color: var(--brand2)}
.accent2{color: var(--accent)}

.lead{
  margin: 0 0 18px;
  font-size: 16.8px;
  color: rgba(18,24,38,.82);
  max-width: 56ch;
}
.muted{color: var(--muted)}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 18px 0 20px;
}

.trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.trust__item{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow2);
}
.trust__kpi{display:block; font-weight:900; font-size:16px}
.trust__lbl{display:block; font-weight:800; font-size:12px; color: rgba(18,24,38,.62)}

.fineprint{
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(18,24,38,.55);
}

.hero__visual{position:relative}
.frame{
  border-radius: 26px;
  padding: 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  position:relative;
}
.frame img{
  border-radius: 20px;
  width:100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.frame__glow{
  position:absolute;
  inset:auto 18% -28% 18%;
  height: 160px;
  background: radial-gradient(circle at 50% 50%, rgba(31,166,122,.35), transparent 70%);
  filter: blur(18px);
  z-index:-1;
}

.cards-float{
  position:absolute;
  right:-16px;
  bottom: 18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mini-card{
  width: 220px;
  padding: 14px 14px;
  border-radius: 18px;
  border:1px solid rgba(18,24,38,.10);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  transform: translateZ(0);
}
.mini-card__title{display:block; font-weight:900; font-size:13px}
.mini-card__desc{display:block; font-weight:700; font-size:12px; color: rgba(18,24,38,.58)}

.section{
  padding: 70px 0;
}
.section--soft{
  background: linear-gradient(180deg, var(--soft), #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.section__head h2{
  margin:0;
  font-size: clamp(26px, 2.2vw, 36px);
  letter-spacing: -.6px;
}
.section__head p{
  margin:0;
  max-width: 52ch;
  color: rgba(18,24,38,.68);
  font-weight:700;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  padding: 22px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
}
.icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight:900;
  color: var(--brand2);
  background: rgba(31,166,122,.10);
  border: 1px solid rgba(31,166,122,.22);
  margin-bottom: 12px;
}
.card h3{margin: 6px 0 8px; font-size: 18px; letter-spacing: -.2px}
.card p{margin:0; color: rgba(18,24,38,.66); font-weight:650}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 26px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow);
}
.split__left h3{margin:0 0 10px; font-size:20px}
.list{list-style:none; padding:0; margin: 0 0 14px; display:grid; gap:10px}
.list li{display:flex; gap:10px; align-items:flex-start; font-weight:750; color: rgba(18,24,38,.72)}
.check{
  width:18px; height:18px; border-radius: 6px;
  background: rgba(31,166,122,.15);
  border: 1px solid rgba(31,166,122,.28);
  position:relative;
  margin-top:2px;
}
.check:after{
  content:"";
  position:absolute;
  left:5px; top:3px;
  width:5px; height:9px;
  border-right: 2px solid var(--brand2);
  border-bottom: 2px solid var(--brand2);
  transform: rotate(38deg);
}

.callout{
  margin: 10px 0 16px;
  padding: 14px 14px;
  border-radius: 18px;
  border:1px solid rgba(42,125,225,.18);
  background: rgba(42,125,225,.06);
  font-weight:800;
  color: rgba(18,24,38,.75);
}

.product{
  position:relative;
  border-radius: 22px;
  padding: 14px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.product img{
  width:100%;
  aspect-ratio: 4/4;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(18,24,38,.02);
}
.product__badge{
  position:absolute;
  left: 14px;
  top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight:900;
  font-size:12px;
  color: rgba(18,24,38,.78);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
}
.product__badge--alt{
  left:auto; right: 14px;
  top:auto; bottom: 14px;
  border-color: rgba(31,166,122,.25);
}

.slider{
  display:grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 10px;
  align-items:center;
  padding: 14px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
}
.slider__btn{
  height:46px; width:46px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  cursor:pointer;
  font-size: 22px;
  font-weight: 900;
  color: rgba(18,24,38,.72);
  transition: transform .18s ease, background .18s ease;
}
.slider__btn:hover{transform: translateY(-1px); background: rgba(31,166,122,.08)}
.slider__track{
  display:flex;
  gap: 12px;
  overflow:hidden;
  scroll-behavior:smooth;
}
.quote{
  min-width: 100%;
  padding: 18px;
  border-radius: 22px;
  border:1px solid rgba(18,24,38,.08);
  background: rgba(18,24,38,.02);
}
.quote p{
  margin: 0 0 10px;
  font-weight: 750;
  color: rgba(18,24,38,.78);
}
.quote span{
  font-weight: 900;
  font-size: 12px;
  color: rgba(18,24,38,.55);
}

.logos{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.logo-pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  font-weight: 900;
  font-size: 12px;
  color: rgba(18,24,38,.62);
}

.faq{
  display:grid;
  gap: 12px;
}
.faq__item{
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.faq__item summary{
  padding: 18px 18px;
  cursor:pointer;
  font-weight: 900;
  list-style:none;
  position:relative;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary:after{
  content:"+";
  position:absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 12px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.70);
  font-weight: 900;
  color: rgba(18,24,38,.66);
}
.faq__item[open] summary:after{content:"–"}
.faq__content{
  padding: 0 18px 18px;
  color: rgba(18,24,38,.68);
  font-weight: 720;
}

.section--cta{
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 15% 40%, rgba(31,166,122,.14), transparent 52%),
    radial-gradient(circle at 80% 35%, rgba(42,125,225,.12), transparent 48%),
    linear-gradient(180deg, #fff, var(--soft));
  border-top: 1px solid var(--line);
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.cta-box h2{margin:0 0 8px; font-size: clamp(22px, 2vw, 32px); letter-spacing:-.5px}
.cta-box p{margin:0; color: rgba(18,24,38,.68); font-weight: 750}
.cta-box__meta{display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  font-weight: 900;
  font-size: 12px;
  color: rgba(18,24,38,.62);
}
.cta-box__actions{display:flex; flex-direction:column; align-items:flex-end; gap: 10px}

.waf{
  position:fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 20px 55px rgba(31,166,122,.35);
  display:grid;
  place-items:center;
  z-index: 1200;
}
.waf__icon{font-size: 22px}
.waf__pulse{
  position:absolute;
  inset: 50% auto auto 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(31,166,122,.35);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse{
  0%{box-shadow: 0 0 0 0 rgba(31,166,122,.35)}
  100%{box-shadow: 0 0 0 22px rgba(31,166,122,0)}
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  z-index: 2000;
  display:none;
}
.modal.is-open{display:block}
.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(18,24,38,.55);
  backdrop-filter: blur(6px);
}
.modal__panel{
  position:relative;
  width:min(92vw, 980px);
  margin: 7vh auto;
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: 0 30px 120px rgba(18,24,38,.35);
  overflow:hidden;
}
.modal__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 18px 18px;
  border-bottom:1px solid var(--line);
}
.x{
  width: 40px; height: 40px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  cursor:pointer;
  font-weight: 900;
}
.modal__body{padding: 18px}
.modal__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.modal__card{
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(18,24,38,.08);
  background: rgba(18,24,38,.02);
}
.modal__card h3{margin:0 0 6px; font-size: 15px}
.modal__card p{margin:0; color: rgba(18,24,38,.68); font-weight:720}
.modal__img{
  margin-top: 12px;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(18,24,38,.08);
}
.modal__img img{width:100%; height: 260px; object-fit: cover}
.modal__actions{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  justify-content:flex-end;
}

.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap: 22px}
  .frame img{aspect-ratio: 16/11}
  .cards-float{position:static; flex-direction:row; margin-top: 12px}
  .mini-card{width:auto; flex:1}
  .split{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr; }
  .section__head{flex-direction:column; align-items:flex-start}
  .cta-box{flex-direction:column; align-items:flex-start}
  .cta-box__actions{align-items:flex-start}
  .nav, .header__cta{display:none}
  .menu{display:block}
  .mobile-nav{display:none}
  .mobile-nav.is-open{display:block}
  .modal__grid{grid-template-columns: 1fr}
}

/* === OVERRIDE PALETA: VERDE -> AZUL (SEM MUDAR LAYOUT) === */
:root{
  --brand: #1E3A8A;
  --brandHover: #1D4ED8;
  --brandSoft: #EFF6FF;
  --brandGlow: rgba(30,58,138,.22);
}

/* Botões */
.btn--primary{
  background: var(--brand) !important;
  border-color: var(--brand) !important;
}
.btn--primary:hover{
  background: var(--brandHover) !important;
  border-color: var(--brandHover) !important;
}

/* Botões suaves / pills */
.btn--soft,
.pill{
  background: var(--brandSoft) !important;
  color: var(--brand) !important;
  border-color: rgba(30,58,138,.18) !important;
}

/* Textos de destaque */
.accent{
  color: var(--brand) !important;
}

/* Bolinhas/checks */
.check{
  background: var(--brand) !important;
}

/* Callout */
.callout{
  border-left-color: var(--brand) !important;
  background: var(--brandSoft) !important;
}

/* KPI/indicadores */
.trust__kpi{
  color: var(--brand) !important;
}

/* Botão flutuante */
.waf{
  background: var(--brand) !important;
  box-shadow: 0 14px 30px var(--brandGlow) !important;
}
.waf:hover{
  transform: scale(1.08) !important;
}

/* CTA final (se sua seção tiver fundo verde) */
.section--cta{
  background: var(--brand) !important;
}
.section--cta .btn--primary{
  background: #ffffff !important;
  color: var(--brand) !important;
}
.section--cta .btn--primary:hover{
  background: rgba(255,255,255,.92) !important;
}

/* === FIX HERO FADE (tirar verde e puxar pro azul) === */
.hero{
  background: radial-gradient(1200px 700px at 10% 10%, rgba(30,58,138,.14) 0%, rgba(30,58,138,0) 60%),
              linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 70%) !important;
}

.hero__bg{
  background: radial-gradient(800px 500px at 20% 20%, rgba(30,58,138,.22) 0%, rgba(30,58,138,0) 65%) !important;
  filter: saturate(1) !important;
}

/* === FIX HALO/SOMBRA VERDE DOS BOTÕES (forçar azul) === */
.btn--primary{
  box-shadow: 0 14px 34px rgba(30,58,138,.26) !important;
}

.btn--primary:hover{
  box-shadow: 0 16px 40px rgba(30,58,138,.32) !important;
}

/* se existir glow/shine interno */
.btn__shine{
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 55%) !important;
}

/* se o seu CSS usa filtro de drop-shadow em svg/ícones dentro do botão */
.btn--primary svg,
.btn--primary img{
  filter: none !important;
}

/* ===== PILL EM TÓPICOS (MOBILE) SEM QUEBRAR DESKTOP ===== */
.pill--topics{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* pontinho automático entre itens no desktop */
.pill--topics span{
  display: inline-flex;
  align-items: center;
}
.pill--topics span:not(:last-child)::after{
  content: "•";
  margin-left: 10px;
  opacity: .65;
}

/* no mobile vira tópicos (um em cima do outro) */
@media (max-width: 768px){
  .pill--topics{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .pill--topics span:not(:last-child)::after{
    content: "";
    margin: 0;
  }
  .pill--topics span{
    font-weight: 700;
  }
}

/* ===== MOBILE: transformar a "pill" em chips compactos (fica premium) ===== */
@media (max-width: 768px){
  .pill.pill--topics{
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    gap: 8px !important;
  }

  .pill.pill--topics span{
    background: rgba(255,255,255,.72) !important;
    border: 1px solid rgba(30,58,138,.18) !important;
    color: rgba(17,24,39,.90) !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  /* check azul antes de cada tópico */
  .pill.pill--topics span::before{
    content: "✓";
    display: inline-block;
    margin-right: 8px;
    color: #1E3A8A;
    font-weight: 900;
  }
}

/* ===== CHECKMARKS PREMIUM NA LISTA "O que sustenta o padrão" ===== */

.list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1E3A8A;
  font-weight: 900;
  font-size: 16px;
}

/* Remover bolinhas antigas */
.check {
  display: none !important;
}

/* ===== TRUST: sair do visual de balões e virar strip institucional ===== */
.trust{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: 0 !important;
  margin-top: 18px !important;
  border: 1px solid rgba(17,24,39,.10) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,.70) !important;
  box-shadow: 0 10px 30px rgba(17,24,39,.06) !important;
}

.trust__item{
  padding: 14px 16px !important;
  border-right: 1px solid rgba(17,24,39,.08) !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
}

.trust__item:last-child{
  border-right: 0 !important;
}

.trust__kpi{
  display: block !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  letter-spacing: .2px !important;
}

.trust__lbl{
  display: block !important;
  margin-top: 2px !important;
  font-size: 12.5px !important;
  color: rgba(17,24,39,.62) !important;
  font-weight: 600 !important;
}

/* mobile: vira lista premium (sem cara de balão) */
@media (max-width: 768px){
  .trust{
    grid-template-columns: 1fr !important;
  }
  .trust__item{
    border-right: 0 !important;
    border-bottom: 1px solid rgba(17,24,39,.08) !important;
  }
  .trust__item:last-child{
    border-bottom: 0 !important;
  }
}

/* ===== FORÇAR MARCA MAIS FORTE NO HEADER ===== */

.header .brand {
  font-size: 26px !important;
  font-weight: 900 !important;
  letter-spacing: -0.8px !important;
}

.header .brand strong {
  color: #1E3A8A !important;
  font-weight: 900 !important;
}

/* ===== Ajuste botão header alinhamento perfeito ===== */

.header .btn--primary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  height: 52px !important;
  padding: 0 24px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* ===== Header CTA: alinhado e bonito (sem cara de apertado) ===== */
.header .btn--primary{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;

  padding: 12px 18px !important;
  border-radius: 14px !important;

  line-height: 1.15 !important;
  white-space: normal !important;  /* deixa quebrar se precisar */
  box-shadow: 0 12px 26px rgba(30,58,138,.22) !important;
}

/* mobile: evita ficar grande demais */
@media (max-width: 520px){
  .header .btn--primary{
    padding: 10px 14px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
  }
}
