/* =========================================================
   STEGIE.CSS — CONSOLIDADO / LIMPO / FUNCIONAL
   Paleta: preto / branco / fundo claro
   Tipografia: leve e elegante
   Exceção: wordmark "Stegie" (Manrope)
   ========================================================= */

/* ===========================
   TOKENS
   =========================== */
:root{
  --bg:#F7F6F3;
  --surface:#FFFFFF;
  --text:#121212;
  --muted:#5A5A5A;
  --border:#E6E1D8;

  --olive-accent:#8E8420;
  --olive-accent-hover:#A4F330; 
   
  --primary:#111111;
  --primaryHover:#000000;

  --radius-lg:24px;
  --radius-md:16px;
  --shadow:0 10px 30px rgba(18,18,18,.06);
  --focus:rgba(0,0,0,.18);

  --st-accent:#7B7424;         /* oliva premium da marca */
  --st-accent-soft:#8A8340;
  --st-accent-line:rgba(123,116,36,.18);

  --fnav-h:74px;
  --fnav-bg:#0b0b0b;
  --fnav-fg:#ffffff;
  --fnav-text:rgba(255,255,255,.88);
  --fnav-text-strong:#ffffff;
  --fnav-line:rgba(255,255,255,.18);

  --mega-bg:#ffffff;
  --mega-text:#121212;
  --mega-muted:#5A5A5A;
  --mega-border:#E6E1D8;
  --mega-shadow:0 18px 48px rgba(0,0,0,.12);

  --container:1240px;

  --st-wordmark-size:40px;
  --st-logo-h:34px;
  --st-logo-h-mobile:28px;
}

/* ===========================
   RESET / BASE
   =========================== */
*,
*::before,
*::after{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
}

html{
  -webkit-text-size-adjust:100%;
}

body{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:400;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

/* âncoras não ficam escondidas pelo sticky header */
[id]{
  scroll-margin-top:96px;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

h1,h2,h3{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing:-0.02em;
  margin:0 0 12px 0;
  color:var(--text);
}

h1{
  font-size:clamp(40px, 4.6vw, 68px);
  line-height:1.05;
  font-weight:600;
}

h2{
  font-size:clamp(28px, 3vw, 44px);
  line-height:1.12;
  font-weight:600;
}

h3{
  font-size:clamp(20px, 2vw, 30px);
  line-height:1.2;
  font-weight:600;
}

p{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  margin:0 0 16px 0;
  font-weight:400;
}

ul,ol{
  margin:0;
}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

.section{
  padding:84px 0;
}

.section--tight{
  padding:56px 0;
}

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

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

.muted{
  color:var(--muted);
}

.kicker{
  font-size:14px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:14px;
  font-weight:500;
}

/* ===========================
   ACESSIBILIDADE
   =========================== */
.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  background:#fff;
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:12px;
  z-index:100000;
}

.skip-link:focus{
  left:12px;
}

/* ===========================
   CARD / BOTÕES / FORM
   =========================== */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:var(--radius-md);
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  font-weight:600;
  cursor:pointer;
  transition:
    transform .12s ease,
    background .12s ease,
    border-color .12s ease,
    color .12s ease,
    opacity .12s ease;
}

.btn:hover{
  opacity:.96;
}

.btn:active{
  transform:translateY(1px);
}

.btn:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:2px;
}

.btn-primary,
.btn--primary{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

.btn-primary:hover,
.btn--primary:hover{
  background:var(--primaryHover);
  border-color:var(--primaryHover);
  color:#fff;
}

.btn-ghost,
.btn--ghost{
  background:transparent;
  color:var(--text);
}

.input,
select,
textarea{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:12px;
  font-size:16px;
  color:var(--text);
}

.input:focus,
select:focus,
textarea:focus{
  outline:3px solid var(--focus);
  border-color:rgba(0,0,0,.35);
}

/* ===========================
   NAVBAR PRINCIPAL
   Compatível com:
   - st-fnav__menu / st-fnav__item / st-fnav__right
   - st-fnav__nav  / st-fnav__link / st-fnav__actions
   =========================== */
.st-fnav{
  position:sticky;
  top:0;
  z-index:9999;
  height:var(--fnav-h);
  background:var(--fnav-bg);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.st-fnav__inner{
  width:min(var(--container), calc(100% - 48px));
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:18px;
}

.st-fnav__brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:max-content;
  color:var(--fnav-fg);
  flex:0 0 auto;
}

.st-fnav__logo{
  display:block !important;
  width:auto !important;
  height: calc(var(--st-wordmark-size) * var(--st-logo-visual-scale)) !important;
  max-height: calc(var(--st-wordmark-size) * var(--st-logo-visual-scale)) !important;
  object-fit: contain !important;
  object-position: center !important;
  flex: 0 0 auto !important;
  transform: translateY(1px) !important;
}

.st-fnav__word{
  display:inline-block;
  font-family:Manrope, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:800;
  font-size: var(--st-wordmark-size) !important;
  letter-spacing:-0.02em;
  line-height: 1 !important;
  color:var(--fnav-text-strong);
}

/* desktop nav */
.st-fnav__menu,
.st-fnav__nav{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:18px;
  flex:1 1 auto;
  min-width:0;
}

.st-fnav__item,
.st-fnav__link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:transparent;
  border:0;
  appearance:none;
  -webkit-appearance:none;
  color:var(--fnav-text);
  text-decoration:none;
  cursor:pointer;
  border-radius:10px;
  padding:18px 14px;
  font-size:15px;
  font-weight:600;
  line-height:1.1;
  outline:none;
  transition:color .18s ease, background .18s ease;
}

.st-fnav__item:hover,
.st-fnav__link:hover{
  color:var(--st-accent);
}

.st-fnav__item:focus-visible,
.st-fnav__link:focus-visible{
  outline:3px solid rgba(255,255,255,.18);
  outline-offset:4px;
}

.st-fnav__item::after,
.st-fnav__link::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:10px;
  height:2px;
  background:transparent;
  border-radius:2px;
  transform:scaleX(.65);
  transform-origin:center;
  transition:background .18s ease, transform .18s ease;
}

.st-fnav__item:hover::after,
.st-fnav__link:hover::after{
  background:rgba(123,116,36,.55);
  transform:scaleX(1);
}

.st-fnav__item.is-open,
.st-fnav__link.is-open{
  color:var(--st-accent);
}

.st-fnav__item.is-open::after,
.st-fnav__link.is-open::after{
  background:var(--st-accent);
  transform:scaleX(1);
}

.st-fnav__caret,
.st-fnav__chev{
  display:inline-block;
  flex:0 0 auto;
  margin-left:4px;
  color:currentColor;
}

.st-fnav__caret{
  width:0;
  height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:6px solid currentColor;
  transform:translateY(1px);
  opacity:.92;
}

.st-fnav__chev{
  font-size:12px;
  transform:translateY(-1px);
  opacity:.92;
}

.st-fnav__right,
.st-fnav__actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.st-fnav__icon,
.st-iconbtn{
  width:42px;
  height:42px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.88);
  cursor:pointer;
  transition:background .14s ease, border-color .14s ease, color .14s ease;
}

.st-fnav__icon:hover,
.st-iconbtn:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.28);
  color:#fff;
}

.st-fnav__icon svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  fill:none;
}

.st-iconbtn__dot{
  width:14px;
  height:14px;
  border-radius:4px;
  background:rgba(255,255,255,.85);
}

.st-fnav__vdiv{
  width:1px;
  height:26px;
  background:var(--fnav-line);
}

.st-fnav__lang{
  border:0;
  background:transparent;
  color:var(--fnav-fg);
  cursor:pointer;
  font-weight:600;
  font-size:12px;
  letter-spacing:.2px;
  padding:10px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.st-fnav__lang:hover{
  background:rgba(255,255,255,.06);
}

.st-fnav__accent{
  height:6px;
  background:linear-gradient(
    90deg,
    rgba(123,116,36,0),
    rgba(123,116,36,.88),
    rgba(123,116,36,0)
  );
}

/* mobile trigger */
.st-fnav__burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius:12px;
  padding:12px;
  color:var(--fnav-fg);
}

.st-fnav__burger:hover{
  background:rgba(255,255,255,.06);
}

.st-fnav__burger span{
  display:block;
  height:2px;
  border-radius:2px;
  background:currentColor;
  opacity:.95;
}

/* menu mobile */
.st-fnav__mobile{
  display:none;
}

.st-fnav__mobile[hidden]{
  display:none !important;
}

.st-fnav__mobile.is-open{
  display:block;
  background:var(--fnav-bg);
  border-top:1px solid rgba(255,255,255,.10);
  padding:12px 24px 18px;
}

.st-fnav__mobile.is-open a,
.st-fnav__mobile.is-open button{
  display:block;
  width:100%;
  text-align:left;
  padding:12px 10px;
  color:var(--fnav-fg);
  background:transparent;
  border:0;
  border-radius:12px;
  font-size:15px;
  font-weight:500;
  text-decoration:none;
}

.st-fnav__mobile.is-open a:hover,
.st-fnav__mobile.is-open button:hover{
  background:rgba(255,255,255,.06);
}

/* remove visual de botão caso use <button> */
.st-fnav button.st-fnav__item,
.st-fnav button.st-fnav__link{
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  cursor:pointer;
}

/* ===========================
   MEGA MENU
   =========================== */
.st-mega{
  position:fixed;
  left:0;
  right:0;
  top:var(--fnav-h);
  z-index:9998;
  background:var(--mega-bg);
  border-bottom:1px solid var(--mega-border);
  box-shadow:var(--mega-shadow);
  opacity:0;
  transform:translateY(-8px);
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.st-mega.is-open{
  opacity:1;
  transform:translateY(0);
  visibility:visible;
  pointer-events:auto;
}

.st-mega__inner{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
  padding:34px 0 36px;
  display:grid;
  column-gap:90px;
}

.st-mega__cols-1{
  grid-template-columns:1fr;
}

.st-mega__cols-2{
  grid-template-columns:1fr 1fr;
}

.st-mega__cols-3{
  grid-template-columns:1fr 1fr 1fr;
}

.st-mega__col{
  position:relative;
  min-width:0;
}

.st-mega__cols-2 .st-mega__col:nth-child(2),
.st-mega__cols-3 .st-mega__col:nth-child(2),
.st-mega__cols-3 .st-mega__col:nth-child(3){
  padding-left:60px;
  border-left:1px solid var(--mega-border);
}

.st-mega__title{
  font-size:16px;
  font-weight:600;
  color:var(--mega-text);
  margin-bottom:12px;
}

.st-mega__item{
  display:block;
  width:fit-content;
  padding:8px 0;
  font-size:15px;
  font-weight:500;
  color:var(--st-accent);
  text-decoration:none !important;
  border-bottom:none !important;
  transition:color .14s ease;
}

.st-mega__item:hover,
.st-mega__item:focus,
.st-mega__item:active,
.st-mega__item:visited{
  text-decoration:none !important;
  border-bottom:none !important;
}

.st-mega__item:hover,
.st-mega__item.is-current{
  color:#1a1a1a !important;
}

.st-mega__spacer{
  height:16px;
}

/* ===========================
   NAVBAR LEGADO (mantido por compatibilidade)
   =========================== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,246,243,.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:150px;
}

.brand-mark{
  height:34px;
  width:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-family:Manrope, Inter, sans-serif;
  font-weight:800;
  letter-spacing:-0.02em;
  color:#fff;
  background:var(--primary);
  border:1px solid rgba(0,0,0,.02);
  box-shadow:0 10px 22px rgba(18,18,18,.08);
}

.brand-name{
  font-family:Manrope, Inter, sans-serif;
  font-weight:800;
  letter-spacing:-0.02em;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-link{
  font-weight:600;
  color:var(--text);
  padding:10px;
  border-radius:12px;
  transition:background .12s ease;
}

.nav-link:hover{
  background:rgba(255,255,255,.7);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:8px;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.nav-toggle:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:2px;
}

.nav-toggle__bar{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  border-radius:999px;
}

.nav-toggle__bar + .nav-toggle__bar{
  margin-top:4px;
}

/* ===========================
   HERO / SEÇÕES GERAIS
   =========================== */
.hero{
  padding:84px 0 48px;
}

.hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:center;
}

