/* =========================================================
   Services — uma seção, quatro frentes (sem reel/stack)
   ========================================================= */
.services--unified{
  padding:clamp(56px,7vw,96px) 0 clamp(64px,8vw,100px)!important;
  background:
    linear-gradient(180deg,#f7f4ef 0%,#f3f0e9 100%)!important;
}
.services--unified .service-reel,
.services--unified .service-experience{
  display:none!important;
}

.services-uni{
  width:min(100%,1120px);
  margin:0 auto;
  padding:0 clamp(1rem,3vw,1.5rem);
}
/* Headline no estilo antigo do intro (grid 2 col, display grande) */
.services-uni__head{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
  align-items:end;
  gap:clamp(1.25rem,3vw,2.25rem);
  text-align:left;
  max-width:none;
  margin:0 0 clamp(1.75rem,3.5vw,2.5rem);
  padding:0 0 clamp(1.15rem,2vw,1.5rem);
  border-bottom:1px solid rgba(17,17,17,.08);
  position:relative;
}
.services-uni__head::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,106,0,.22) 40%,rgba(255,106,0,.22) 60%,transparent);
  opacity:.7;
  pointer-events:none;
}
.services-uni__head-main{
  min-width:0;
}
.services-uni__head .eyebrow{
  margin:0 0 clamp(.85rem,1.5vw,1.15rem);
}
.services-uni__head h2{
  margin:0;
  font:650 clamp(2.4rem,4.6vw,4.5rem)/.98 var(--display,Inter,system-ui,sans-serif);
  letter-spacing:-.04em;
  color:#111;
}
.services-uni__head h2 em{
  font-family:"Libre Bodoni",Georgia,serif;
  font-style:italic;
  font-weight:500;
  color:#ff6a00;
  -webkit-text-fill-color:#ff6a00;
  background:none;
}
.services-uni__lead{
  margin:0 0 .15rem;
  max-width:22rem;
  justify-self:end;
  font-size:clamp(.95rem,1.15vw,1.02rem);
  line-height:1.55;
  color:#6f675e;
  letter-spacing:-.01em;
}

.services-uni__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}

.svc-card{
  display:flex;
  flex-direction:column;
  gap:0;
  min-height:100%;
  min-width:0;
  padding:1.4rem 1.3rem 1.15rem;
  background:#fff;
  border:1px solid rgba(17,17,17,.07);
  border-radius:18px;
  box-shadow:
    0 1px 2px rgba(17,17,17,.05),
    0 8px 16px rgba(40,28,18,.06),
    0 22px 44px rgba(40,28,18,.1);
  transition:transform .25s cubic-bezier(.22,1,.36,1),box-shadow .25s ease,border-color .25s ease;
}
.svc-card__link{
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:100%;
  color:inherit;
  text-decoration:none;
  border-radius:inherit;
  outline-offset:4px;
}
.svc-card:has(.svc-card__link):hover{
  border-color:rgba(255,106,0,.28);
}
.svc-card__icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  margin:0 0 1rem;
  background:rgba(255,106,0,.08);
  color:#ff6a00;
  border:1px solid rgba(255,106,0,.18);
  flex-shrink:0;
}
.svc-card__icon svg{
  width:20px;
  height:20px;
  display:block;
}
.svc-card__title{
  margin:0 0 .55rem;
  font-size:1.05rem;
  font-weight:750;
  letter-spacing:-.03em;
  line-height:1.2;
  color:#111;
}
.svc-card__text{
  margin:0 0 1.25rem;
  flex:1 1 auto;
  font-size:.9rem;
  line-height:1.5;
  color:#6f675e;
  letter-spacing:-.01em;
}

/* Números: linhas limpas, sem “+ mais”, sem mini-cards apertados */
.svc-card__metrics{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-top:auto;
  padding:.85rem 0 0;
  border-top:1px solid rgba(17,17,17,.08);
}
.svc-metric{
  display:grid;
  grid-template-columns:4.1rem 1fr;
  align-items:baseline;
  gap:.65rem;
  min-width:0;
  padding:.55rem 0;
  background:none;
  border:0;
  border-bottom:1px solid rgba(17,17,17,.07);
  border-radius:0;
  box-shadow:none;
}
.svc-metric:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.svc-metric:first-child{
  padding-top:.15rem;
}
.svc-metric__value{
  display:inline-flex;
  align-items:baseline;
  gap:.2em;
  font-size:1.15rem;
  font-weight:780;
  letter-spacing:-.04em;
  line-height:1.15;
  color:#1f9d57; /* sobe = verde */
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
/* queda = seta para baixo + vermelho */
.svc-metric__value--down{
  color:#e11d2e;
}
/* setas via span .svc-metric__arrow (JS) — ::before como fallback */
.svc-metric__value--down:not(.has-arrow)::before{
  content:"↓";
  margin-right:.15em;
  font-weight:700;
  font-size:.85em;
  color:inherit;
}
.svc-metric__value:not(.svc-metric__value--down):not(.has-arrow)::before{
  content:"↑";
  margin-right:.15em;
  font-weight:700;
  font-size:.85em;
  color:inherit;
}
.svc-metric__arrow{
  display:inline-block;
  font-weight:700;
  font-size:.85em;
  line-height:1;
  color:inherit;
  transform-origin:center;
  will-change:transform,opacity;
}
.svc-metric__num{
  display:inline-block;
  font-variant-numeric:tabular-nums;
  min-width:2.4ch;
}
.svc-metric__label{
  display:block;
  font-size:.82rem;
  line-height:1.3;
  font-weight:550;
  letter-spacing:-.015em;
  color:#5f574e;
}

.services-uni__note{
  margin:clamp(1.5rem,3vw,2rem) auto 0;
  max-width:40rem;
  text-align:center;
  font-size:.88rem;
  line-height:1.5;
  color:#8a8278;
  letter-spacing:-.01em;
}

@media (hover:hover) and (pointer:fine){
  .svc-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,106,0,.22);
    box-shadow:
      0 4px 10px rgba(17,17,17,.06),
      0 16px 28px rgba(40,28,18,.08),
      0 28px 56px rgba(255,106,0,.12);
  }
}

