:root{

    
  /* PREENCHA com as cores EXATAS do site atual (template regularização) */
  --bg: #ffffff;
  --text: #1f1f1f;
  --muted: #6b6b6b;

  --brand-1: #5b2c55;     /* roxo do site (exemplo) -> substitua pelo exato */
  --brand-2: #c7a35b;     /* dourado do site (exemplo) -> substitua pelo exato */
  --btn-bg: var(--brand-2);
  --btn-text: #ffffff;

  --card-bg: #ffffff;
  --card-border: rgba(0,0,0,.08);

  --radius: 16px;
  --shadow: 0 12px 30px rgba(0,0,0,.10);

  --maxw: 1100px; /* especificação */
}
*{ box-sizing:border-box; 
    font-family: "Montserrat";
}


html{ scroll-behavior:smooth; 
      margin: 0;
        padding: 0;
        width: 100%;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
}
body{
    overflow-x: hidden;
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family: "Montserrat" ,Arial, Helvetica, sans-serif; /* replique a font do site */
}
a{ color:inherit; text-decoration:none; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px; /* especificação 24–32 */
}

.section{
  padding: 56px 0; /* especificação */
}

h1,h2,h3{ margin:0 0 12px; }
p{ margin:0 0 12px; }

.lead{ color:var(--muted); max-width: 75ch; }
.center{ display:flex; justify-content:center; margin-top:18px; }

.card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.reveal--visible{
  opacity: 1;
  transform: translateY(0);
}
/* ===== Scrollbar (Chrome/Edge/Safari) ===== */
html::-webkit-scrollbar {
  width: 10px;              /* vertical */
  height: 10px;             /* horizontal */
}

html::-webkit-scrollbar-track {
  background: transparent;       /* cinza do trilho */
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb {
  background: #4c0159;       /* verde */
  border-radius: 999px;
  border: 2px solid #d9d9d9; /* “borda” pra ficar bonito */
}

html::-webkit-scrollbar-thumb:hover {
  background: #f4f0f4;       /* verde mais escuro no hover */
}

/* ===== Firefox (fallback) ===== */
html {
  scrollbar-width: thin;
  scrollbar-color: #c7a35b #d9d9d9; /* thumb track */
}
html, body { overflow-x: hidden; }
/* =========================
   PRELOADER (Premium)
   ========================= */

.preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;     /* <- chave: viewport dinâmico (mobile) */
  min-height: 100vh;  /* fallback */
  z-index: 20000;

  display: flex;                /* mais “estável” que grid no mobile */
  align-items: center;
  justify-content: center;

  padding: 24px;
  overflow: hidden;

  opacity: 1;
  pointer-events: auto;
  transition: opacity .45s ease, visibility .45s ease;
  visibility: visible;
}
.section-divider{
  height: 1px;
  width: min(1100px, 92%);
  margin: 56px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(91,44,85,.18),
    transparent
  );
}
.card{
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 12px 28px rgba(0,0,0,.06),
    0 2px 6px rgba(0,0,0,.04);
}
.section h2{
  position: relative;
  padding-left: 14px;
}

.section h2::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.35em;
  width: 4px;
  height: 1.2em;
  border-radius: 2px;
  background: var(--brand-2);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 300px at 15% 20%, rgba(199,163,91,.18), transparent 60%),
    radial-gradient(800px 400px at 80% 80%, rgba(91,44,85,.22), transparent 60%);
  pointer-events:none;
}
/* ===== Fundos alternados para quebrar o branco ===== */
.section.alt-soft{
  background: linear-gradient(
    180deg,
    rgba(91,44,85,.04),
    rgba(91,44,85,.02)
  );
}
.section{
  position: relative;
}

.section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: .8;
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(199,163,91,.10), transparent 60%),
    radial-gradient(1000px 500px at 90% 80%, rgba(91,44,85,.10), transparent 60%);
}
.section > .container{ position: relative; z-index: 1; }

.section.alt-warm{
  background: linear-gradient(
    180deg,
    rgba(199,163,91,.08),
    rgba(199,163,91,.03)
  );
}

/* fundo com blur + gradiente */
.preloader__bg{
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(1000px 520px at 20% 20%, rgba(94, 42, 76, .20), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(200, 165, 80, .18), transparent 55%),
    radial-gradient(900px 520px at 50% 90%, rgba(94, 42, 76, .14), transparent 60%),
    #fff;
  filter: blur(10px);
  transform: scale(1.08);
}
.scrollbar-top{
  position: fixed;
  left: 0; top: 0;
  height: 3px;
  width: 0%;
  z-index: 100000;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-1));
}