.hero__bullets{
  margin:16px 0 0;
  padding:0;
  list-style:none;
}

.hero__bullets li{
  margin:8px 0;
  color:var(--muted);
  font-weight:400;
}

.hero__media{
  height:420px;
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at 30% 30%, rgba(0,0,0,.06), transparent 45%),
    radial-gradient(circle at 70% 40%, rgba(0,0,0,.05), transparent 50%),
    #ffffff;
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}

.hero__glass{
  position:absolute;
  right:18px;
  top:18px;
  width:220px;
  height:220px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(230,225,216,.9);
  backdrop-filter:blur(14px);
  box-shadow:0 24px 60px rgba(18,18,18,.10);
  animation:floaty 10s ease-in-out infinite;
}

@keyframes floaty{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

.ed-card{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:transform .18s ease, box-shadow .18s ease;
}

.ed-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 44px rgba(18,18,18,.08);
}

.ed-card__link{
  font-weight:600;
  color:var(--muted);
}

.method{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.method__step{
  padding:18px;
}

.method__num{
  font-weight:600;
  color:var(--primary);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.chip{
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.6);
  font-weight:500;
}

.chip--active{
  border-color:var(--primary);
  color:var(--primary);
}

/* ===========================
   FLASH / MODAL
   =========================== */
.flash-wrap{
  padding-top:16px;
}

.flash{
  border:1px solid var(--border);
  background:rgba(255,255,255,.8);
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:10px;
  font-weight:600;
}

.flash--success{
  border-color:rgba(0,0,0,.22);
}

.modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:100;
}

.modal[aria-hidden="false"]{
  display:block;
}

.modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(18,18,18,.55);
}

.modal__panel{
  position:relative;
  width:min(920px, calc(100% - 40px));
  margin:7vh auto 0;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:0 24px 80px rgba(0,0,0,.25);
  overflow:hidden;
}

.modal__close{
  position:absolute;
  right:12px;
  top:10px;
  border:1px solid var(--border);
  border-radius:12px;
  background:rgba(255,255,255,.9);
  padding:6px 10px;
  font-size:20px;
  cursor:pointer;
}

.modal__body{
  padding:26px;
}

.modal__placeholder{
  padding:18px;
  border:1px dashed var(--border);
  border-radius:18px;
}

/* ===========================
   FOOTER LEGADO
   =========================== */
.footer{
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.55);
}

.footer-cta{
  padding:34px 0;
  border-bottom:1px solid var(--border);
  background:
    radial-gradient(circle at 18% 40%, rgba(0,0,0,.06), transparent 42%),
    radial-gradient(circle at 76% 30%, rgba(0,0,0,.05), transparent 48%),
    rgba(255,255,255,.42);
}

.footer-cta__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
}

.footer-cta__title{
  margin:0 0 8px 0;
  font-weight:600;
  letter-spacing:-0.02em;
}

.footer-cta__lead{
  margin:0;
  max-width:64ch;
}

.footer-cta__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-main{
  padding:44px 0 18px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:18px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}

.footer-brand__mark{
  height:34px;
  width:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-family:Manrope, Inter, sans-serif;
  font-weight:800;
  color:#fff;
  background:var(--primary);
  box-shadow:0 10px 22px rgba(18,18,18,.08);
}

.footer-brand__name{
  font-family:Manrope, Inter, sans-serif;
  font-weight:800;
  letter-spacing:-0.02em;
}

