:root {
  --bg: #0f1115;
  --bg-2: #131722;
  --surface: #181c26;
  --text: #e8ecf3;
  --muted: #b0b7c3;
  --brand: #118ab2;
  --brand-2: #ffd166;
  --accent: #06d6a0;
  --danger: #ef476f;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .25);
  --hero-video-offset: -8px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0c0f14 0%, #0f1115 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin: 0 0 .6rem
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1
}

h2 {
  font-size: clamp(24px, 3vw, 34px)
}

h3 {
  font-size: clamp(18px, 2vw, 22px)
}

p {
  margin: .6rem 0;
  color: var(--muted)
}

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

.container {
  width: min(1160px, 92%);
  margin-inline: auto
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.2rem
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem
}

.section {
  padding: 80px 0
}

.section--alt {
  background: linear-gradient(180deg, #0f1115, #131722)
}

.section__head {
  text-align: center;
  margin-bottom: 2rem
}

.grad {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 17, 21, .7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff
}

.brand__name {
  font-weight: 700;
  letter-spacing: .3px
}

.brand__logo {
  height: 48px;
  width: auto;
  display: block
}

@media (max-width:1060px) {
  .brand__logo {
    height: 42px
  }
}

@media (max-width:560px) {
  .brand__logo {
    height: 34px
  }
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center
}

.nav a {
  color: var(--muted)
}

.nav a:hover {
  color: #fff
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: .2s;
  cursor: pointer
}

.btn--primary {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #06251d;
  border-color: transparent;
  font-weight: 700
}

.btn--ghost {
  background: transparent;
  color: #fff
}

.btn--lg {
  padding: 1.05rem 1.25rem;
  border-radius: 16px
}

.btn--sm {
  padding: .55rem .8rem;
  border-radius: 12px;
  font-size: .9rem
}

/* Hero */
.hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(1200px 600px at 120% -10%, rgba(6, 214, 160, .15), transparent 60%),
    radial-gradient(1000px 500px at -20% 10%, rgba(17, 138, 178, .15), transparent 60%);
}

.hero__copy .lead {
  font-size: 1.05rem
}

.hero__intro {
  margin-top: .5rem
}

.hero__cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1rem
}

.cta__subtext {
  display: block;
  margin-top: .5rem;
  opacity: .8
}

.trust {
  margin-top: 1rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem
}

.badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .6rem
}

.badge {
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .25rem .6rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .85rem
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block
}

/* Cards base */
.card {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06)
}

.card--chart {
  bottom: 6%;
  right: 6%;
  width: 280px;
  height: 180px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, .05) 18px 19px),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, .05) 18px 19px);
}

/* HERO imagem quadrada */
.hero .grid-2 {
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
  gap: 2.2rem;
}

.hero__art {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  margin-left: clamp(-16px, -1.4vw, -28px);
}

.card--hero-img {
  position: relative;
  width: min(500px, 40vw);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .06);
}

.card--hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:1060px) {
  .hero .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero__art {
    margin-left: 0;
    justify-content: center;
  }

  .card--hero-img {
    width: min(62vw, 420px);
  }
}

/* Painel, listas e componentes */
.pains {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted)
}

.panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 1.2rem
}

.ticks {
  margin: 0;
  padding-left: 1rem
}

.ticks li {
  margin: .3rem 0
}

.features .feature {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow)
}

.feature__icon {
  font-size: 28px
}

.callout {
  margin-top: 1.2rem;
  background: linear-gradient(90deg, rgba(6, 214, 160, .1), rgba(17, 138, 178, .1));
  border-left: 3px solid var(--brand);
  padding: 1rem;
  border-radius: 12px
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: .8rem;
  counter-reset: steps
}

.steps li {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 1rem;
  border-radius: 14px;
  list-style: none;
  position: relative
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: -14px;
  top: -14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #06251d;
  font-weight: 800
}