.preloader__card{
  position: relative;
  width: min(520px, 92vw);
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  padding: 26px 22px;
  transform: translateY(0);
  animation: preIn .55s ease both;
}

@keyframes preIn{
  from{ opacity: 0; transform: translateY(14px) scale(.98); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

/* Logo com micro “breathing” */
.preloader__logoWrap{
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 14px 10px 6px;
  overflow: hidden;
}

.preloader__logo{
  max-width: 340px;
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center;
  animation: logoBreath 2.4s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.10));
}

@keyframes logoBreath{
  0%, 100% { transform: scale(1); opacity: .95; }
  50%      { transform: scale(1.015); opacity: 1; }
}

/* brilho passando por cima */
.preloader__shine{
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-18deg);
  animation: shineMove 1.8s ease-in-out infinite;
  pointer-events: none;
  opacity: .7;
}

@keyframes shineMove{
  0%   { left: -40%; opacity: .0; }
  15%  { opacity: .55; }
  50%  { opacity: .85; }
  100% { left: 120%; opacity: .0; }
}

.preloader__meta{
  margin-top: 10px;
  display: grid;
  gap: 6px;
  place-items: center;
}

.preloader__text{
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,.62);
}

/* dots */
.preloader__dots{
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.preloader__dots span{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(94, 42, 76, .65);
  animation: dotPulse 1.1s ease-in-out infinite;
}

.preloader__dots span:nth-child(2){ animation-delay: .12s; opacity: .85; }
.preloader__dots span:nth-child(3){ animation-delay: .24s; opacity: .7; }

@keyframes dotPulse{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* barra */
.preloader__bar{
  margin-top: 14px;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
}

.preloader__fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 42, 76, .85), rgba(200, 165, 80, .95));
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  transition: width .18s ease;
}

/* estado de saída */
.preloader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* trava scroll enquanto carrega */
html.is-loading, body.is-loading{
  overflow: hidden !important;
}
/* ===== LOADING OVERLAY (centralizado de verdade) ===== */
body.is-loading{
  overflow: hidden;
  /* seu layout tem padding-top para header fixo — isso empurra o loading.
     enquanto estiver carregando, zera. */
  padding-top: 0 !important;
}

#page-loader{
  position: fixed;
  inset: 0;                 /* ocupa a tela toda */
  z-index: 999999;          /* acima de tudo */
  display: grid;
  place-items: center;      /* centro perfeito */
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

#page-loader .loader-card{
  width: min(420px, 92vw);
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  padding: 18px 18px 16px;
  text-align: center;
}

#page-loader .loader-logo{
  width: min(260px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

#page-loader .loader-text{
  margin: 0 0 10px;
  color: rgba(0,0,0,.55);
  font-size: .92rem;
}

#page-loader .loader-bar{
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  overflow: hidden;
}

#page-loader .loader-bar > span{
  display: block;
  height: 100%;
  width: 35%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201,165,91,.95), rgba(108,53,98,.95));
  animation: loaderMove 1.8s ease-in-out infinite;
}

@keyframes loaderMove{
  0%   { transform: translateX(-120%); }
  50%  { transform: translateX(120%); }
  100% { transform: translateX(360%); }
}

/* some suavemente quando terminar */
#page-loader.is-hidden{
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
/* =========================
   BOT (2026) — Assistente
   ========================= */
.bot{
  padding: 22px;
}

.bot-top{
  display:flex;
  gap: 14px;
  align-items:center;
  margin-bottom: 14px;
}

.bot-title{
  margin: 0 0 4px;
}

.bot-sub{
  margin: 0;
}

.bot-orb{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(199,163,91,.9), rgba(91,44,85,.85) 55%, rgba(0,0,0,.08));
  box-shadow:
    0 18px 40px rgba(0,0,0,.10),
    inset 0 0 0 1px rgba(255,255,255,.22);
  position: relative;
  overflow: hidden;
}

.bot-orb::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: conic-gradient(from 90deg,
    rgba(255,255,255,.0),
    rgba(255,255,255,.26),
    rgba(255,255,255,.0)
  );
  animation: orbSpin 3.2s linear infinite;
}