.footer-title{
  font-weight:600;
  margin:0 0 12px;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-links a{
  display:block;
  padding:8px 0;
  color:var(--text);
  font-weight:500;
}

.footer-links a:hover{
  opacity:.88;
}

.footer-text{
  margin:0;
}

.footer-bottom{
  padding:18px 0 24px;
  border-top:1px solid var(--border);
  color:var(--muted);
}

.footer-copy{
  font-weight:500;
}

/* ===========================
   FOOTER NOVO (st-footer)
   =========================== */
body .st-footer,
body .st-footer *{
  box-sizing:border-box;
}

body .st-footer{
  background:#fff;
  border-top:1px solid rgba(0,0,0,.08);
  overflow-x:hidden;
}

body .st-footer a{
  text-decoration:none !important;
  border-bottom:0 !important;
}

body .st-footer__wrap{
  display:grid;
  grid-template-columns:1fr minmax(280px, 360px);
  gap:44px;
  padding:44px 0 24px;
  align-items:start;
  min-width:0;
}

body .st-footer__cols{
  display:grid;
  grid-template-columns:280px 240px 260px;
  gap:70px;
  align-items:start;
}

.st-footer__brand{
  min-width:0;
}

body .st-footer__brandlink{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

body .st-footer__logo{
  height: 24px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

body .st-footer__wordmark{
  font-family:Manrope, Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-weight:800;
  font-size:18px;
  color:#111;
  letter-spacing:.01em;
}

body .st-footer__tagline{
  margin:14px 0 0;
  color:rgba(0,0,0,.62);
  font-size:12px;
  line-height:1.2;
  white-space:nowrap;
  overflow:visible;
  text-overflow:clip;
  max-width:none;
}

body .st-footer__col{
  display:grid;
  gap:18px;
}

body .st-footer__col a{
  color:var(--st-accent);
  font-weight:500;
  font-size:15px;
  line-height:1.2;
}

body .st-footer__hr{
  height:1px;
  background:rgba(123,116,36,.55);
  margin:30px 0 18px;
}

body .st-footer__socialrow{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

body .st-footer__sociallabel{
  color:var(--st-accent);
  font-weight:500;
  font-size:16px;
}

/* =========================================
   REDES SOCIAIS — ÍCONES LIMPOS E NÍTIDOS
   ========================================= */

body .st-footer__socialicons{
  display:inline-flex !important;
  align-items:center !important;
  gap:12px !important;
}

body .st-socialbtn{
  width: 50px !important;
  height: 50px !important;
  border-radius: 999px !important;
  border: 1.5px solid rgba(123,116,36,.78) !important;
  color: var(--st-accent) !important;
  background: transparent !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex: 0 0 50px !important;
  padding: 0 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  transition: transform .14s ease, border-color .14s ease, background .14s ease !important;
}

body .st-socialbtn:hover{
  transform: translateY(-1px);
  border-color: rgba(123,116,36,.95) !important;
  background: rgba(123,116,36,.04) !important;
}

body .st-socialbtn svg{
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  fill: currentColor !important;
  stroke: none !important;
}

.st-footer__right,
.st-news{
  width:100%;
  max-width:360px;
}

body .st-news{
  border:1px solid rgba(123,116,36,.75);
  border-radius:22px;
  padding:18px 18px 16px;
  background:#fff;
}

body .st-news__title{
  text-align:center;
  color:var(--st-accent);
  font-weight:500;
  font-size:15px;
  margin:2px 0 14px;
}

body .st-news__form{
  display:grid;
  gap:14px;
}

body .st-news__input{
  height:48px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  padding:0 16px;
  font-size:14px;
  outline:none;
  background:#fff;
}

body .st-news__input:focus{
  border-color:rgba(123,116,36,.9);
  box-shadow:0 0 0 3px rgba(123,116,36,.12);
}

body .st-news__consent{
  display:grid;
  grid-template-columns:16px 1fr;
  gap:10px;
  align-items:start;
  color:rgba(0,0,0,.62);
  font-size:12.5px;
  line-height:1.35;
}

body .st-news__check{
  margin-top:3px;
}

body .st-news__consent a{
  color:rgba(0,0,0,.78);
  text-decoration:underline !important;
}

body .st-news__btn{
  height:48px;
  border-radius:999px;
  border:0;
  background:rgba(123,116,36,.50);
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
}

body .st-news__btn:hover{
  background:rgba(123,116,36,.60);
}

body .st-footer__bottom{
  border-top:1px solid rgba(0,0,0,.08);
  padding:14px 0 18px;
  color:rgba(0,0,0,.55);
  font-size:13px;
}

/* ===========================
   HOME CLEAN
   =========================== */
.home-clean{
  margin:0;
  min-height:100vh;
  background:var(--bg);
  color:#111;
  font-family:inherit;
}

.home-clean p,
.home-clean a,
.home-clean .menu-item,
.home-clean .shortcut-label,
.home-clean .footer-country,
.home-clean .home-pill-text{
  color:#111 !important;
}

.home-clean img{
  width:auto !important;
  max-width:100% !important;
}

.home-icons-sprite{
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
  left:-9999px;
  top:-9999px;
}

.home-top{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:64px;
  display:flex;
  align-items:center;
  padding:0 18px;
  z-index:50;
  background:transparent;
}

.home-top-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
}

.icon-btn{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.65);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.icon-btn svg{
  width:20px;
  height:20px;
  color:#111;
}

.avatar{
  width:40px;
  height:40px;
  border-radius:999px;
  background:#111;
  color:#fff !important;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.02em;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.menu{
  position:absolute;
  top:52px;
  right:0;
  min-width:220px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  padding:8px;
  opacity:0;
  pointer-events:none;
  transform:translateY(-6px);
  transition:.16s ease;
}

.menu.is-open{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.menu-item{
  display:block;
  padding:11px 12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:500;
  font-size:14.5px;
}

.menu-item:hover{
  background:rgba(0,0,0,.04);
}

.home-wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:96px 16px 120px;
}

.home-center{
  width:min(920px, 100%);
  display:grid;
  justify-items:center;
  gap:18px;
}

.home-clean .brand-lockup{
  display:grid;
  justify-items:center;
  text-align:center;
  gap:2px;
}

.home-clean .brand-logo{
  height:clamp(78px, 8.5vw, 156px) !important;
  width:auto !important;
  max-width:420px !important;
  object-fit:contain !important;
  display:block !important;
  margin:0 auto !important;
  transform:translateY(6px) !important;
}

.home-brand{
  font-family:Manrope, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight:800;
  letter-spacing:-0.04em;
  font-size:clamp(46px, 7vw, 82px);
  line-height:.92;
  color:#111;
  margin-top:-2px;
}

.home-pill{
  width:min(720px, 100%);
  height:52px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 14px 28px rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  position:relative;
}

.home-pill-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#111;
  opacity:.9;
  position:absolute;
  left:18px;
}

.home-pill-text{
  font-weight:400;
  font-size:17px;
  font-style:italic;
  text-align:center;
  letter-spacing:.1px;
}

.home-pill-text::before{ content:"“"; }
.home-pill-text::after{ content:"”"; }

.home-shortcuts{
  width:min(720px, 100%);
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:18px;
  margin-top:10px;
}

.shortcut{
  text-decoration:none;
  display:grid;
  justify-items:center;
  gap:10px;
  padding:10px 8px;
  border-radius:16px;
}

.shortcut:hover{
  background:rgba(0,0,0,.03);
}

.shortcut-ico{
  width:56px;
  height:56px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.72);
  display:grid;
  place-items:center;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.shortcut-ico svg{
  width:24px;
  height:24px;
  color:#111;
}

.shortcut-label{
  font-size:14px;
  font-weight:500;
  text-align:center;
  line-height:1.2;
}

.home-footer{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:rgba(255,255,255,.70);
  border-top:1px solid rgba(0,0,0,.10);
  backdrop-filter:blur(10px);
  padding:10px 16px;
  z-index:40;
}

.footer-row{
  width:min(1100px, 100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:16px;
}

.footer-country{
  font-weight:500;
  font-size:12px;
  padding-bottom:8px;
}

.home-footer .footer-links{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.home-footer .footer-links a{
  font-weight:500;
  font-size:13.5px;
  padding:0;
}

.home-footer .footer-links a:hover{
  text-decoration:underline;
}

/* ===========================
   QUEM SOMOS
   =========================== */
.qs-hero{
  background:var(--bg);
  padding:clamp(28px, 4vw, 52px) 0 clamp(48px, 8vw, 110px);
}

.qs-inner{
  position:relative;
}

.qs-top{
  margin-bottom:clamp(22px, 4vw, 46px);
}

.qs-title{
  font-weight:300;
  letter-spacing:-0.02em;
  color:var(--st-accent);
  line-height:1.05;
  font-size:clamp(44px, 6vw, 86px);
  margin:0;
}

.qs-stage{
  min-height:clamp(360px, 55vh, 520px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:clamp(14px, 2.2vw, 22px);
}

.qs-line--small{
  font-weight:300;
  color:var(--text);
  letter-spacing:-0.01em;
  font-size:clamp(26px, 4vw, 56px);
  line-height:1.08;
}

.qs-line--big{
  display:flex;
  align-items:baseline;
  gap:clamp(12px, 2vw, 22px);
  flex-wrap:wrap;
}

.qs-word--accent{
  color:var(--st-accent);
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:.95;
  font-size:clamp(64px, 10vw, 170px);
}

.qs-word--tail{
  color:var(--text);
  font-weight:300;
  letter-spacing:-0.02em;
  font-size:clamp(34px, 5vw, 78px);
  line-height:1;
}

.qs-sub{
  max-width:70ch;
  color:var(--muted);
  font-weight:300;
  font-size:clamp(16px, 1.6vw, 20px);
  line-height:1.55;
}

.qs-char{
  display:inline-block;
  transform:translateY(22px);
  opacity:0;
  filter:blur(6px);
  will-change:transform, opacity, filter;
}

.js-split.is-anim .qs-char{
  animation:qs-rise 1100ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay:calc(var(--i) * 70ms);
}

@keyframes qs-rise{
  to{
    transform:translateY(0);
    opacity:1;
    filter:blur(0);
  }
}

.st-avatar{
  width:72px;
  height:72px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.7);
  overflow:hidden;
  flex:0 0 72px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.st-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center 30%;
  display:block;
}

.page-quem-somos{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.page-quem-somos .qs-hero{
  padding:clamp(18px, 2.8vw, 34px) 0 clamp(26px, 4.5vw, 60px);
}

.page-quem-somos .section{
  padding:clamp(18px, 2.6vw, 34px) 0;
}

.page-quem-somos .section--tight{
  padding:clamp(14px, 2.2vw, 26px) 0;
}

.page-quem-somos .grid-2{
  margin-top:12px;
}

.page-quem-somos .card{
  margin-top:0;
}

.page-quem-somos p,
.page-quem-somos li{
  font-weight:300;
  color:rgba(0,0,0,.70);
}

.page-quem-somos h2,
.page-quem-somos h3{
  font-weight:600;
}

.page-quem-somos .card p[style*="font-weight:800"],
.page-quem-somos .card p strong{
  font-weight:600 !important;
}

/* ===========================
   RESPONSIVO
   =========================== */
@media (max-width: 1100px){
  body .st-footer__wrap{
    grid-template-columns:1fr;
  }

  body .st-footer__cols{
    grid-template-columns:280px 1fr;
    gap:36px;
  }
}

@media (max-width: 980px){
  :root{
    --fnav-h:70px;
    --st-wordmark-size:34px;
    --st-logo-visual-scale: 1.68; /* compensação da margem transparente do PNG */ 
  }

  .container{
    width:min(var(--container), calc(100% - 32px));
  }

  .hero__grid,
  .grid-2,
  .grid-3,
  .method{
    grid-template-columns:1fr;
  }

  .st-fnav__logo{
    height:var(--st-logo-h-mobile);
    max-height:var(--st-logo-h-mobile);
  }

  .st-fnav__menu,
  .st-fnav__nav{
    display:none !important;
  }

  .st-fnav__burger{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    margin-left:auto;
  }

  .st-mega__inner{
    grid-template-columns:1fr;
    row-gap:18px;
  }

  .st-mega__cols-2 .st-mega__col:nth-child(2),
  .st-mega__cols-3 .st-mega__col:nth-child(2),
  .st-mega__cols-3 .st-mega__col:nth-child(3){
    border-left:0;
    padding-left:0;
    border-top:1px solid var(--mega-border);
    padding-top:18px;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .nav{
    position:fixed;
    left:16px;
    right:16px;
    top:70px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    background:rgba(255,255,255,.92);
    box-shadow:0 24px 80px rgba(18,18,18,.14);
    backdrop-filter:blur(12px);
  }

  .nav.is-open{
    display:flex;
  }

  .nav-actions{
    margin-left:0;
    flex-direction:column;
  }

  .nav-link{
    padding:12px;
  }

  .footer-cta__inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-main{
    grid-template-columns:1fr;
  }
}

@media (min-width: 981px){
  .st-fnav__burger{
    display:none !important;
  }

  .st-fnav__menu,
  .st-fnav__nav{
    display:flex !important;
  }

  .st-fnav__mobile{
    display:none !important;
  }
}

@media (max-width: 900px){
  .home-shortcuts{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  body .st-footer__cols{
    grid-template-columns:1fr;
    gap:22px;
  }

  body .st-footer__hr{
    margin:18px 0 14px;
  }
}

@media (max-width: 640px){
  .qs-stage{
    min-height:auto;
    padding-top:18px;
  }

  .qs-line--big{
    gap:10px;
  }

  .st-footer__tagline{
    white-space:normal;
    max-width:36ch;
  }
}

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

/* =========================================
   PATCH FINAL — TOPBAR PRETA / MENU BRANCO
   ========================================= */

.st-fnav{
  background: #000 !important;
}

.st-fnav__brand,
.st-fnav__word{
  color: #fff !important;
}

.st-fnav__nav,
.st-fnav__menu{
  color: #fff !important;
}

.st-fnav__link,
.st-fnav__item,
.st-fnav__link:visited,
.st-fnav__item:visited{
  color: rgba(255,255,255,.92) !important;
}

.st-fnav__link:hover,
.st-fnav__item:hover{
  color: #fff !important;
}

.st-fnav__link.is-open,
.st-fnav__item.is-open{
  color: var(--st-accent) !important;
}

.st-fnav__chev,
.st-fnav__caret{
  color: currentColor !important;
  border-top-color: currentColor !important;
}

.st-fnav__actions,
.st-fnav__right,
.st-iconbtn,
.st-fnav__icon{
  color: #fff !important;
}

.st-fnav__logo{
  display: block !important;
  width: auto !important;
  height: 30px !important;
  max-height: 30px !important;
  object-fit: contain !important;
  object-position: center !important;
  flex: 0 0 auto !important;
}

/* =========================================
   TOPBAR FINAL — FORÇA VISUAL CORRETO
   ========================================= */

.st-fnav{
  background:#000 !important;
  border-bottom:1px solid rgba(255,255,255,.08) !important;
}

.st-fnav__brand,
.st-fnav__brand:visited,
.st-fnav__word{
  color:#fff !important;
}

.st-fnav__nav,
.st-fnav__menu{
  color:#fff !important;
}

.st-fnav__link,
.st-fnav__link:visited,
.st-fnav__item,
.st-fnav__item:visited{
  color:rgba(255,255,255,.94) !important;
  background:transparent !important;
}

.st-fnav__link:hover,
.st-fnav__item:hover{
  color:#fff !important;
}

.st-fnav__link.is-open,
.st-fnav__item.is-open{
  color:#B7D300 !important;
}

.st-fnav__link::after,
.st-fnav__item::after{
  background:transparent !important;
}

.st-fnav__link:hover::after,
.st-fnav__item:hover::after{
  background:rgba(183,211,0,.55) !important;
}

.st-fnav__link.is-open::after,
.st-fnav__item.is-open::after{
  background:#B7D300 !important;
}

.st-fnav__chev,
.st-fnav__caret{
  color:currentColor !important;
  border-top-color:currentColor !important;
}

.st-fnav__actions,
.st-fnav__right,
.st-iconbtn,
.st-fnav__icon{
  color:#fff !important;
}

.st-fnav__logo{
  display:block !important;
  width:auto !important;
  height:30px !important;
  max-height:30px !important;
  object-fit:contain !important;
  object-position:center !important;
  flex:0 0 auto !important;
}

.st-fnav__accent{
  height:6px !important;
  background:linear-gradient(
    90deg,
    rgba(123,116,36,0),
    rgba(123,116,36,.88),
    rgba(123,116,36,0)
  ) !important;
}

/* =========================================================
   O QUE FAZEMOS
   ========================================================= */

.oqf-banner,
.oqf-hero,
.oqf-intro,
.oqf-services,
.oqf-differentials,
.oqf-tech,
.oqf-results,
.oqf-cta{
  padding: 64px 0;
}

/* =========================================================
   TOPO / BANNER O QUE FAZEMOS
   ========================================================= */

.oqf-banner{
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 88px;
  padding-bottom: 74px;
  min-height: 320px;
  overflow: hidden;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  background:
    linear-gradient(0deg, rgba(14,18,10,.42), rgba(14,18,10,.42)),
    url("/static/img/oquefazemos-banner-topo.png") center center / cover no-repeat;
}

.oqf-banner-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(8,10,8,.58) 0%, rgba(16,22,10,.28) 42%, rgba(18,24,10,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.16) 100%);
  pointer-events:none;
}

.oqf-banner-inner{
  position:relative;
  z-index:2;
}

.oqf-banner-copy{
  max-width: 920px;
}

.oqf-banner-title{
  margin:0 0 16px;
  color:#fff;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  line-height:1;
  letter-spacing:-0.045em;
  font-weight:700;
  text-transform:uppercase;
}

.oqf-banner-text{
  margin:0;
  max-width: 980px;
  color:#fff;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height:1.5;
  font-weight:400;
}

/* =========================================================
   HERO PRINCIPAL ABAIXO DO BANNER
   ========================================================= */

.oqf-hero{
  padding-top: 26px;
  padding-bottom: 38px;
  margin-top: 0;
  background:
    radial-gradient(circle at top left, rgba(0,0,0,.03), transparent 34%),
    linear-gradient(180deg, #F7F6F3 0%, #F8F7F4 100%);
}

.oqf-banner + .oqf-hero{
  margin-top: 0;
}

.oqf-intro{
  padding-top: 34px;
  padding-bottom: 50px;
  border-top:1px solid #E8E3DA;
}

.oqf-services,
.oqf-differentials,
.oqf-tech,
.oqf-results{
  padding-top: 54px;
  padding-bottom: 54px;
}

.oqf-cta{
  padding-top: 34px;
  padding-bottom: 80px;
}

.oqf-hero-grid{
  display:grid;
  grid-template-columns: 1fr .92fr;
  gap: 42px;
  align-items:center;
}

.oqf-intro-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items:center;
}

.oqf-kicker,
.oqf-section-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#6E6E6E;
  margin-bottom:18px;
}

.oqf-title{
  margin:0;
  max-width: 9.8ch;
  font-weight:300;
  letter-spacing:-0.055em;
  line-height:.94;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  color:#111;
}

.oqf-lead,
.oqf-intro-right p,
.oqf-section-text,
.oqf-tech-copy p,
.oqf-cta-copy p,
.oqf-unique-copy p{
  font-size:1.06rem;
  line-height:1.8;
  color:#4E4E4E;
  max-width: 62ch;
}

.oqf-intro-right p strong,
.oqf-section-text strong,
.oqf-tech-copy p strong,
.oqf-cta-copy p strong,
.oqf-result-card p strong,
.oqf-service-body p strong,
.oqf-unique-copy p strong{
  font-weight:700;
  color:#111;
}

.oqf-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

.oqf-rotator{
  position:relative;
  display:inline-block;
  min-width: 4.8ch;
  height:1.08em;
  vertical-align:bottom;
}

.oqf-rotator-word{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translateY(16px);
  transition:opacity .45s ease, transform .45s ease;
  white-space:nowrap;
}

.oqf-rotator-word.is-active{
  opacity:1;
  transform:translateY(0);
}

.oqf-media-card{
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 18px 60px rgba(17,17,17,.08);
}

.oqf-media-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.oqf-hero-media-card{
  min-height: 380px;
  max-height: 520px;
}

.oqf-media-card-tall{
  min-height: 620px;
}

.oqf-section-title{
  margin:0;
  font-size: clamp(2.2rem, 3.6vw, 3.9rem);
  line-height:1.02;
  letter-spacing:-0.05em;
  font-weight:300;
  color:#111;
  max-width: 13ch;
}

.oqf-intro .oqf-section-title,
.oqf-differentials .oqf-section-title,
.oqf-tech .oqf-section-title,
.oqf-results .oqf-section-title{
  color: var(--olive-accent);
}

.oqf-heading{
  margin-bottom:28px;
}

.oqf-heading-center{
  text-align:center;
  max-width: 980px;
  margin:0 auto 28px;
}

.oqf-heading-center .oqf-section-title,
.oqf-heading-center .oqf-section-text{
  margin-left:auto;
  margin-right:auto;
}

.oqf-heading-center .oqf-section-title{
  max-width: 16ch;
}

.oqf-heading-center .oqf-section-text{
  max-width: 70ch;
  margin-top:18px;
}

/* =========================================================
   FRENTES DE ATUAÇÃO
   ========================================================= */

.oqf-services-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
  align-items:stretch;
}

.oqf-service-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #E7E1D7;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(17,17,17,.04);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  min-height:100%;
}

.oqf-service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(17,17,17,.08);
  border-color:#D8D0C2;
}

.oqf-service-image{
  aspect-ratio: 16 / 7.5;
  overflow:hidden;
  background:#ECE8E0;
}

.oqf-service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.oqf-service-body{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:24px 24px 26px;
  flex:1;
}

.oqf-service-body h3,
.oqf-pillar h3,
.oqf-result-card h3,
.oqf-cta-copy h2{
  margin:0 0 4px;
  color:#111;
  font-weight:400;
  letter-spacing:-0.03em;
}

.oqf-service-body h3{
  font-size:1.12rem;
  line-height:1.18;
}

.oqf-service-body p,
.oqf-pillar p,
.oqf-result-card p{
  margin:0;
  color:#545454;
  line-height:1.72;
  font-size:.98rem;
}

/* =========================================================
   BLOCO ESCURO / DIFERENCIAIS
   ========================================================= */

.oqf-differentials{
  background:#111;
  color:#fff;
}

.oqf-differentials .oqf-section-label{
  color:rgba(255,255,255,.62);
}

.oqf-differentials .oqf-section-title{
  color:var(--olive-accent);
  max-width: 16ch;
}

.oqf-differentials .oqf-section-text{
  color:rgba(255,255,255,.78);
}

.oqf-pillars{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:24px;
}

.oqf-pillar{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:28px;
}

.oqf-pillar-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  color:#fff;
  font-size:.86rem;
  letter-spacing:.08em;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.oqf-pillar h3{
  color:#fff;
  font-size:1.35rem;
}

.oqf-pillar p{
  color:rgba(255,255,255,.75);
}

.oqf-unique-copy{
  max-width: 1180px;
  margin: 26px auto 0;
}

.oqf-unique-copy p{
  font-size:1.04rem;
  line-height:1.82;
  color:rgba(255,255,255,.78);
  margin:0 0 16px;
}

.oqf-unique-copy p strong{
  color:#fff;
  font-weight:700;
}

/* =========================================================
   TECNOLOGIA
   ========================================================= */

.oqf-tech-top{
  display:grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, .98fr);
  gap:34px;
  align-items:start;
}