@media (max-width:1100px){
  .services-uni__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
  }
}

@media (max-width:960px){
  .services-uni__head{
    grid-template-columns:1fr;
    align-items:start;
    gap:1rem;
  }
  .services-uni__lead{
    justify-self:start;
    max-width:34rem;
  }
  .services-uni__head h2{
    font-size:clamp(2.1rem,7vw,3.2rem);
  }
  .services-uni__grid{
    gap:14px;
  }
}

@media (max-width:560px){
  .services--unified{
    padding:clamp(48px,10vw,64px) 0 clamp(52px,10vw,72px)!important;
  }
  .services-uni__grid{
    grid-template-columns:1fr;
    gap:14px;
    max-width:440px;
    margin:0 auto;
  }
  .svc-card{
    padding:1.3rem 1.2rem 1.15rem;
  }
  .svc-metric{
    grid-template-columns:3.85rem 1fr;
    gap:.55rem;
    padding:.5rem 0;
  }
  .svc-metric__value{font-size:1.08rem}
  .svc-metric__label{font-size:.8rem}
  .services-uni__head h2{font-size:clamp(1.85rem,9vw,2.4rem)}
  .services-uni__note{text-align:left;max-width:none}
}

/* reveal */
.js .services-uni.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .55s cubic-bezier(.22,1,.36,1),transform .55s cubic-bezier(.22,1,.36,1);
}
.js .services-uni.reveal.is-visible{
  opacity:1;
  transform:none;
}
.js .services-uni.reveal.is-visible .svc-card{
  animation:svcCardIn .55s cubic-bezier(.22,1,.36,1) both;
}
.js .services-uni.reveal.is-visible .svc-card:nth-child(1){animation-delay:.08s}
.js .services-uni.reveal.is-visible .svc-card:nth-child(2){animation-delay:.16s}
.js .services-uni.reveal.is-visible .svc-card:nth-child(3){animation-delay:.24s}
.js .services-uni.reveal.is-visible .svc-card:nth-child(4){animation-delay:.32s}

@keyframes svcCardIn{
  from{opacity:0;transform:translateY(16px)}
  to{opacity:1;transform:none}
}

@media (prefers-reduced-motion:reduce){
  .js .services-uni.reveal,
  .js .services-uni.reveal.is-visible .svc-card{
    opacity:1!important;
    transform:none!important;
    animation:none!important;
    transition:none!important;
  }
}

/* FAQ home — editorial, compacto, alinhado à marca */
.faq-seo{
  padding:clamp(48px,6vw,72px) 0!important;
  background:
    linear-gradient(180deg,#faf8f4 0%,#f3f0e9 100%)!important;
  border-top:1px solid rgba(17,17,17,.06);
}
.faq-seo__wrap{
  width:min(100%,920px);
  margin:0 auto;
  padding:0 clamp(1rem,3vw,1.5rem);
}
.faq-seo__head{
  max-width:28rem;
  margin:0 0 clamp(1.35rem,2.5vw,1.75rem);
}
.faq-seo__head .eyebrow{margin-bottom:.65rem}
.faq-seo__head h2{
  margin:0;
  font-family:var(--display,"Public Sans",system-ui,sans-serif);
  font-size:clamp(1.65rem,3.2vw,2.15rem);
  font-weight:650;
  letter-spacing:-.04em;
  line-height:1.08;
  color:#111;
}
.faq-seo__grid{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  border-top:1px solid rgba(17,17,17,.1);
}
.faq-seo__grid li{
  padding:1.15rem 1.15rem 1.15rem 0;
  border-right:1px solid rgba(17,17,17,.08);
}
.faq-seo__grid li:last-child{
  border-right:0;
  padding-right:0;
}
.faq-seo__grid li:not(:first-child){
  padding-left:1.15rem;
}
.faq-seo__q{
  margin:0 0 .45rem;
  font-size:.98rem;
  font-weight:700;
  letter-spacing:-.025em;
  line-height:1.25;
  color:#111;
}
.faq-seo__a{
  margin:0;
  font-size:.9rem;
  line-height:1.5;
  letter-spacing:-.01em;
  color:#6f675e;
}
@media (max-width:820px){
  .faq-seo__grid{
    grid-template-columns:1fr;
    border-top:0;
  }
  .faq-seo__grid li{
    padding:1rem 0!important;
    border-right:0;
    border-bottom:1px solid rgba(17,17,17,.1);
  }
  .faq-seo__grid li:last-child{border-bottom:0}
}