@keyframes orbSpin{
  to{ transform: rotate(360deg); }
}

.bot-chat{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}

.bot-msg{
  max-width: 78ch;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
}

.bot-msg.is-bot{
  border-left: 4px solid var(--brand-2);
}

.bot-msg.is-user{
  margin-left: auto;
  border-right: 4px solid var(--brand-1);
}

.bot-options{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bot-opt{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  cursor:pointer;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.bot-opt:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

.bot-opt.is-selected{
  border-color: rgba(91,44,85,.45);
  box-shadow: 0 12px 24px rgba(91,44,85,.10);
}

.bot-actions{
  margin-top: 16px;
  display:grid;
  gap: 8px;
}

.bot-send:disabled{
  opacity: .55;
  cursor:not-allowed;
}

.bot-mini{
  color: var(--muted);
}
.bot-chat{
  max-height: 360px;
  overflow: auto;
  padding-right: 6px;
}
.bot-chat::-webkit-scrollbar{ width: 10px; }
.bot-chat::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.10);
  border-radius: 999px;
}
/* =========================
   BOT 2026 — Visual Tech HUD
   ========================= */
:root{
  --bot-glow: rgba(199,163,91,.35);
  --bot-neo: rgba(91,44,85,.35);
  --bot-line: rgba(255,255,255,.16);
  --bot-ink: rgba(10,10,14,.92);
}

.card.bot{
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(199,163,91,.10), transparent 60%),
    radial-gradient(900px 420px at 90% 85%, rgba(91,44,85,.12), transparent 60%),
    rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow:
    0 22px 60px rgba(0,0,0,.10),
    0 2px 10px rgba(0,0,0,.06);
  backdrop-filter: blur(14px);
}

/* HUD overlays */
.bot-hud{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}

.bot-hud__grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  mask-image: radial-gradient(500px 220px at 12% 18%, #000 30%, transparent 70%);
}

.bot-hud__scan{
  position:absolute; inset:-40% 0;
  background: linear-gradient(180deg,
    transparent,
    rgba(199,163,91,.10),
    rgba(91,44,85,.12),
    transparent
  );
  transform: translateY(-30%);
  animation: botScan 4.6s linear infinite;
  opacity: .55;
}

@keyframes botScan{
  0%{ transform: translateY(-25%); }
  100%{ transform: translateY(40%); }
}

.bot-hud__noise{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity: .10;
  mix-blend-mode: multiply;
}

/* Top */
.bot-top{ position: relative; z-index: 1; }

.bot-orb{
  width: 56px; height: 56px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), transparent 45%),
    radial-gradient(circle at 55% 55%, rgba(199,163,91,.95), rgba(91,44,85,.92) 55%, rgba(0,0,0,.08));
  box-shadow:
    0 18px 40px rgba(0,0,0,.12),
    0 0 0 1px rgba(255,255,255,.18) inset,
    0 0 18px var(--bot-glow);
  position: relative;
  overflow: hidden;
}

.bot-orb::before{
  content:"";
  position:absolute; inset:-30%;
  background: conic-gradient(from 180deg,
    rgba(255,255,255,.0),
    rgba(255,255,255,.35),
    rgba(255,255,255,.0)
  );
  animation: orbSpin 2.8s linear infinite;
  opacity: .75;
}
.bot-orb::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
@keyframes orbSpin{ to{ transform: rotate(360deg); } }

/* Meta row */
.bot-meta{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(10px);
}

.bot-badge{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .6px;
  color: rgba(91,44,85,.92);
  border: 1px solid rgba(91,44,85,.18);
  background: rgba(91,44,85,.06);
}

.bot-status{
  margin-left: 10px;
  color: rgba(0,0,0,.58);
  font-weight: 600;
  font-size: .88rem;
}

.bot-meta__right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.bot-step{
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: rgba(0,0,0,.62);
}

.bot-progress{
  width: 160px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.bot-progress > span{
  display:block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199,163,91,.95), rgba(91,44,85,.95));
  box-shadow: 0 0 18px rgba(199,163,91,.22);
  transition: width .35s ease;
}

/* Chat area (mais tech) */
.bot-chat{
  position: relative;
  z-index: 1;
  max-height: 380px;
  overflow: auto;
  padding-right: 6px;
}

.bot-msg{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}

.bot-msg.is-bot{
  border-left: 4px solid var(--brand-2);
}