.oqf-tech-headline{
  min-width:0;
}

.oqf-tech-headline .oqf-section-title{
  max-width: none;
  margin:0;
  color: var(--olive-accent);
  font-size: clamp(3rem, 4.35vw, 4.85rem);
  line-height:.92;
  letter-spacing:-0.065em;
  font-weight:300;
}

.oqf-tech-visual{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
}

.oqf-tech-media-card{
  width:100%;
  min-height: 250px;
  max-height: 340px;
  display:flex;
  border-radius:24px;
}

.oqf-tech-media-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
}

.oqf-tech-bottom{
  margin-top:28px;
}

.oqf-tech-copy{
  max-width:none;
  width:100%;
}

.oqf-tech-copy p{
  max-width:none;
  width:100%;
}

.oqf-tech-actions{
  margin-top:18px;
}

.oqf-tech-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}

.oqf-tech-tags span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #E4DDD3;
  background:#fff;
  color:#222;
  font-size:.92rem;
}

/* =========================================================
   RESULTADOS
   ========================================================= */

.oqf-results-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.oqf-result-card{
  background:#fff;
  border:1px solid #E9E3DA;
  border-radius:24px;
  padding:28px;
  min-height: 210px;
}

.oqf-result-card h3{
  font-size:1.32rem;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.oqf-cta-box{
  background:#111;
  color:#fff;
  border-radius:30px;
  padding:42px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:20px;
  align-items:center;
}

.oqf-cta-copy h2{
  color:#fff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height:1.05;
  font-weight:300;
  max-width: 12ch;
}

.oqf-cta-copy p{
  color:rgba(255,255,255,.72);
  margin:0;
}

/* =========================================================
   BOTÕES GLOBAIS
   ========================================================= */

.btn,
a.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:16px 34px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-primary,
a.btn-primary{
  background: var(--olive-accent);
  color: #fff;
  border: 1px solid var(--olive-accent);
  box-shadow:none;
}

.btn-primary:hover,
a.btn-primary:hover{
  background:#111;
  color: var(--olive-accent-hover);
  border-color:#111;
  transform: translateY(-1px);
}

.btn-ghost,
a.btn-ghost{
  background: transparent;
  color: #111;
  border: 1px solid #D9D2C6;
  box-shadow:none;
}

.btn-ghost:hover,
a.btn-ghost:hover{
  background: var(--olive-accent);
  color:#fff;
  border-color: var(--olive-accent);
  transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1100px){
  .oqf-banner{
    min-height: 280px;
    padding-top: 78px;
    padding-bottom: 64px;
  }

  .oqf-banner-copy{
    max-width: 100%;
  }

  .oqf-hero-grid,
  .oqf-intro-grid,
  .oqf-cta-box{
    grid-template-columns:1fr;
  }

  .oqf-hero-media-card,
  .oqf-media-card-tall{
    min-height: 360px;
    max-height: none;
  }

  .oqf-pillars,
  .oqf-results-grid{
    grid-template-columns:1fr;
  }

  .oqf-services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .oqf-title,
  .oqf-section-title,
  .oqf-cta-copy h2{
    max-width:none;
  }

  .oqf-tech-top{
    grid-template-columns:1fr;
    gap:22px;
  }

  .oqf-tech-headline .oqf-section-title{
    max-width: 12.5ch;
  }

  .oqf-tech-visual{
    justify-content:flex-start;
  }

  .oqf-tech-media-card{
    min-height: 300px;
    max-height: none;
  }

  .oqf-tech-bottom{
    margin-top:22px;
  }
}

@media (max-width: 768px){
  .oqf-banner{
    min-height: 230px;
    padding-top: 72px;
    padding-bottom: 50px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    background-position: center center;
  }

  .oqf-banner-title{
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    margin-bottom: 12px;
  }

  .oqf-banner-text{
    font-size: .98rem;
    line-height:1.52;
  }

  .oqf-hero,
  .oqf-intro,
  .oqf-services,
  .oqf-differentials,
  .oqf-tech,
  .oqf-results,
  .oqf-cta{
    padding:48px 0;
  }

  .oqf-hero{
    padding-top: 22px;
    padding-bottom: 30px;
  }

  .oqf-title{
    font-size: clamp(2.25rem, 11vw, 3.9rem);
    line-height:1.01;
  }

  .oqf-hero-actions{
    margin-top:22px;
  }

  .oqf-hero-media-card{
    min-height: 280px;
  }

  .oqf-lead,
  .oqf-intro-right p,
  .oqf-section-text,
  .oqf-tech-copy p,
  .oqf-cta-copy p,
  .oqf-unique-copy p{
    font-size:1rem;
    line-height:1.72;
  }

  .oqf-service-body,
  .oqf-pillar,
  .oqf-result-card,
  .oqf-cta-box{
    padding:22px;
  }

  .oqf-services-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .oqf-service-image{
    aspect-ratio: 16 / 8.5;
  }

  .oqf-service-body{
    padding:20px 20px 22px;
  }

  .oqf-service-body h3{
    font-size:1.08rem;
  }

  .oqf-tech-top{
    gap:16px;
  }

  .oqf-tech-headline .oqf-section-title{
    max-width:none;
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height:.96;
    letter-spacing:-0.055em;
  }

  .oqf-tech-media-card{
    min-height: 220px;
    max-height: none;
    border-radius:20px;
  }

  .oqf-tech-bottom{
    margin-top:16px;
  }

  .oqf-tech-copy p{
    font-size:1rem;
    line-height:1.72;
  }

  .oqf-tech-tags{
    gap:8px;
  }

  .oqf-tech-tags span{
    font-size:.84rem;
    padding:8px 12px;
  }
}

/* =========================================================
   MOBILE NAV (Falconi-like) — cole no FINAL do stegie.css
   ========================================================= */

@media (max-width: 980px){
  /* 1) No mobile, some o menu desktop (Soluções/Conteúdos/Sobre em linha) */
  .st-fnav__nav{ display:none !important; }

  /* 2) Deixa ações bem à direita (ícone contato + burger) */
  .st-fnav__actions{
    margin-left: auto;
    display:flex;
    align-items:center;
    gap: 10px;
  }

  /* ícone "Fale conosco" (mais ao centro, antes do sanduíche) */
  .st-fnav__contact{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  /* 3) Burger com cara “Falconi” */
  .st-fnav__burger{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: transparent;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap: 6px;
  }
  .st-fnav__burger span{
    display:block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,.92);
    border-radius: 3px;
  }
}

/* 4) No mobile, não faz sentido abrir mega menu desktop */
@media (max-width: 980px){
  .st-mega{ display:none !important; }
}

/* =========================================================
   Painel do menu mobile (2 colunas)
   ========================================================= */
.st-mnav[hidden]{ display:none !important; }

.st-mnav{
  position: fixed;
  inset: 0;
  z-index: 10050;
}

.st-mnav__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.st-mnav__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(92vw, 520px);
  background: #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;

  transform: translateX(10px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.st-mnav.is-open .st-mnav__panel{
  transform: translateX(0);
  opacity: 1;
}

.st-mnav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eee;
}

.st-mnav__topTitle{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--fnav-accent);
}

.st-mnav__close{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(183,211,0,.55);
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: rgba(0,0,0,.55);
}

.st-mnav__body{
  display:grid;
  grid-template-columns: 36% 64%;
  height: 100%;
}

/* Coluna esquerda (menus principais) */
.st-mnav__tabs{
  padding: 14px 0;
  border-right: 1px solid #eee;
  background: #fff;
}

.st-mnav__tab{
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,.45);
}

.st-mnav__tab.is-active{
  color: var(--fnav-accent);
}

/* Coluna direita (submenus) */
.st-mnav__content{
  padding: 14px 16px;
  overflow: auto;
}

.st-mnav__pane{ display:none; }
.st-mnav__pane.is-active{ display:block; }

.st-mnav__groupTitle{
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,.55);
  margin: 10px 0 8px;
}

.st-mnav__link{
  display:block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: #121212;
  text-decoration: none !important; /* garante sem sublinhado */
}

.st-mnav__link:hover{
  color: rgba(0,0,0,.65);
}

.st-mnav__sep{
  height: 1px;
  background: #eee;
  margin: 12px 0;
}

/* =========================================================
   MOBILE TOPBAR ICONS — ícones brancos, sem moldura (patch final)
   Cole no FINAL do stegie.css
   ========================================================= */