.card-sm {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 1rem
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.titem {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 1rem
}

.metrics .metric {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 1rem;
  text-align: center
}

.metric__num {
  font-weight: 800;
  font-size: 28px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block
}

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

.plans .plan {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.plan--highlight {
  outline: 2px solid var(--brand);
  background: linear-gradient(180deg, rgba(6, 214, 160, .05), transparent)
}

.plan ul {
  margin: 0;
  padding-left: 1rem
}

.faq details {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 1rem;
  margin: .6rem 0
}

.faq summary {
  cursor: pointer;
  font-weight: 600
}

.bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .4rem
}

.whats-fab {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #06251d;
  font-weight: 800;
  padding: .9rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

/* Acessibilidade */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

section {
  scroll-margin-top: 96px
}

/* Responsivo */
@media (max-width:1060px) {
  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-4,
  .timeline {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero {
    padding-top: 96px
  }
}

@media (max-width:560px) {
  .grid-4 {
    grid-template-columns: 1fr
  }

  .nav {
    display: none
  }

  .hero .grid-2 {
    align-items: start
  }
}

/* Mini vídeo (bloco do meio) */
.video-2col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
}

.video-card {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  background: transparent;
  width: min(360px, 92vw);
  aspect-ratio: 9 / 16;
}

.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 10%;
  border-radius: inherit;
  background: rgba(255, 255, 255, .02);
}

.video-sound {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .5rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  line-height: 1;
  backdrop-filter: saturate(120%) blur(2px);
}

.video-sound.is-muted::before {
  content: "🔇 ";
}

.video-sound:not(.is-muted)::before {
  content: "🔊 ";
}

@media (max-width:1060px) {
  .video-2col {
    grid-template-columns: 1fr
  }
}

/* Contato (centralizado) */
.section--contact .contact-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.section--contact .lead {
  color: var(--muted);
  margin-top: -.25rem;
}

.bullets--center {
  width: 100%;
  max-width: 600px;
  margin: .2rem auto 0;
  text-align: left;
}

.badges--mini {
  margin-top: .4rem;
}

.form-embed--center {
  width: 100%;
  max-width: 760px;
}

.form-embed--center iframe {
  width: 100%;
}

.mini-faq {
  width: 100%;
  max-width: 760px;
  margin-top: .4rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: .75rem 1rem;
  text-align: left;
}

.mini-faq summary {
  cursor: pointer;
  font-weight: 600;
}

/* Mini-CTA antes do rodapé */
.contact-cta {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, #0f1115, #0e1116);
  padding: 28px 0;
}

.contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-cta__copy h3 {
  margin: 0 0 .25rem;
}

.contact-cta__copy p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .contact-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Rodapé */
.site-footer {
  padding: 36px 0;
  background: #0e1116;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.footer__brand .brand__logo {
  height: 40px;
  width: auto;
}

.footer__brand small {
  color: var(--muted);
  display: block;
  margin-top: .15rem;
}

.footer__nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.footer__nav a:hover {
  color: #fff;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

.footer__mail:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer__brand,
  .footer__contact {
    justify-content: center;
  }
}

/* === Cor sólida para marca (opcional) === */
:root {
  --brand-solid: #09C1B1;
  --brand: var(--brand-solid);
  --brand-2: var(--brand-solid);
  --accent: var(--brand-solid);
}

.grad,
.metric__num {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: var(--brand-solid) !important;
}

.dot {
  background: var(--brand-solid) !important;
}

.btn--primary {
  background: var(--brand-solid) !important;
  border-color: transparent !important;
  color: #06251d !important;
}

.whats-fab {
  background: var(--brand-solid) !important;
  color: #06251d !important;
}

.callout {
  background: color-mix(in srgb, var(--brand-solid) 18%, transparent) !important;
  border-left-color: var(--brand-solid) !important;
}

.plan--highlight {
  outline-color: var(--brand-solid) !important;
  background: color-mix(in srgb, var(--brand-solid) 8%, transparent) !important;
}

.steps li::before {
  background: var(--brand-solid) !important;
  color: #06251d !important;
}

/* === Novos blocos adicionados === */
.audience-banner {
  background: rgba(255, 255, 255, .03);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.audience-banner h3 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
}

.audience-banner p {
  margin: 0;
  opacity: .9;
  color: var(--muted);
}

.microcases {
  padding: 48px 0;
}

.microcases h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 16px;
  text-align: left;
}

.microcase {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.microcase p {
  margin: 0 0 8px;
}

.microcase cite {
  font-style: normal;
  opacity: .8;
}

.cta-group {
  display: flex;
  gap: 10px;
  margin: 12px 0 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn.btn--ghost {
  border: 1px solid currentColor;
}

.diagnostico-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #0f1115, #131722);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.diagnostico-section h2 {
  text-align: center;
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 8px;
}

.diagnostico-section p {
  text-align: center;
}

.form {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 16px auto 0;
}

.form__field {
  display: grid;
  gap: 6px;
}

.form__field input {
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #10141d;
  color: var(--text);
  outline: none;
}

.form button.btn {
  margin-top: 6px;
  width: 100%;
}

/* Pequenos ajustes */
.section__head+.cta-group {
  margin-top: -6px;
}

/* Classe base para animação */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Estado final quando visível */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito de Hover nos Cards */
.card-sm,
.feature,
.plan {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-sm:hover,
.feature:hover,
.plan:hover {
  transform: translateY(-5px);
  /* Sobe levemente */
  border-color: rgba(255, 255, 255, 0.2);
  /* Borda fica mais clara */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  /* Sombra aumenta */
}

/* Destaque suave no ícone ou título dentro do card */
.card-sm:hover h4,
.feature:hover h3 {
  color: #fff;
  /* Garante branco puro no hover */
}