.bot-msg.is-user{
  background: rgba(91,44,85,.06);
  border-right: 4px solid var(--brand-1);
}

/* Options chips more “dev pro” */
.bot-opt{
  position: relative;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
}

.bot-opt:hover{
  border-color: rgba(91,44,85,.28);
  box-shadow:
    0 16px 34px rgba(0,0,0,.10),
    0 0 0 3px rgba(199,163,91,.10);
}

.bot-opt.is-selected{
  border-color: rgba(199,163,91,.55);
  box-shadow:
    0 18px 42px rgba(0,0,0,.12),
    0 0 18px rgba(199,163,91,.14);
}

/* Typing indicator */
.bot-typing{
  display:inline-flex;
  gap: 6px;
  align-items:center;
}
.bot-typing span{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  animation: botDot 1.05s ease-in-out infinite;
}
.bot-typing span:nth-child(2){ animation-delay: .12s; opacity:.85; }
.bot-typing span:nth-child(3){ animation-delay: .24s; opacity:.7; }
@keyframes botDot{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-5px); }
}

/* Scrollbar in chat */
.bot-chat::-webkit-scrollbar{ width: 10px; }
.bot-chat::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.12);
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.6);
}
/* =========================
   BOT 2026 — Mobile Fix
   ========================= */
@media (max-width: 520px){

  /* card com menos padding pra não apertar tudo */
  .card.bot{
    padding: 18px !important;
  }

  /* topo: orb + textos alinhados sem esmagar */
  .bot-top{
    align-items: flex-start;
    gap: 12px;
  }

  /* HUD/meta: vira coluna e ocupa 100% */
  .bot-meta{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 10px;
  }

  .bot-meta__left{
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }

  .bot-status{
    margin-left: 0 !important;
    font-size: .85rem;
    line-height: 1.2;
    /* evita estourar */
    word-break: break-word;
  }

  .bot-meta__right{
    width: 100%;
    justify-content: space-between;
  }

  .bot-progress{
    width: 100% !important;
    flex: 1;
  }

  /* chat: altura mais confortável no celular */
  .bot-chat{
    max-height: min(52vh, 420px);
    padding-right: 0;
  }

  /* balões: evita estourar e melhora leitura */
  .bot-msg{
    max-width: 100% !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }

  /* user bubble não colar na borda e não ficar gigante */
  .bot-msg.is-user{
    margin-left: auto;
    max-width: 86% !important;
  }

  /* opções: quebrar em linhas e ficar “tocável” */
  .bot-options{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .bot-opt{
    flex: 0 0 auto;
    max-width: 100%;
    white-space: normal;      /* deixa quebrar linha */
    line-height: 1.15;
    padding: 10px 12px;
    font-size: .92rem;
  }


}
.microbullets--icons{
  display:flex;
  flex-wrap:wrap;
  gap: 12px 18px;
  margin: 14px 0 18px;
  color:#fff;
  font-weight: 600;
}

.microbullets--icons .mbi{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  opacity:.95;
}

.microbullets--icons svg{
  width: 18px;
  height: 18px;
  opacity:.85;
}
.pain-title{
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  max-width: 850px;
}

.pain-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-top: 28px;
}