/* 1) “Somente ícone” (sem caixa, sem borda, sem fundo) */
.st-fnav__icononly{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: #fff !important;            /* herança pro SVG */
}

/* força SVG ficar branco */
.st-fnav__icononly svg{
  width: 26px;
  height: 26px;
  display: block;
  color: #fff !important;
}
.st-fnav__icononly svg *{
  stroke: currentColor !important;   /* garante traço branco */
}

/* 2) Burger: sem caixa/moldura, só 3 linhas brancas */
.st-fnav__burger{
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.st-fnav__burger span{
  width: 22px;
  height: 2px;
  background: #fff !important;
  border-radius: 2px;
  display: block;
}

/* 3) (Opcional) hover/tap: leve feedback sem “moldura” */
.st-fnav__icononly:active,
.st-fnav__burger:active{
  opacity: .78;
}

/* Remove qualquer outline/box-shadow que esteja criando “moldura” */
.st-fnav__burger,
.st-fnav__icononly{
  box-shadow: none !important;
  outline: none !important;
}

/* Burger (mobile): linhas mais próximas, estilo Falconi */
.st-fnav__burger{
  gap: 3px !important;          /* antes estava ~6px */
}

.st-fnav__burger span{
  width: 22px;                   /* mantém o comprimento */
  height: 2px;                   /* espessura Falconi */
  border-radius: 2px;
}

/* opcional: deixa o conjunto mais “compacto” verticalmente */
.st-fnav__burger{
  height: 44px;                  /* mantém clique confortável */
}

/* ==========================================
   OVERRIDE FINAL — Burger igual Falconi
   (cole no FINAL do stegie.css)
   ========================================== */
@media (max-width: 980px){

  .st-fnav__burger{
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    padding: 0 !important;               /* tira o “miolo” que interfere na percepção */
    border: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px !important;                 /* <<<<< distância Falconi (bem próxima) */
    box-shadow: none !important;
    outline: none !important;
  }

  .st-fnav__burger span{
    display: block;
    width: 22px;
    height: 2px;
    background: #fff !important;
    border-radius: 2px;
    margin: 0 !important;                /* zera qualquer margem */
  }

  /* zera especificamente a regra antiga que te atrapalha */
  .st-fnav__burger span + span{
    margin-top: 0 !important;
  }
}

/* =========================================================
   HERO PREMIUM SERVIÇOS | BLOCO NOVO E ISOLADO
   ========================================================= */

.svh-hero{
  position:relative;
  width:100%;
  margin-top:-12px; /* cola no topo */
  padding:0;
  z-index:1;
}

.svh-shell{
  position:relative;
  width:100%;
  height:clamp(420px, 34vw, 500px);
  min-height:420px;
  background:#070707;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  box-shadow:0 24px 80px rgba(17,17,17,.10);
}

.svh-track{
  position:relative;
  width:100%;
  height:100%;
}

.svh-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .55s ease, visibility .55s ease, transform .55s ease;
  transform:scale(1.01);
}

.svh-slide.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:scale(1);
}

.svh-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
}

.svh-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.58) 36%, rgba(0,0,0,.22) 72%, rgba(0,0,0,.10) 100%),
    linear-gradient(180deg, rgba(138,123,24,.18) 0%, rgba(95,85,16,.18) 100%);
}

.svh-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1440px;
  height:100%;
  margin:0 auto;
  padding:34px 44px 78px;
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) minmax(300px, .82fr);
  gap:24px;
  align-items:end;
}

.svh-copy{
  max-width:760px;
  align-self:center;
  color:#fff;
}

.svh-kicker{
  display:inline-flex;
  align-items:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
  color:rgba(255,255,255,.86);
  font-size:.84rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.svh-title{
  margin:0;
  max-width:760px;
  color:#fff;
  font-size:clamp(2.45rem, 4.15vw, 4.65rem);
  line-height:.94;
  letter-spacing:-.045em;
}

.svh-title .accent{
  display:block;
  color:#d6ce86;
}

.svh-text{
  margin:18px 0 0;
  max-width:680px;
  color:rgba(255,255,255,.92);
  font-size:clamp(1rem, 1.2vw, 1.28rem);
  line-height:1.46;
}

.svh-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 0;
}

.svh-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:.90rem;
  line-height:1;
}

.svh-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.svh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.svh-btn:hover{
  transform:translateY(-2px);
}

.svh-btn--primary{
  background:#8a7b18;
  color:#fff;
  font-weight:700;
}

.svh-btn--primary:hover{
  background:#5f5510;
}

.svh-btn--ghost{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:600;
  backdrop-filter:blur(6px);
}

.svh-btn--ghost:hover{
  background:rgba(255,255,255,.12);
}

.svh-panel{
  justify-self:end;
  width:min(100%, 460px);
  padding:22px 22px 20px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
  color:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.svh-panel-label{
  display:block;
  margin-bottom:12px;
  color:rgba(255,255,255,.74);
  font-size:.80rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.svh-panel-quote{
  margin:0;
  color:#fff;
  font-size:1.18rem;
  line-height:1.42;
  letter-spacing:-.02em;
}

.svh-panel-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  gap:10px;
}

.svh-panel-list li{
  position:relative;
  padding-left:18px;
  color:rgba(255,255,255,.88);
  line-height:1.52;
  font-size:1rem;
}

.svh-panel-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#b7e04a;
  transform:translateY(-50%);
}

.svh-indicators{
  position:absolute;
  right:44px;
  bottom:22px;
  z-index:3;
  display:flex;
  align-items:center;
  gap:8px;
}

.svh-bar{
  width:84px;
  height:6px;
  border:0;
  border-radius:999px;
  padding:0;
  cursor:pointer;
  background:rgba(255,255,255,.34);
  transition:background .2s ease, transform .2s ease;
}

.svh-bar.is-active{
  background:#b7e04a;
  transform:scaleY(1.04);
}

/* pequena aproximação da próxima seção */
.svc-intro{
  padding-top:24px;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1100px){
  .svh-shell{
    height:540px;
    min-height:540px;
  }

  .svh-inner{
    grid-template-columns:1fr;
    padding:30px 28px 74px;
    gap:18px;
    align-items:end;
  }

  .svh-copy{
    max-width:none;
  }

  .svh-title{
    max-width:820px;
    font-size:clamp(2.2rem, 5.2vw, 4rem);
  }

  .svh-text{
    max-width:760px;
  }

  .svh-panel{
    justify-self:start;
    width:100%;
    max-width:560px;
  }

  .svh-indicators{
    right:28px;
    bottom:18px;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px){
  .svh-hero{
    margin-top:-10px;
  }

  .svh-shell{
    height:560px;
    min-height:560px;
    border-radius:0 0 24px 24px;
  }

  .svh-inner{
    padding:22px 16px 72px;
    gap:14px;
    align-items:end;
  }

  .svh-kicker{
    padding:8px 12px;
    font-size:.72rem;
    margin-bottom:12px;
  }

  .svh-title{
    max-width:none;
    font-size:clamp(1.95rem, 10vw, 3rem);
    line-height:.98;
  }

  .svh-text{
    max-width:none;
    margin-top:12px;
    font-size:1rem;
    line-height:1.46;
  }

  .svh-tags{
    display:none; /* limpa o mobile */
  }

  .svh-actions{
    margin-top:16px;
    gap:10px;
  }

  .svh-btn{
    min-height:46px;
    padding:0 16px;
    font-size:.92rem;
  }

  .svh-btn--ghost{
    display:none; /* mantém mobile mais limpo */
  }

  .svh-panel{
    width:100%;
    padding:16px 16px 14px;
    border-radius:20px;
  }

  .svh-panel-label{
    margin-bottom:10px;
    font-size:.72rem;
  }

  .svh-panel-quote{
    font-size:1.02rem;
    line-height:1.38;
  }

  .svh-panel-list{
    gap:8px;
    margin-top:12px;
  }

  .svh-panel-list li{
    padding-left:14px;
    font-size:.90rem;
    line-height:1.44;
  }

  .svh-panel-list li::before{
    width:7px;
    height:7px;
  }

  .svh-indicators{
    left:16px;
    right:16px;
    bottom:14px;
    justify-content:flex-end;
  }

  .svh-bar{
    width:72px;
    flex:0 0 72px;
    height:5px;
  }

  .svc-intro{
    padding-top:18px;
  }
}

@media (max-width: 390px){
  .svh-shell{
    height:590px;
    min-height:590px;
  }

  .svh-title{
    font-size:clamp(1.85rem, 10.4vw, 2.7rem);
  }

  .svh-text{
    font-size:.96rem;
  }
}

/* =========================================================
   AJUSTE FINAL HERO SERVIÇOS
   Desktop mais baixo + card mais para cima
   Mobile limpo, compacto e premium
   Cole no FINAL do seu <style>
   ========================================================= */

/* =========================
   DESKTOP
   ========================= */
.svh-shell{
  height: clamp(300px, 20vw, 340px);
  min-height: 300px;
}

.svh-inner{
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr);
  align-items: start;
  gap: 18px;
  padding: 18px 40px 44px;
}

.svh-copy{
  max-width: 760px;
  align-self: start;
  padding-top: 2px;
}

.svh-kicker{
  margin-bottom: 12px;
  padding: 8px 14px;
  font-size: .76rem;
  line-height: 1;
}

.svh-title{
  max-width: 860px;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.svh-text{
  margin-top: 12px;
  max-width: 700px;
  font-size: clamp(.92rem, .95vw, 1.02rem);
  line-height: 1.34;
}

.svh-actions{
  margin-top: 14px;
}

.svh-btn{
  min-height: 46px;
  padding: 0 20px;
  font-size: .94rem;
}

.svh-btn--primary{
  gap: 8px;
  border-radius: 999px;
}

.svh-btn-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.svh-panel{
  align-self: start;
  width: min(100%, 395px);
  margin-top: -8px;
  padding: 16px 18px 14px;
  border-radius: 24px;
}

.svh-panel-label{
  margin-bottom: 8px;
  font-size: .74rem;
}

.svh-panel-quote{
  font-size: .94rem;
  line-height: 1.28;
}

.svh-panel-list{
  margin-top: 10px;
  gap: 6px;
}

.svh-panel-list li{
  padding-left: 15px;
  font-size: .86rem;
  line-height: 1.30;
}

.svh-panel-list li::before{
  width: 7px;
  height: 7px;
}

.svh-indicators{
  right: 34px;
  bottom: 12px;
  gap: 7px;
}

.svh-bar{
  width: 66px;
  height: 5px;
}

/* =========================
   NOTEBOOK / TABLET HORIZONTAL
   ========================= */
@media (max-width: 1200px){
  .svh-shell{
    height: 320px;
    min-height: 320px;
  }

  .svh-inner{
    padding: 18px 28px 42px;
    gap: 16px;
  }

  .svh-title{
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  }

  .svh-text{
    max-width: 620px;
  }

  .svh-panel{
    width: min(100%, 365px);
    margin-top: -4px;
  }

  .svh-indicators{
    right: 28px;
    bottom: 10px;
  }

  .svh-bar{
    width: 58px;
  }
}

/* =========================
   TABLET VERTICAL
   ========================= */
@media (max-width: 980px){
  .svh-shell{
    height: 300px;
    min-height: 300px;
  }

  .svh-inner{
    grid-template-columns: minmax(0, 1fr) 320px;
    padding: 16px 22px 40px;
    gap: 14px;
  }

  .svh-title{
    font-size: clamp(1.75rem, 4.1vw, 2.7rem);
  }

  .svh-text{
    font-size: .92rem;
    line-height: 1.30;
  }

  .svh-panel{
    width: 100%;
    padding: 14px 14px 12px;
    border-radius: 20px;
  }

  .svh-panel-quote{
    font-size: .88rem;
  }

  .svh-panel-list li{
    font-size: .80rem;
  }
}

/* =========================
   MOBILE
   Estratégia definitiva:
   - esconder kicker
   - esconder parágrafo
   - esconder card "Foco desta frente"
   - manter imagem + título + CTA + indicadores
   ========================= */
@media (max-width: 768px){
  .svh-hero{
    margin-top: -10px;
  }

  .svh-shell{
    height: 360px;
    min-height: 360px;
    border-radius: 0 0 20px 20px;
  }

  .svh-overlay{
    background:
      linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.66) 42%, rgba(0,0,0,.24) 100%),
      linear-gradient(180deg, rgba(138,123,24,.14) 0%, rgba(95,85,16,.14) 100%);
  }

  .svh-inner{
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
    padding: 14px 14px 44px;
  }

  .svh-copy{
    max-width: 68%;
    padding-top: 6px;
  }

  .svh-kicker{
    display: none;
  }

  .svh-title{
    max-width: 240px;
    font-size: clamp(1.62rem, 8.6vw, 2.3rem);
    line-height: .96;
    letter-spacing: -.04em;
  }

  .svh-text{
    display: none;
  }

  .svh-panel{
    display: none;
  }

  .svh-actions{
    margin-top: 12px;
  }

  .svh-btn{
    min-height: 40px;
    padding: 0 16px;
    font-size: .86rem;
  }

  .svh-btn--primary{
    gap: 6px;
  }

  .svh-btn-arrow{
    font-size: .95rem;
  }

  .svh-indicators{
    right: 14px;
    bottom: 10px;
    left: auto;
    gap: 6px;
  }

  .svh-bar{
    width: 46px;
    height: 4px;
    flex: 0 0 46px;
  }

  /* recorte individual das imagens no mobile */
  .svh-track > .svh-slide:nth-child(1) .svh-bg{
    background-position: 74% center;
  }

  .svh-track > .svh-slide:nth-child(2) .svh-bg{
    background-position: 68% center;
  }

  .svh-track > .svh-slide:nth-child(3) .svh-bg{
    background-position: 76% center;
  }
}