.pain-card{
  padding: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pain-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
/* =========================
   STEPS — Lista institucional (override)
   ========================= */
.step-points{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;

  display: grid;
  gap: 10px;

  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

.step-points li{
  position: relative;
  padding-left: 18px;       /* espaço pro marcador */
  margin: 0;
}

/* marcador: “dot” premium (não quebra em nenhuma linha) */
.step-points li::before{
  content:"";
  position:absolute;
  left: 0;
  top: .55em;               /* alinhamento natural com texto */
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-2);
  box-shadow:
    0 0 0 2px rgba(199,163,91,.18),
    0 0 0 1px rgba(0,0,0,.04);
  transform: translateY(-50%);
  opacity: .95;
}

/* separador sutil pra dar cara de “metodologia” */
.step-points li + li{
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* no hero escuro / fundo escuro, mantém legibilidade */
.steps .card.step .step-points{
  color: rgba(0,0,0,.68);
}


@media (max-width: 820px){
  .pain-grid{
    grid-template-columns: 1fr;
  }
}


/* ─── Componentes das seções de conteúdo ─── */
    .benefits-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 28px;
      padding: 0;
      list-style: none;
    }
    .benefits-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .benefits-list li::before {
      content: "";
      flex-shrink: 0;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--brand-2);
      margin-top: .45em;
    }
    @media (max-width: 600px) {
      .benefits-list { grid-template-columns: 1fr; }
    }

    .audience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 28px;
    }
    .audience-card { padding: 22px; }
    .audience-card h3 {
      margin-bottom: 14px;
      color: var(--brand-1);
      font-size: 1rem;
    }
    .audience-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }
    .audience-card ul li {
      font-size: .9rem;
      color: var(--muted);
      padding-left: 18px;
      position: relative;
      line-height: 1.5;
    }
    .audience-card ul li::before {
      content: "";
      position: absolute;
      left: 0; top: .55em;
      width: 7px; height: 7px;
      border-radius: 999px;
      background: var(--brand-2);
    }
    @media (max-width: 820px) {
      .audience-grid { grid-template-columns: 1fr; }
    }

    .faq-list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }
    .faq-item { padding: 20px 22px; border-left: 3px solid var(--brand-2); }
    .faq-item h3 {
      font-size: .97rem;
      font-weight: 700;
      color: var(--brand-1);
      margin-bottom: 8px;
    }
    .faq-item p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.6; }

    .demand-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 24px;
      padding: 0;
      list-style: none;
    }
    .demand-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .demand-list li::before {
      content: "";
      flex-shrink: 0;
      width: 7px; height: 7px;
      border-radius: 999px;
      background: var(--brand-1);
      opacity: .5;
      margin-top: .5em;
    }
    @media (max-width: 600px) {
      .demand-list { grid-template-columns: 1fr; }
    }

    .diff-list {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 12px;
    }
    .diff-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .diff-list li::before {
      content: "✓";
      font-weight: 800;
      color: var(--brand-2);
      flex-shrink: 0;
      margin-top: 1px;
    }

/* ─────────────────────────────────────────────
   SPLIT SECTION — Demandas + Benefícios (lado a lado)
   ───────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  align-items: start;
}

.split-col {
  padding: 12px 0;
}

.split-divider {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(91,44,85,.18) 20%,
    rgba(199,163,91,.22) 50%,
    rgba(91,44,85,.18) 80%,
    transparent
  );
  align-self: stretch;
  min-height: 300px;
}

.split-title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.35;
  padding-left: 14px;
  position: relative;
}
.split-title::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 4px; height: 1.2em;
  border-radius: 2px;
  background: var(--brand-2);
}

/* lista de demandas numa coluna só */
.demand-list--single {
  grid-template-columns: 1fr !important;
}

/* Coluna direita — benefícios com números */
.benefit-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-2);
  border: 1px solid rgba(199,163,91,.35);
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: 14px;
}

.benefit-cards {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.benefit-cards li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  font-size: .9rem;
  color: var(--text);
  line-height: 1.4;
  transition: box-shadow .18s, transform .18s;
}
.benefit-cards li:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,.07);
  transform: translateX(3px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-1), rgba(91,44,85,.7));
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em;
}

@media (max-width: 860px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-divider {
    display: none;
  }
}


/* ─────────────────────────────────────────────
   DA SECTION — Diferenciais + Para quem (bloco único)
   ───────────────────────────────────────────── */
.diff-audience-section {
  background: linear-gradient(
    160deg,
    rgba(91,44,85,.06) 0%,
    rgba(199,163,91,.05) 50%,
    rgba(91,44,85,.04) 100%
  );
  position: relative;
}

.da-header {
  text-align: center;
  margin-bottom: 40px;
}
.da-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 10px;
}
.da-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.35;
}

/* Grid: 1 coluna larga à esquerda + 2 cards à direita */
.da-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.da-card {
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

/* Card diferenciais — roxo escuro */
.da-card--diff {
  background: var(--brand-1);
  color: #fff;
  grid-row: 1;
}

/* Cards de público — branco com borda */
.da-card--audience {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.da-card--primary {
  border-top: 3px solid var(--brand-2);
}
.da-card--secondary {
  border-top: 3px solid var(--brand-1);
}

.da-card__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.da-card--diff .da-card__label {
  color: rgba(199,163,91,.9);
}
.da-card--primary .da-card__label {
  color: var(--brand-2);
}
.da-card--secondary .da-card__label {
  color: var(--brand-1);
}

.da-card__intro {
  font-size: .9rem;
  opacity: .78;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lista de diferenciais */
.da-diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.da-diff-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
}
.da-diff-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-2);
}

/* Lista de público */
.da-audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}
.da-audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.5;
}
.da-audience-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: .55em;
}
.da-card--primary .da-audience-list li::before {
  background: var(--brand-2);
}
.da-card--secondary .da-audience-list li::before {
  background: var(--brand-1);
  opacity: .55;
}

/* CTA dentro dos cards */
.da-cta {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .18s, color .18s, box-shadow .18s;
  margin-top: auto;
}
.da-card--primary .da-cta {
  background: var(--brand-2);
  color: #fff;
}
.da-card--primary .da-cta:hover {
  background: rgba(199,163,91,.85);
  box-shadow: 0 6px 18px rgba(199,163,91,.3);
}
.da-card--secondary .da-cta {
  border: 1px solid var(--brand-1);
  color: var(--brand-1);
}
.da-card--secondary .da-cta:hover {
  background: var(--brand-1);
  color: #fff;
}

@media (max-width: 960px) {
  .da-grid {
    grid-template-columns: 1fr 1fr;
  }
  .da-card--diff {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .da-grid {
    grid-template-columns: 1fr;
  }
  .da-card--diff {
    grid-column: auto;
  }
}


/* ═══════════════════════════════════════
   1. BARRA DE PROGRESSO DE SCROLL
   ═══════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  z-index: 99999;
  transition: width .1s linear;
  pointer-events: none;
}


/* ═══════════════════════════════════════
   2. BOTÃO FLUTUANTE WHATSAPP
   ═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.40), 0 2px 8px rgba(0,0,0,.15);
  z-index: 9000;
  transition: transform .22s ease, box-shadow .22s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.50), 0 4px 12px rgba(0,0,0,.18);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.40), 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,.40), 0 0 0 10px rgba(37,211,102,.0); }
}

@media (max-width: 768px) {
  .wa-float { bottom: 88px; }
}


/* ═══════════════════════════════════════
   3. BARRA CTA MOBILE
   ═══════════════════════════════════════ */
.wa-bottom {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,.08);
  z-index: 8000;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.wa-bottom.is-visible { transform: translateY(0); }
.wa-bottom__btn {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .wa-bottom { display: block; }
  body { padding-bottom: 72px; }
}


/* ═══════════════════════════════════════
   4. TYPING ANIMATION — hero subtitle
   ═══════════════════════════════════════ */
.typing-wrap {
  display: inline;
}
.typing-text {
  border-right: 2px solid rgba(255,255,255,.7);
  padding-right: 3px;
  animation: typingCursor .8s step-end infinite;
}

@keyframes typingCursor {
  0%, 100% { border-color: rgba(255,255,255,.7); }
  50%       { border-color: transparent; }
}


/* ═══════════════════════════════════════
   5. FEEDBACK VISUAL — formulário
   ═══════════════════════════════════════ */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap input {
  width: 100%;
  padding-right: 36px;
}
.input-check {
  position: absolute;
  right: 10px;
  width: 18px; height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s, background .2s;
  pointer-events: none;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.input-wrap.is-valid .input-check {
  opacity: 1;
  background: #2E7D32;
}
.input-wrap.is-valid .input-check::after { content: "✓"; }
.input-wrap.is-error input {
  border-color: #C62828 !important;
  animation: fieldShake .35s ease;
}
.field-error {
  display: block;
  font-size: .75rem;
  color: #C62828;
  margin-top: 4px;
  height: 0;
  overflow: hidden;
  transition: height .2s;
}
.input-wrap.is-error + .field-error { height: 18px; }

@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-6px); }
  75%       { transform: translateX(6px); }
}


/* ═══════════════════════════════════════
   6. CONTADORES — seção sobre
   ═══════════════════════════════════════ */
.authority-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-2);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════
   7. DEPOIMENTOS
   ═══════════════════════════════════════ */