/* =========================
   MOBILE MENOR
   ========================= */
@media (max-width: 420px){
  .svh-shell{
    height: 380px;
    min-height: 380px;
  }

  .svh-copy{
    max-width: 70%;
  }

  .svh-title{
    max-width: 220px;
    font-size: clamp(1.52rem, 9vw, 2.08rem);
  }

  .svh-btn{
    min-height: 38px;
    padding: 0 14px;
    font-size: .84rem;
  }

  .svh-bar{
    width: 42px;
    flex: 0 0 42px;
  }
}

/* =========================================================
   AJUSTE FINO FINAL | DESKTOP + MOBILE
   Cole no FINAL do seu <style>
   ========================================================= */

/* =========================
   DESKTOP
   ========================= */

/* 1) Desce um pouco o card "FOCO DESTA FRENTE" */
.svh-panel{
  margin-top: 10px;
}

/* 2) Hover do botão principal no padrão do anexo */
.svh-btn--primary:hover{
  background: #B6F34D;
  color: #111111;
  border-color: #B6F34D;
}

.svh-btn--primary:hover .svh-btn-arrow{
  color: #111111;
}

/* transição mais suave no botão */
.svh-btn--primary{
  transition:
    background .22s ease,
    color .22s ease,
    border-color .22s ease,
    transform .20s ease,
    box-shadow .22s ease;
}

/* =========================
   NOTEBOOK / TABLET
   ========================= */
@media (max-width: 1200px){
  .svh-panel{
    margin-top: 12px;
  }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px){

  /* mantém o hero limpo */
  .svh-copy{
    max-width: 82%;
    padding-top: 10px;
  }

  /* 3) Título menor e mais distribuído */
  .svh-title{
    max-width: 290px;
    font-size: clamp(1.38rem, 6.9vw, 1.95rem);
    line-height: .98;
    letter-spacing: -.035em;
  }

  /* botão continua compacto */
  .svh-actions{
    margin-top: 12px;
  }

  .svh-btn{
    min-height: 40px;
    padding: 0 15px;
    font-size: .84rem;
  }

  .svh-btn-arrow{
    font-size: .92rem;
  }
}

/* =========================
   MOBILE MENOR
   ========================= */
@media (max-width: 420px){
  .svh-copy{
    max-width: 84%;
  }

  .svh-title{
    max-width: 300px;
    font-size: clamp(1.28rem, 6.4vw, 1.78rem);
    line-height: .99;
  }
}

/* =========================================================
   AJUSTE DEFINITIVO DO TÍTULO DOS SLIDES NO MOBILE
   Distribui melhor a frase na largura da tela
   Cole no FINAL do seu <style>
   ========================================================= */

@media (max-width: 768px){

  /* o bloco de texto passa a usar mais largura da tela */
  .svh-copy{
    max-width: 94%;
    width: 94%;
    padding-top: 10px;
  }

  /* título menor, mais largo e com menos quebra */
  .svh-title{
    max-width: none;
    width: 100%;
    font-size: clamp(1.22rem, 5.7vw, 1.72rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }

  /* MUITO IMPORTANTE:
     no mobile, a parte destacada não deve ficar como bloco separado */
  .svh-title .accent{
    display: inline;
  }

  /* se houver quebra manual em algum título, escondemos no mobile */
  .svh-title br{
    display: none;
  }

  /* cada slide recebe um pequeno ajuste fino */
  .svh-track > .svh-slide:nth-child(1) .svh-title{
    font-size: clamp(1.18rem, 5.5vw, 1.62rem);
  }

  .svh-track > .svh-slide:nth-child(2) .svh-title{
    font-size: clamp(1.20rem, 5.6vw, 1.66rem);
  }

  .svh-track > .svh-slide:nth-child(3) .svh-title{
    font-size: clamp(1.12rem, 5.2vw, 1.50rem);
  }
}

@media (max-width: 420px){

  .svh-copy{
    max-width: 95%;
    width: 95%;
  }

  .svh-title{
    font-size: clamp(1.14rem, 5.2vw, 1.48rem);
    line-height: 1.03;
  }

  .svh-track > .svh-slide:nth-child(1) .svh-title{
    font-size: clamp(1.10rem, 5.0vw, 1.42rem);
  }

  .svh-track > .svh-slide:nth-child(2) .svh-title{
    font-size: clamp(1.12rem, 5.1vw, 1.44rem);
  }

  .svh-track > .svh-slide:nth-child(3) .svh-title{
    font-size: clamp(1.04rem, 4.8vw, 1.34rem);
  }
}

/* =========================================================
   TÍTULOS DOS SLIDES NO MOBILE | QUEBRA CONTROLADA
   Cole no FINAL do <style>
   ========================================================= */

/* desktop continua normal */
.svh-title-line{
  display:inline;
}

/* mobile */
@media (max-width: 768px){

  .svh-copy{
    max-width: 96%;
    width: 96%;
    padding-top: 12px;
  }

  .svh-title{
    width:100%;
    max-width:none;
    margin:0;
    font-size:1.58rem;
    line-height:1.02;
    letter-spacing:-0.03em;
  }

  .svh-title-line{
    display:block;
    width:fit-content;
    max-width:100%;
    padding:3px 8px 5px;
    margin:0 0 4px 0;
    background:rgba(0,0,0,.42);
    box-decoration-break:clone;
    -webkit-box-decoration-break:clone;
  }

  .svh-title-line.accent{
    color:#d6ce86;
  }

  /* slide 1 */
  .svh-track > .svh-slide:nth-child(1) .svh-title{
    font-size:1.50rem;
  }

  /* slide 2 */
  .svh-track > .svh-slide:nth-child(2) .svh-title{
    font-size:1.52rem;
  }

  /* slide 3 */
  .svh-track > .svh-slide:nth-child(3) .svh-title{
    font-size:1.34rem;
  }

  .svh-actions{
    margin-top:12px;
  }
}

@media (max-width: 420px){

  .svh-copy{
    max-width:97%;
    width:97%;
  }

  .svh-title{
    font-size:1.42rem;
    line-height:1.02;
  }

  .svh-title-line{
    padding:2px 7px 4px;
    margin-bottom:3px;
  }

  .svh-track > .svh-slide:nth-child(1) .svh-title{
    font-size:1.34rem;
  }

  .svh-track > .svh-slide:nth-child(2) .svh-title{
    font-size:1.36rem;
  }

  .svh-track > .svh-slide:nth-child(3) .svh-title{
    font-size:1.22rem;
  }
}

/* =========================================
   SERVIÇOS — HERO MOBILE
   Ajuste fiel ao modelo enviado
   ========================================= */
@media (max-width: 768px){

  .servicos-hero__slide,
  .servicos-hero .swiper-slide,
  .servicos-slider .swiper-slide{
    position: relative;
    overflow: hidden;
  }

  .servicos-hero__content{
    position: absolute;
    left: 20px;
    right: 20px;
    top: 150px; /* ajuste fino se quiser subir/descer alguns px */
    z-index: 3;

    width: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .servicos-hero__title{
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-family: inherit;
    font-size: clamp(2rem, 7.2vw, 2.45rem);
    line-height: .94;
    letter-spacing: -0.045em;
    font-weight: 700;
    text-align: left;
  }

  .servicos-hero__title .line{
    display: block;
    white-space: nowrap; /* impede quebrar em várias linhas */
  }

  .servicos-hero__title .line--white{
    color: #ffffff;
  }

  .servicos-hero__title .line--accent{
    color: var(--olive-accent, #a08f16);
  }

  .servicos-hero__cta{
    margin-top: 18px;
  }
}

/* =========================================================
   CONTEÚDOS TÊXTEIS / TEMAS TÉCNICOS
   Reutilizável para:
   - conteudos.html
   - qualidade.html
   - processos.html
   - tecnologias.html
   - pessoas.html
   - mercado.html
   ========================================================= */

/* =========================
   TOKENS LOCAIS
   ========================= */
:root{
  --tt-bg: var(--bg, #F7F6F3);
  --tt-surface: var(--surface, #FFFFFF);
  --tt-text: var(--text, #121212);
  --tt-muted: var(--muted, #5A5A5A);
  --tt-border: var(--border, #E6E1D8);

  --tt-accent: var(--olive-accent, #8E8420);
  --tt-accent-hover: var(--olive-accent-hover, #A4F330);

  --tt-dark: #111111;
  --tt-shadow: var(--shadow, 0 10px 30px rgba(18,18,18,.06));
  --tt-shadow-soft: 0 18px 44px rgba(0,0,0,.06);

  --tt-radius-xl: 28px;
  --tt-radius-lg: 22px;
  --tt-radius-md: 16px;
  --tt-radius-sm: 12px;

  --tt-container-text: 780px;
  --tt-container-wide: 1100px;
}

/* =========================
   BASE DE SEÇÕES
   ========================= */
.tt-hero,
.tt-intro,
.tt-map,
.tt-topics,
.tt-channels,
.tt-library,
.tt-journey,
.tt-scope,
.tt-curation,
.tt-start,
.tt-related,
.tt-editorial,
.tt-how,
.tt-cta{
  position: relative;
}

.tt-intro,
.tt-map,
.tt-topics,
.tt-channels,
.tt-library,
.tt-journey,
.tt-scope,
.tt-curation,
.tt-start,
.tt-related,
.tt-editorial,
.tt-how,
.tt-cta{
  padding: clamp(56px, 7vw, 96px) 0;
}

.tt-map,
.tt-channels,
.tt-journey,
.tt-curation,
.tt-related{
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.55));
}

.tt-topics,
.tt-library,
.tt-start,
.tt-editorial,
.tt-how,
.tt-scope,
.tt-cta{
  background: transparent;
}

/* =========================
   HERO
   ========================= */
.tt-hero{
  padding: clamp(58px, 8vw, 104px) 0 clamp(52px, 6vw, 76px);
  background:
    radial-gradient(circle at 12% 18%, rgba(142,132,32,.08), transparent 20%),
    radial-gradient(circle at 88% 22%, rgba(164,243,48,.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.7));
  overflow: hidden;
}

.tt-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.09), transparent);
}

.tt-hero__inner{
  max-width: 920px;
}

.tt-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--tt-accent);
}

.tt-kicker::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background: currentColor;
  opacity:.9;
}

.tt-hero h1{
  margin:0;
  max-width: 900px;
  color: var(--tt-text);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -.03em;
  font-weight: 700;
}

.tt-hero__lead{
  margin: 20px 0 0;
  max-width: var(--tt-container-text);
  color: var(--tt-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.14rem);
  line-height: 1.75;
}

.tt-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top: 30px;
}

/* =========================
   CABEÇALHOS DE SEÇÃO
   ========================= */
.tt-section-head{
  max-width: var(--tt-container-text);
  margin-bottom: 28px;
}

.tt-section-head--center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.tt-section-head h2{
  margin:0;
  color: var(--tt-text);
  font-size: clamp(1.6rem, 2.7vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 650;
}

.tt-section-head p{
  margin: 16px 0 0;
  color: var(--tt-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.tt-section-head--center p{
  margin-left:auto;
  margin-right:auto;
  max-width: 860px;
}

/* =========================
   GRID
   ========================= */
.tt-grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.tt-grid > *{
  grid-column: span 4;
}

.tt-grid--3 > *{
  grid-column: span 4;
}

/* ajuste confortável para grades com 5 cards */
.tt-topics .tt-grid > *{
  grid-column: span 4;
}

.tt-topics .tt-grid > *:nth-last-child(2),
.tt-topics .tt-grid > *:last-child{
  grid-column: span 6;
}

/* =========================
   CARDS
   ========================= */
.tt-card{
  position:relative;
  background: var(--tt-surface);
  border:1px solid var(--tt-border);
  border-radius: var(--tt-radius-lg);
  box-shadow: 0 1px 0 rgba(18,18,18,.02);
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
  min-height: 100%;
}

.tt-card:hover{
  transform: translateY(-4px);
  border-color: rgba(142,132,32,.28);
  box-shadow: var(--tt-shadow-soft);
}

.tt-card__body{
  padding: 26px 24px 24px;
}

.tt-card h3,
.tt-card h4{
  margin:0;
  color: var(--tt-text);
  line-height:1.18;
  letter-spacing:-.02em;
}

.tt-card h3{
  font-size: 1.26rem;
  font-weight: 650;
}

.tt-card h4{
  font-size: 1.04rem;
  font-weight: 650;
}

.tt-card p{
  margin:14px 0 0;
  color: var(--tt-muted);
  line-height: 1.75;
  font-size: .98rem;
}

.tt-card--feature .tt-card__body{
  padding-top: 28px;
  padding-bottom: 28px;
}

.tt-card--topic{
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.98));
}

.tt-card--topic::before,
.tt-card--feature::before,
.tt-card--step::before{
  content:"";
  position:absolute;
  left:24px;
  right:24px;
  top:0;
  height:3px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--tt-accent), rgba(164,243,48,.9));
  opacity:.9;
}