.testimonials {
  background: var(--brand-1);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 10% 20%, rgba(199,163,91,.15), transparent 60%),
    radial-gradient(800px 400px at 90% 80%, rgba(0,0,0,.15), transparent 60%);
  pointer-events: none;
}
.testimonials .section-head { position: relative; z-index: 1; }
.testimonials .section-head h2 { color: #fff; padding-left: 14px; }
.testimonials .section-head h2::before { background: var(--brand-2); }
.testimonials .lead { color: rgba(255,255,255,.65); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: .8;
  color: var(--brand-2);
  opacity: .8;
  font-weight: 700;
}

.testimonial-text {
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--brand-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: .9rem;
  color: #fff;
  font-weight: 700;
}
.testimonial-author span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   8. CURSOR PERSONALIZADO (desktop only)
   ═══════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  html { cursor: none; }
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 999px;
    background: var(--brand-2);
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform .08s ease, opacity .2s;
    will-change: transform;
  }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border-radius: 999px;
    border: 1.5px solid rgba(91,44,85,.45);
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, border-color .2s, transform .12s ease;
    will-change: transform;
  }
  a:hover ~ .cursor-ring,
  button:hover ~ .cursor-ring {
    width: 44px; height: 44px;
    border-color: var(--brand-2);
  }
}


/* ═══════════════════════════════════════
   9. REVEAL COM DIREÇÃO
   ═══════════════════════════════════════ */
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-left.reveal--visible,
.reveal-right.reveal--visible,
.reveal-scale.reveal--visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════
   MOBILE — Authority + Testimonials
   ═══════════════════════════════════════ */

@media (max-width: 860px) {

  /* ── Authority: foto full-width arredondada + stats em strip ── */
  .authority-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* foto: destaque no topo, quadrada e contida */
  .authority-photo {
    order: -1 !important;
    max-width: 100% !important;
    margin: 0 0 0 0 !important;
    position: relative;
  }
  .authority-photo img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
    border: none;
    display: block;
  }

  /* strip de stats — faixa horizontal logo abaixo da foto */
  .authority-stats {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin: 0 0 24px !important;
    background: var(--brand-1);
    border-radius: 0 0 14px 14px;
    padding: 14px 0 12px;
    justify-content: space-around;
  }

  .stat-item {
    align-items: center !important;
    flex: 1;
    border-right: 1px solid rgba(255,255,255,.15);
    padding: 0 12px;
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-size: 1.75rem !important;
    color: var(--brand-2) !important;
  }
  .stat-suffix {
    font-size: 1.1rem !important;
    color: var(--brand-2) !important;
  }
  .stat-label {
    font-size: .6rem !important;
    color: rgba(255,255,255,.6) !important;
    text-align: center;
    line-height: 1.3;
    margin-top: 2px !important;
  }

  /* texto e h2 da advogada */
  .authority-grid > .reveal-left,
  .authority-grid > div:not(.authority-photo) {
    padding: 0;
  }


  /* ── Testimonials: carrossel de swipe ── */
  .testimonials-grid {
    grid-template-columns: unset !important;
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 18px;
    scrollbar-width: none;
    touch-action: pan-x;
    /* respiro nas pontas */
    scroll-padding-left: 4px;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }

  .testimonial-card {
    flex: 0 0 88vw;
    scroll-snap-align: center;
    /* altura automática — sem esticar */
    min-height: 0;
  }

  /* indicador de swipe abaixo dos cards */
  .testimonials-grid::after {
    content: "← deslize para ver mais →";
    display: none; /* escondido — os dots cuidam disso */
  }

  /* dots de paginação (gerados via JS no enhancements) */
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }
  .testimonial-dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.25);
    transition: background .2s, width .2s;
  }
  .testimonial-dots span.active {
    background: var(--brand-2);
    width: 18px;
  }
}

/* em telas bem pequenas, card quase full */
@media (max-width: 400px) {
  .testimonial-card { flex: 0 0 92vw; }
}
/* SECTION APÓS HERO — igual ao Figma */
.section-problema,
.risk-section,
#problema,
#respaldo {
  padding: 54px 0 56px;
  background: #fbf9f7;
}

.section-problema .container,
.risk-section .container,
#problema .container,
#respaldo .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-problema .content,
.risk-section .content,
#problema .content,
#respaldo .content {
  max-width: 820px;
  margin-left: 0;
}

.section-problema h2,
.risk-section h2,
#problema h2,
#respaldo h2 {
  max-width: 760px;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}

.section-problema p,
.risk-section p,
#problema p,
#respaldo p {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.section-problema .benefits,
.risk-section .benefits,
#problema .benefits,
#respaldo .benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 80px;
  max-width: 900px;
  margin-top: 22px;
}

.section-problema .btn,
.risk-section .btn,
#problema .btn,
#respaldo .btn {
  margin-top: 32px;
}