.tt-card--step .tt-card__body{
  padding-top: 30px;
}

/* =========================
   TAGS / LINKS / PILLS
   ========================= */
.tt-tag{
  display:inline-flex;
  align-items:center;
  min-height: 28px;
  padding: 0 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(142,132,32,.09);
  border:1px solid rgba(142,132,32,.14);
  color: var(--tt-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tt-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 18px;
  color: var(--tt-accent);
  text-decoration: none;
  font-weight: 650;
  line-height:1.3;
  transition: color .25s ease, transform .25s ease;
}

.tt-link::after{
  content:"→";
  font-size: 1rem;
  line-height:1;
  transform: translateX(0);
  transition: transform .25s ease;
}

.tt-link:hover{
  color: var(--tt-text);
}

.tt-link:hover::after{
  transform: translateX(3px);
}

.tt-pill-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 12px;
}

.tt-pill{
  display:inline-flex;
  align-items:center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--tt-surface);
  border:1px solid var(--tt-border);
  color: var(--tt-text);
  font-size: .95rem;
  font-weight: 550;
  line-height:1.2;
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.tt-pill:hover{
  transform: translateY(-2px);
  border-color: rgba(142,132,32,.24);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

/* =========================
   STEPS
   ========================= */
.tt-steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tt-step-number{
  display:inline-block;
  margin-bottom: 16px;
  color: var(--tt-accent);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: .08em;
}

/* =========================
   SOURCE GROUPS
   ========================= */
.tt-source-group + .tt-source-group{
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.tt-source-group__head{
  max-width: 860px;
  margin-bottom: 20px;
}

.tt-source-group__head h3{
  margin:0;
  color: var(--tt-text);
  font-size: clamp(1.24rem, 2vw, 1.65rem);
  line-height:1.18;
  letter-spacing:-.02em;
  font-weight:650;
}

.tt-source-group__head p{
  margin:10px 0 0;
  color: var(--tt-muted);
  line-height:1.75;
}

/* =========================
   EDITORIAL
   ========================= */
.tt-editorial__box{
  position:relative;
  padding: clamp(30px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
  border:1px solid var(--tt-border);
  border-radius: var(--tt-radius-xl);
  box-shadow: var(--tt-shadow);
  overflow:hidden;
}

.tt-editorial__box::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background: linear-gradient(180deg, var(--tt-accent), rgba(164,243,48,.95));
}

.tt-editorial__box h2{
  margin:0;
  max-width: 860px;
  color: var(--tt-text);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height:1.12;
  letter-spacing:-.03em;
  font-weight:650;
}

.tt-editorial__box p{
  margin:16px 0 0;
  max-width: 860px;
  color: var(--tt-muted);
  font-size:1rem;
  line-height:1.85;
}

/* =========================
   CTA
   ========================= */
.tt-cta__box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 40px);
  background:
    linear-gradient(135deg, #121212 0%, #191919 52%, #111111 100%);
  border-radius: var(--tt-radius-xl);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  overflow:hidden;
  position:relative;
}

.tt-cta__box::before{
  content:"";
  position:absolute;
  inset:-40% auto auto 72%;
  width:260px;
  height:260px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(164,243,48,.14), transparent 62%);
  pointer-events:none;
}

.tt-cta__content{
  position:relative;
  z-index:1;
  max-width: 760px;
}

.tt-cta__content .tt-kicker{
  color: var(--tt-accent-hover);
}

.tt-cta__content h2{
  margin:0;
  color:#fff;
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  line-height:1.12;
  letter-spacing:-.03em;
  font-weight:650;
}

.tt-cta__content p{
  margin:15px 0 0;
  color: rgba(255,255,255,.80);
  line-height:1.8;
  font-size: 1rem;
}

.tt-cta__actions{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  align-items:center;
  justify-content:flex-end;
  min-width: 240px;
}

/* =========================
   AJUSTES FINOS DE LISTAGEM
   ========================= */
.tt-intro .tt-section-head,
.tt-map .tt-section-head,
.tt-how .tt-section-head,
.tt-journey .tt-section-head,
.tt-related .tt-section-head{
  margin-bottom: 24px;
}

.tt-library .tt-card h3,
.tt-channels .tt-card h3,
.tt-topics .tt-card h3{
  font-size: 1.22rem;
}

.tt-curation .tt-grid > *,
.tt-channels .tt-grid > *,
.tt-library .tt-grid > *{
  grid-column: span 4;
}

/* âncoras com header fixo */
#mapa-conteudos,
#temas,
#referencias{
  scroll-margin-top: 110px;
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 1100px){
  .tt-grid > *,
  .tt-grid--3 > *,
  .tt-curation .tt-grid > *,
  .tt-channels .tt-grid > *,
  .tt-library .tt-grid > *{
    grid-column: span 6;
  }

  .tt-topics .tt-grid > *,
  .tt-topics .tt-grid > *:nth-last-child(2),
  .tt-topics .tt-grid > *:last-child{
    grid-column: span 6;
  }

  .tt-steps{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tt-cta__box{
    flex-direction:column;
    align-items:flex-start;
  }

  .tt-cta__actions{
    justify-content:flex-start;
    min-width: 0;
  }
}

@media (max-width: 760px){
  .tt-hero{
    padding-top: 50px;
    padding-bottom: 46px;
  }

  .tt-intro,
  .tt-map,
  .tt-topics,
  .tt-channels,
  .tt-library,
  .tt-journey,
  .tt-scope,
  .tt-curation,
  .tt-start,
  .tt-related,
  .tt-editorial,
  .tt-how,
  .tt-cta{
    padding: 48px 0;
  }

  .tt-grid{
    gap:16px;
  }

  .tt-grid > *,
  .tt-grid--3 > *,
  .tt-curation .tt-grid > *,
  .tt-channels .tt-grid > *,
  .tt-library .tt-grid > *,
  .tt-topics .tt-grid > *,
  .tt-topics .tt-grid > *:nth-last-child(2),
  .tt-topics .tt-grid > *:last-child{
    grid-column: 1 / -1;
  }

  .tt-steps{
    grid-template-columns: 1fr;
    gap:16px;
  }

  .tt-card__body{
    padding: 22px 18px 20px;
  }

  .tt-card--step .tt-card__body{
    padding-top: 24px;
  }

  .tt-card--topic::before,
  .tt-card--feature::before,
  .tt-card--step::before{
    left:18px;
    right:18px;
  }

  .tt-kicker{
    margin-bottom: 12px;
    font-size: .76rem;
    letter-spacing: .11em;
  }

  .tt-section-head{
    margin-bottom: 20px;
  }

  .tt-section-head h2{
    font-size: clamp(1.38rem, 7vw, 1.9rem);
  }

  .tt-section-head p,
  .tt-card p,
  .tt-editorial__box p,
  .tt-cta__content p,
  .tt-source-group__head p,
  .tt-hero__lead{
    line-height: 1.7;
    font-size: .96rem;
  }

  .tt-pill-grid{
    gap:10px;
  }

  .tt-pill{
    min-height: 38px;
    padding: 0 14px;
    font-size: .9rem;
  }

  .tt-source-group + .tt-source-group{
    margin-top: 30px;
    padding-top: 30px;
  }

  .tt-editorial__box,
  .tt-cta__box{
    border-radius: 22px;
  }

  .tt-cta__box{
    padding: 24px 18px;
  }

  .tt-cta__actions{
    width:100%;
  }

  .tt-cta__actions .btn{
    width:100%;
    justify-content:center;
  }
}

@media (max-width: 420px){
  .tt-hero h1{
    letter-spacing:-.02em;
  }

  .tt-card h3{
    font-size: 1.14rem;
  }

  .tt-card h4{
    font-size: 1rem;
  }

  .tt-link{
    margin-top: 16px;
    font-size: .95rem;
  }
}

/* =========================================================
   PÁGINA QUALIDADE — ESTILO CLEAN / PREMIUM / ISOLADO
   Compatível com o qualidade.html novo (classes q-*)
   COLE NO FINAL DO stegie.css
   ========================================================= */

.q-page{
  background:#F7F6F3;
  padding:38px 0 72px;
}

.q-wrap{
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
}

.q-hero{
  margin-bottom:40px;
}

.q-eyebrow{
  margin:0 0 10px;
  font-size:.92rem;
  line-height:1.2;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#7B7424;
  font-weight:700;
}

.q-title{
  margin:0 0 14px;
  font-size:clamp(2.2rem, 5vw, 4.3rem);
  line-height:.98;
  letter-spacing:-.03em;
  color:#111111;
  font-weight:700;
  max-width:980px;
}

.q-intro{
  margin:0;
  max-width:980px;
  font-size:1.14rem;
  line-height:1.8;
  color:#4F4F4F;
}

.q-shelf{
  margin-top:42px;
}

.q-shelf:first-of-type{
  margin-top:10px;
}

.q-shelf__head{
  margin-bottom:22px;
}

.q-shelf__title{
  margin:0 0 8px;
  font-size:clamp(1.8rem, 3.5vw, 2.8rem);
  line-height:1.06;
  color:#111111;
  font-weight:700;
}

.q-shelf__subtitle{
  margin:0;
  max-width:920px;
  font-size:1.04rem;
  line-height:1.75;
  color:#5A5A5A;
}

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

.q-card{
  background:#FFFFFF;
  border:1px solid #E6E1D8;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(18,18,18,.05);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.q-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(18,18,18,.08);
  border-color:#D8D1C6;
}

.q-card__media{
  display:block;
  width:100%;
  aspect-ratio:16 / 8.4;
  background:#ECE8E0;
  overflow:hidden;
  text-decoration:none;
}

.q-card__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.q-card__media--placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    linear-gradient(135deg, rgba(123,116,36,.10), rgba(123,116,36,.04)),
    #EFEAE1;
}

.q-card__media--placeholder span{
  color:#7B7424;
  font-size:1rem;
  line-height:1.4;
  font-weight:700;
  letter-spacing:.02em;
  text-align:center;
}

.q-card__body{
  padding:18px 20px 22px;
}

.q-card__badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(123,116,36,.10);
  color:#7B7424;
  font-size:.84rem;
  line-height:1;
  font-weight:700;
  letter-spacing:.02em;
}

.q-card__name{
  margin:14px 0 6px;
  font-size:1.55rem;
  line-height:1.12;
  color:#111111;
  font-weight:700;
}

.q-card__cover{
  margin:0 0 12px;
  font-size:.95rem;
  line-height:1.5;
  color:#7A7A7A;
  font-weight:600;
}

.q-card__desc{
  margin:0;
  font-size:1rem;
  line-height:1.72;
  color:#555555;
}

.q-card__link{
  display:inline-flex;
  align-items:center;
  margin-top:16px;
  color:#7B7424;
  text-decoration:none;
  font-size:.98rem;
  line-height:1.2;
  font-weight:700;
}

.q-card__link:hover{
  text-decoration:underline;
}

/* evita imagens vazias quebrando a altura do card */
.q-card__media img[src=""],
.q-card__media img:not([src]){
  display:none;
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 980px){
  .q-wrap{
    width:min(1180px, calc(100% - 32px));
  }

  .q-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .q-page{
    padding:26px 0 52px;
  }

  .q-title{
    font-size:clamp(2rem, 10vw, 3rem);
    line-height:1.02;
  }

  .q-intro{
    font-size:1rem;
    line-height:1.7;
  }

  .q-card__body{
    padding:16px 16px 18px;
  }

  .q-card__name{
    font-size:1.32rem;
  }

  .q-shelf{
    margin-top:34px;
  }
}

/* =========================================================
   QUALIDADE — OVERRIDE FINAL
   4 cards por linha no desktop
   Cole no FINAL do stegie.css
   ========================================================= */

.q-wrap{
  width:min(1320px, calc(100% - 40px));
}

.q-hero{
  margin-bottom:28px;
}

.q-title{
  max-width:1100px;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:1;
}

.q-intro{
  max-width:980px;
  font-size:1.02rem;
  line-height:1.65;
}

.q-shelf{
  margin-top:32px;
}

.q-shelf__head{
  margin-bottom:16px;
}

.q-shelf__title{
  font-size:clamp(1.45rem, 2.4vw, 2rem);
  line-height:1.08;
  margin-bottom:6px;
}

.q-shelf__subtitle{
  font-size:.96rem;
  line-height:1.62;
  max-width:900px;
}

/* 4 cards por linha */
.q-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.q-card{
  border-radius:20px;
  box-shadow:0 8px 24px rgba(18,18,18,.045);
}

/* imagem mais baixa */
.q-card__media{
  aspect-ratio:16 / 7;
}

/* placeholder mais compacto */
.q-card__media--placeholder{
  padding:18px;
}

.q-card__media--placeholder span{
  font-size:.92rem;
  line-height:1.3;
}

/* corpo mais enxuto */
.q-card__body{
  padding:14px 15px 16px;
}

.q-card__badge{
  min-height:26px;
  padding:5px 10px;
  font-size:.74rem;
}

.q-card__name{
  margin:10px 0 4px;
  font-size:1.02rem;
  line-height:1.14;
  font-weight:700;
}

.q-card__cover{
  margin:0 0 8px;
  font-size:.84rem;
  line-height:1.35;
}

.q-card__desc{
  font-size:.90rem;
  line-height:1.58;
}

.q-card__link{
  margin-top:12px;
  font-size:.88rem;
}

/* tablet */
@media (max-width: 1180px){
  .q-wrap{
    width:min(1180px, calc(100% - 32px));
  }

  .q-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
  }

  .q-card__media{
    aspect-ratio:16 / 7.8;
  }

  .q-card__name{
    font-size:1.18rem;
  }
}

/* mobile */
@media (max-width: 680px){
  .q-page{
    padding:24px 0 48px;
  }

  .q-wrap{
    width:min(100%, calc(100% - 24px));
  }

  .q-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .q-title{
    font-size:clamp(1.8rem, 9vw, 2.5rem);
  }

  .q-intro{
    font-size:.98rem;
    line-height:1.65;
  }

  .q-card__media{
    aspect-ratio:16 / 8.6;
  }

  .q-card__body{
    padding:14px;
  }

  .q-card__name{
    font-size:1.12rem;
  }

  .q-card__desc{
    font-size:.92rem;
  }
}

/* =========================================================
   MENU MOBILE — ROLAGEM INTERNA
   ========================================================= */
@media (max-width: 980px){

  .st-fnav{
    overflow: visible;
  }

  .st-fnav__mobile{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;              /* será ajustado via JS */
    height: auto;        /* será ajustado via JS */
    bottom: auto;
    display: none;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 18px 34px 34px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 9998;
    box-sizing: border-box;
  }

  .st-fnav__mobile[hidden]{
    display: none !important;
  }

  .st-fnav__mobile.is-open{
    display: block;
  }

  .st-fnav__mobile a{
    display: block;
    padding: 10px 0;
    text-decoration: none;
  }

  .st-fnav__mobile hr{
    border: 0;
    height: 1px;
    background: rgba(255,255,255,.18);
    margin: 18px 0;
  }

  .st-fnav__mobile-group:last-child{
    padding-bottom: 28px;
  }
}

/* =========================================================
   QUALIDADE — HERO SLIDER PREMIUM
   ========================================================= */

.qt-hero{
  position: relative;
  padding: 0 0 28px;
  background: var(--bg, #F7F6F3);
}

.qt-hero__slider{
  position: relative;
  overflow: hidden;
  min-height: 368px;
  border-radius: 0 0 38px 38px;
  background: #d8d8d4;
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.qt-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.qt-slide.is-active{
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.qt-slide__bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 28%, rgba(0,0,0,.06) 100%),
    linear-gradient(135deg, #d8d8d4 0%, #c8c8c1 46%, #d6d6d0 100%);
}

.qt-slide__bg::before,
.qt-slide__bg::after{
  content:"";
  position:absolute;
  border-radius:999px;
  filter: blur(1px);
  opacity:.88;
}

.qt-slide__bg::before{
  width: 760px;
  height: 210px;
  left: -120px;
  top: 38px;
  transform: rotate(-26deg);
  background:
    linear-gradient(
      90deg,
      rgba(126,140,23,.04) 0%,
      rgba(126,140,23,.16) 18%,
      rgba(126,140,23,.34) 34%,
      rgba(179,243,77,.44) 48%,
      rgba(126,140,23,.30) 62%,
      rgba(126,140,23,.10) 100%
    );
  box-shadow:
    0 0 0 10px rgba(126,140,23,.06) inset,
    0 0 0 20px rgba(126,140,23,.03) inset;
}

.qt-slide__bg::after{
  width: 560px;
  height: 180px;
  right: -80px;
  top: -8px;
  transform: rotate(18deg);
  background:
    linear-gradient(
      90deg,
      rgba(126,140,23,.03) 0%,
      rgba(126,140,23,.18) 20%,
      rgba(179,243,77,.34) 42%,
      rgba(126,140,23,.22) 63%,
      rgba(126,140,23,.06) 100%
    );
  box-shadow:
    0 0 0 9px rgba(126,140,23,.05) inset,
    0 0 0 18px rgba(126,140,23,.025) inset;
}

.qt-slide__bg--social{
  background:
    linear-gradient(110deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 28%, rgba(0,0,0,.06) 100%),
    linear-gradient(135deg, #d8d8d4 0%, #c7c8c0 46%, #d9d9d3 100%);
}

.qt-slide__bg--technical{
  background:
    linear-gradient(110deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 28%, rgba(0,0,0,.05) 100%),
    linear-gradient(135deg, #d6d7d1 0%, #c6c7be 46%, #d8d8d2 100%);
}

.qt-slide__bg--library{
  background:
    linear-gradient(110deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.03) 28%, rgba(0,0,0,.05) 100%),
    linear-gradient(135deg, #d9d9d4 0%, #c9c9c3 46%, #ddddda 100%);
}

.qt-slide__inner{
  position: relative;
  z-index: 2;
  min-height: 368px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 46px;
  padding: 34px 24px 58px;
}

.qt-slide__content{
  max-width: 640px;
}

.qt-slide__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6f681c;
}

.qt-slide__title{
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: .98;
  font-weight: 800;
  color: #f5f5ef;
  max-width: 700px;
  text-wrap: balance;
}

.qt-slide__text{
  margin: 0 0 22px;
  max-width: 660px;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

.qt-slide__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  padding: 15px 26px;
  border-radius: 999px;
  background: #91861f;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.qt-slide__cta:hover,
.qt-slide__cta:focus{
  background: #7d7419;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.qt-slide__statement{
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}

.qt-slide__statement-top{
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
  color: rgba(0,0,0,.82);
  margin-bottom: 4px;
}

.qt-slide__statement-main{
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
  line-height: .94;
  font-weight: 800;
  color: #4f4a06;
  letter-spacing: -.04em;
}

.qt-slide__statement-bottom{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 2px solid rgba(79,74,6,.55);
  font-size: clamp(1.1rem, 2vw, 1.85rem);
  line-height: 1.08;
  color: rgba(0,0,0,.86);
}

.qt-hero__dots{
  position: absolute;
  right: 82px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qt-hero__dot{
  width: 78px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.74);
  transition: background .25s ease, transform .25s ease;
}

.qt-hero__dot.is-active{
  background: #a4f330;
}

.qt-hero__dot:hover{
  transform: scaleX(1.03);
}

.qt-slide::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.26) 0%,
      rgba(0,0,0,.16) 28%,
      rgba(0,0,0,.08) 58%,
      rgba(0,0,0,.02) 100%
    );
}

@media (max-width: 1180px){
  .qt-slide__inner{
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 26px 64px;
  }

  .qt-slide__statement{
    justify-self: start;
    max-width: 100%;
  }

  .qt-hero__dots{
    left: 26px;
    right: auto;
    bottom: 26px;
  }
}

@media (max-width: 760px){
  .qt-hero{
    padding-bottom: 20px;
  }

  .qt-hero__slider{
    min-height: 312px;
    border-radius: 0 0 28px 28px;
  }

  .qt-slide__inner{
    min-height: 312px;
    padding: 24px 20px 58px;
    gap: 16px;
  }

  .qt-slide__bg::before{
    width: 430px;
    height: 140px;
    left: -95px;
    top: 62px;
    transform: rotate(-24deg);
  }

  .qt-slide__bg::after{
    width: 320px;
    height: 110px;
    right: -70px;
    top: 8px;
  }

  .qt-slide__title{
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .qt-slide__text{
    font-size: .98rem;
    line-height: 1.52;
    margin-bottom: 18px;
  }

  .qt-slide__cta{
    min-width: 0;
    padding: 13px 20px;
    font-size: .95rem;
  }

  .qt-slide__statement{
    display: none;
  }

  .qt-hero__dots{
    left: 20px;
    bottom: 18px;
    gap: 6px;
  }

  .qt-hero__dot{
    width: 52px;
    height: 5px;
  }
}

@media (prefers-reduced-motion: reduce){
  .qt-slide,
  .qt-hero__dot,
  .qt-slide__cta{
    transition: none !important;
  }
}
