:root {
  --white: #FFFFFF;
  --blue: #1A2269;
  --blue-light: #0B0C1F;
  --green: #ACFEB0;

  --bg: var(--white);
  --text: var(--blue);
  --text-soft: rgba(26, 34, 105, 0.74);
  --accent: var(--green);

  --font-body: "Nunito Sans", "Avenir Next", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Enquadramento (snap) só no desktop — no celular a rolagem é 100% livre */
@media (min-width: 900px) {
  html {
    scroll-snap-type: y proximity;
  }
}

html, body {
  margin: 0;
  padding: 0;
  /* nada pode estourar a largura da tela (faixa inclinada, folhas, etc.) */
  overflow-x: clip;
}

/* Trava o scroll enquanto a animação de abertura roda */
html.scroll-locked,
html.scroll-locked body {
  overflow: hidden;
}

/* Pontos de "encaixe" — cada seção enquadra pelo topo */
.hero,
.quote-section {
  scroll-snap-align: start;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

/* Hero */
.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  background: var(--white);
}

.hero-stage {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-center {
  text-align: center;
  max-width: min(900px, 80%);
  margin-inline: auto;
}

/* Círculo que emerge da base, ao fundo ficar branco */
.hero-circle-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

/* Área de hover estável — não encolhe, então o cursor nunca "perde" o
   círculo enquanto ele se transforma em navbar. Cobre o dome + a pílula. */
.hero-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(660px, 92vw);
  height: min(42vh, 320px);
  pointer-events: none;
}

.hero-nav.is-ready {
  pointer-events: auto;
  cursor: pointer;
}

.hero-circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(64vh, 720px);
  height: min(64vh, 720px);
  border-radius: 50%;
  border: 3px solid var(--green);
  background: var(--green);
  opacity: 0;
  transform: translate(-50%, 50%) scale(0.04);
  animation:
    hero-circle-grow 1.3s cubic-bezier(0.22, 0.8, 0.32, 1) 0s forwards,
    hero-circle-glow 1.8s ease-in-out 2s infinite;
  transition:
    width 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    height 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    bottom 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    border-radius 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    background 0.5s ease;
}

.hero-circle::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
  transform: scale(0);
  transform-origin: center;
  animation: hero-circle-fill-center 0.7s ease-out 1.3s forwards;
  transition:
    border-radius 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    background 0.5s ease;
}

/* Hover/foco/aberto: o círculo se transforma numa navbar em pílula */
.hero-nav.is-ready:hover .hero-circle,
.hero-nav.is-ready:focus-within .hero-circle,
.hero-nav.is-ready.is-open .hero-circle {
  width: min(600px, 88vw);
  height: 66px;
  bottom: 9.5rem;
  border-radius: 999px;
  background: var(--white);
}

.hero-nav.is-ready:hover .hero-circle::after,
.hero-nav.is-ready:focus-within .hero-circle::after,
.hero-nav.is-ready.is-open .hero-circle::after {
  border-radius: 999px;
  background: transparent;
}

.circle-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9.5rem;
  height: 66px;
  transform: translateY(50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 1.5vw, 1.25rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-nav.is-ready:hover .circle-nav,
.hero-nav.is-ready:focus-within .circle-nav,
.hero-nav.is-ready.is-open .circle-nav {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.28s;
}

.circle-nav a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

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

/* Toque (sem mouse/rastreio do vidro): retorno tátil simples */
@media (hover: none), (pointer: coarse) {
  .circle-nav a:active {
    background: rgba(172, 254, 176, 0.35);
  }
}

/* Bolha em "liquid glass" que segue o cursor dentro do menu (estilo iOS),
   posicionada/dimensionada via JS (nav.js) a cada frame. */
.nav-liquid {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  width: 0;
  height: 42px;
  border-radius: 999px;
  transform: translate(0, -50%);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(3px) saturate(180%);
  -webkit-backdrop-filter: blur(3px) saturate(180%);
  border: 1px solid rgba(172, 254, 176, 0.9);
  /* Sombra quase imperceptível (só pra "assentar" a bolha) + borda luminosa em verde */
  box-shadow:
    0 3px 10px rgba(26, 34, 105, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -6px 10px rgba(26, 34, 105, 0.05),
    0 0 10px 1px rgba(172, 254, 176, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  will-change: transform, width, left;
}

.circle-nav.is-tracking .nav-liquid {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .nav-liquid {
    display: none;
  }
}

@keyframes hero-circle-grow {
  0%   { opacity: 0; transform: translate(-50%, 50%) scale(0.04); }
  20%  { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%, 50%) scale(1); }
}

@keyframes hero-circle-fill-center {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

@keyframes hero-circle-glow {
  0%   { box-shadow: -18px 0 26px 0 rgba(172, 254, 176, 0.75); }
  50%  { box-shadow: 18px 0 26px 0 rgba(172, 254, 176, 0.75); }
  100% { box-shadow: -18px 0 26px 0 rgba(172, 254, 176, 0.75); }
}

@media (max-width: 599px) {
  .hero-circle {
    width: min(50vh, 480px);
    height: min(50vh, 480px);
  }
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: var(--blue);
  /* empilha "Bruberry" e "inove" no mesmo lugar */
  display: grid;
  justify-items: center;
}

/* As duas palavras ocupam a mesma célula (sobrepostas) */
.ht-word,
.ht-word-alt {
  grid-column: 1;
  grid-row: 1;
}

/* "Bruberry" some na fase preta do loop (dá lugar ao "inove") */
.ht-word {
  animation: ht-swap-main 10.4s linear 4s infinite;
}

@keyframes ht-swap-main {
  0%, 46%      { opacity: 1; }
  48.5%, 98%   { opacity: 0; }
  100%         { opacity: 1; }
}

/* "inove" — cada letra digita com glow (mesmo estilo do Bruberry) na fase preta */
.hti-letter {
  display: inline-block;
  opacity: 0;
  color: var(--blue-light);
  animation: hti-loop 10.4s ease-in-out calc(4s + var(--i, 0) * 0.06s) infinite;
}

@keyframes hti-loop {
  0%    { opacity: 0; color: var(--green); text-shadow: none; }
  47%   { opacity: 0; color: var(--green); text-shadow: none; }
  49%   { opacity: 1; color: var(--green); text-shadow: 0 0 10px rgba(172, 254, 176, 0.85), 0 0 22px rgba(172, 254, 176, 0.55); }
  55%   { opacity: 1; color: var(--blue-light); text-shadow: none; }
  97%   { opacity: 1; color: var(--blue-light); text-shadow: none; }
  99%   { opacity: 0; color: var(--blue-light); text-shadow: none; }
  100%  { opacity: 0; color: var(--green); text-shadow: none; }
}

.ht-letter {
  display: inline-block;
  color: #111111;
  animation:
    ht-p1 0.26s ease-out calc(var(--d, 0) * 0.1s) forwards,
    ht-p2 0.5s ease-out calc(0.9s + var(--i, 0) * 0.1s) forwards,
    ht-p3 0.42s ease-out calc(2.6s + var(--i, 0) * 0.085s) forwards,
    ht-loop 10.4s ease-in-out calc(4s + var(--i, 0) * 0.05s) infinite forwards;
}

@keyframes ht-p1 {
  from { color: #111111; }
  to   { color: var(--white); }
}

@keyframes ht-p2 {
  0%   { color: var(--white); text-shadow: none; }
  45%  { color: var(--green); text-shadow: 0 0 10px rgba(172, 254, 176, 0.85), 0 0 22px rgba(172, 254, 176, 0.55); }
  100% { color: var(--green); text-shadow: none; }
}

@keyframes ht-p3 {
  0%   { color: var(--green); text-shadow: none; }
  45%  { color: var(--blue); text-shadow: 0 0 8px rgba(26, 34, 105, 0.45); }
  100% { color: var(--blue); text-shadow: none; }
}

@keyframes ht-loop {
  0%      { color: var(--blue); text-shadow: none; }
  48.08%  { color: var(--blue); text-shadow: none; }
  49.04%  { color: var(--blue-light); text-shadow: 0 0 10px rgba(26, 34, 105, 0.7), 0 0 22px rgba(26, 34, 105, 0.4); }
  50%     { color: var(--blue-light); text-shadow: none; }
  98.08%  { color: var(--blue-light); text-shadow: none; }
  99.04%  { color: var(--blue); text-shadow: 0 0 10px rgba(26, 34, 105, 0.7), 0 0 22px rgba(26, 34, 105, 0.4); }
  100%    { color: var(--blue); text-shadow: none; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 899px) {
  .hero-center {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .ht-letter {
    color: var(--blue) !important;
    text-shadow: none !important;
  }

  .hero-circle {
    opacity: 1 !important;
    transform: translate(-50%, 50%) scale(1) !important;
    box-shadow: none !important;
  }

  .hero-circle::after {
    transform: scale(1) !important;
  }
}

/* ===== Seção da citação (fundo verde) ===== */
.quote-section {
  min-height: 100vh;
  background: var(--green);
  color: var(--blue);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.quote-inner {
  position: relative;
  width: min(1200px, 88%);
  margin-inline: auto;
  padding-block: 8vh;
}

.quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(7rem, 20vw, 20rem);
  line-height: 0.6;
  margin-bottom: clamp(0.5rem, 2vh, 2rem);
}

.quote-text {
  margin: 0;
  font-weight: 700;
  font-size: clamp(2.75rem, 8vw, 7rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

@media (max-width: 599px) {
  .quote-mark {
    font-size: clamp(6rem, 28vw, 10rem);
  }

  .quote-text {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
}

/* ===== Faixa curta com imagem de fundo fixa + overlay escuro ===== */
.cta-band {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
  text-align: center;
  overflow: hidden;
  background-image: url("assets/background-hero1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* fundo não se mexe com o scroll */
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 31, 0.62); /* overlay escuro para destacar o texto */
}

.cta-text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 15ch;
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

@media (max-width: 599px) {
  /* iOS ignora background-attachment: fixed; evita salto/zoom estranho no mobile */
  .cta-band {
    background-attachment: scroll;
  }
}

/* ===== Seção de afirmação (Produtos / Nossas soluções) ===== */
.statement-section {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 11vh, 8rem) 6%;
  scroll-snap-align: start;
}

/* Folhas decorativas nas laterais — reagem à rolagem com um "impulso" (JS) */
.statement-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.statement-leaf {
  position: absolute;
  aspect-ratio: 1 / 1;
  transform-origin: center;
  will-change: transform;
}

.statement-leaf svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Texto sempre acima das folhas */
.statement-top,
.statement-bottom {
  position: relative;
  z-index: 1;
}

/* Telas estreitas: menos folhas e mais discretas (JS também reduz a quantidade) */
@media (max-width: 599px) {
  .statement-leaf { opacity: 0.5; }
}

.statement-big {
  margin: 0;
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.statement-sub {
  margin: 0.4rem 0 0;
  font-weight: 600;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--text-soft);
}

.statement-bottom {
  margin: 0;
  font-weight: 300;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.statement-bottom strong {
  font-weight: 800;
}

/* ===== Seção showcase das soluções (bento de 4 cards, fundo azul) ===== */
.solutions-section {
  min-height: 100vh;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 7vh, 5rem) 6%;
  scroll-snap-align: start;
}

.solutions-grid {
  width: min(1200px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  height: min(80vh, 700px);
}

.sol-card {
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.sol-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Hover: o vídeo esmaece para o verde da marca e a frase é "digitada" por cima */
.sol-caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: clamp(1rem, 2.4vw, 1.9rem);
  background: var(--green);
  color: var(--blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.sol-card:hover .sol-caption,
.sol-card:focus-within .sol-caption {
  opacity: 1;
}

.sol-caption-text {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.5vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  transform: translateY(8px);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sol-card:hover .sol-caption-text,
.sol-card:focus-within .sol-caption-text {
  transform: translateY(0);
}

/* Cursor de digitação (só aparece enquanto o card está em hover) */
.sol-caption-text::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: text-bottom;
  background: currentColor;
  opacity: 0;
}

.sol-card:hover .sol-caption-text::after,
.sol-card:focus-within .sol-caption-text::after {
  opacity: 1;
  animation: sol-caret-blink 1s steps(1) infinite;
}

@keyframes sol-caret-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .sol-caption { transition: none; }
  .sol-caption-text { transform: none; transition: none; }
  .sol-caption-text::after { display: none; }
}

/* 1 — vertical, à esquerda, de cima a baixo */
.sol-card--1 {
  grid-column: 1;
  grid-row: 1 / 3;
  /* fundo claro casando com o fundo do vídeo (sem barras escuras) */
  background: #f6f7fb;
}

/* 2 — quadrado pequeno, centro no topo */
.sol-card--2 {
  grid-column: 2;
  grid-row: 1;
  /* fundo claro casando com o fundo do vídeo (sem barras destoando) */
  background: #f3f4ef;
}

/* 4 — canto superior direito */
.sol-card--4 {
  grid-column: 3;
  grid-row: 1;
  /* fundo claro casando com o fundo do vídeo (sem barras destoando) */
  background: #f3f4ef;
}

/* 3 — horizontal embaixo, do centro até a direita */
.sol-card--3 {
  grid-column: 2 / 4;
  grid-row: 2;
  background: #f6f7fb;
}

@media (max-width: 799px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(150px, auto);
    height: auto;
  }

  .sol-card--1,
  .sol-card--2,
  .sol-card--3,
  .sol-card--4 {
    grid-column: 1;
    grid-row: auto;
  }

  .sol-card--1 {
    min-height: 260px;
  }
}

/* ===== Seção "Por que usar a gente?" (fundo verde) ===== */
.why-section {
  min-height: 100vh;
  background: var(--green);
  color: var(--blue);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 9vh, 7rem) 6%;
  scroll-snap-align: start;
}

.why-inner {
  width: min(820px, 100%);
  margin-inline: auto;
}

.why-title {
  margin: 0 0 1.2rem;
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.why-lead {
  margin: 0 0 2.5rem;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  line-height: 1.4;
  color: rgba(26, 34, 105, 0.85);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.why-list li {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--blue);
}

.why-list strong {
  font-weight: 800;
}

/* ===== Seção de depoimentos (carrossel circular, fundo azul) ===== */
.testi-section {
  min-height: 100vh;
  background: var(--blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vh, 2.5rem);
  padding: clamp(2rem, 6vh, 4rem) 6%;
  text-align: center;
  overflow: hidden;
  scroll-snap-align: start;
}

.testi-title {
  margin: 0;
  max-width: 16ch;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Viewport que corta o círculo ao meio: mostra só os 3 cards do topo */
.testi-viewport {
  --R: clamp(140px, 26vw, 205px);
  --D: calc(var(--R) * 2 + 180px);
  position: relative;
  width: var(--D);
  height: calc(var(--R) + 150px);
  overflow: hidden;
  margin-inline: auto;
}

/* Roda que gira; centro no fundo do viewport (só a metade de cima aparece) */
.testi-wheel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--D);
  height: var(--D);
  margin-left: calc(var(--D) / -2);
  margin-bottom: calc(var(--D) / -2);
  animation: testi-spin 46s linear infinite;
}

.testi-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 188px;
  transform: translate(-50%, -50%) rotate(var(--a)) translateY(calc(-1 * var(--R)));
}

.testi-card {
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: 16px 16px 16px 4px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  /* em pé (base) + contra-rotaciona a roda para continuar em pé girando */
  transform: rotate(calc(var(--a) * -1));
  animation: testi-upright 46s linear infinite;
}

.testi-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.testi-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  flex: none;
}

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testi-msg {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(26, 34, 105, 0.9);
}

@keyframes testi-spin {
  to { transform: rotate(360deg); }
}

@keyframes testi-upright {
  from { transform: rotate(calc(var(--a) * -1)); }
  to   { transform: rotate(calc(var(--a) * -1 - 360deg)); }
}

/* Mobile: sem círculo — vira uma lista simples e legível */
@media (max-width: 799px) {
  .testi-viewport {
    width: 100%;
    max-width: 420px;
    height: auto;
    overflow: visible;
  }

  .testi-wheel {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    animation: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .testi-slot {
    position: static;
    width: 100%;
    transform: none;
  }

  .testi-card {
    animation: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-wheel,
  .testi-card {
    animation: none !important;
  }
}

/* ===== Seção de persuasão (antes do contato, empurra pro CTA) ===== */
.persuasao-section {
  position: relative;
  background: var(--white);
  color: var(--blue);
  padding: clamp(4rem, 12vh, 9rem) 6%;
  text-align: center;
  scroll-snap-align: start;
  overflow: hidden;
}

.persuasao-inner {
  width: min(1080px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.persuasao-pillars,
.persuasao-lead,
.persuasao-title {
  width: 100%;
}

.persuasao-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.persuasao-dot--pulse {
  box-shadow: 0 0 0 0 rgba(172, 254, 176, 0.7);
  animation: persuasao-pulse 2s ease-out infinite;
}

@keyframes persuasao-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(23, 212, 114, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(23, 212, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(23, 212, 114, 0); }
}

.persuasao-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  color: var(--text-soft);
}

.persuasao-title {
  margin: 1rem 0 0;
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  /* respiro entre linhas p/ o realce não invadir a linha de cima ("já está") */
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-inline: auto;
}

/* "aparecendo" com aparência de TEXTO SELECIONADO (seleção do cursor):
   retângulo chapado, sem cantos arredondados, na cor verde da marca. */
.persuasao-title strong {
  font-weight: 800;
  color: var(--blue);
  background: var(--green);
  padding: 0 0.08em; /* só a folga lateral que a seleção do navegador tem */
  border-radius: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.persuasao-lead {
  margin: 1.4rem auto 0;
  max-width: 58ch;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-soft);
}

.persuasao-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.75rem);
  margin-top: clamp(2.5rem, 6vh, 4rem);
}

.persuasao-pillar {
  text-align: left;
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
  border-radius: 18px;
  background: #f6f7fb;
  border: 1px solid rgba(26, 34, 105, 0.08);
}

.persuasao-pillar-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--green);
  color: var(--blue);
  margin-bottom: 0.95rem;
}

.persuasao-pillar-icon svg {
  width: 26px;
  height: 26px;
}

.persuasao-pillar h3 {
  margin: 0 0 0.4rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.persuasao-pillar p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.persuasao-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: clamp(2.25rem, 5vh, 3.25rem) auto 0;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
}

.persuasao-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: clamp(1.5rem, 3.5vh, 2.25rem);
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.2rem);
  box-shadow: 0 12px 30px rgba(26, 34, 105, 0.28);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease;
}

.persuasao-cta svg {
  width: 22px;
  height: 22px;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.persuasao-cta:hover,
.persuasao-cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 36px rgba(172, 254, 176, 0.65), 0 16px 38px rgba(26, 34, 105, 0.32);
  outline: none;
}

.persuasao-cta:hover svg,
.persuasao-cta:focus-visible svg {
  transform: translateX(5px);
}

.persuasao-note {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Entrada suave ao aparecer na viewport (scroll-reveal, com stagger) */
.persuasao-eyebrow,
.persuasao-title,
.persuasao-lead,
.persuasao-pillar,
.persuasao-scarcity,
.persuasao-cta,
.persuasao-note {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.persuasao-section.is-visible .persuasao-eyebrow { transition-delay: 0.02s; }
.persuasao-section.is-visible .persuasao-title { transition-delay: 0.08s; }
.persuasao-section.is-visible .persuasao-lead { transition-delay: 0.16s; }
.persuasao-section.is-visible .persuasao-pillar:nth-child(1) { transition-delay: 0.24s; }
.persuasao-section.is-visible .persuasao-pillar:nth-child(2) { transition-delay: 0.32s; }
.persuasao-section.is-visible .persuasao-pillar:nth-child(3) { transition-delay: 0.40s; }
.persuasao-section.is-visible .persuasao-scarcity { transition-delay: 0.48s; }
.persuasao-section.is-visible .persuasao-cta { transition-delay: 0.54s; }
.persuasao-section.is-visible .persuasao-note { transition-delay: 0.60s; }

.persuasao-section.is-visible .persuasao-eyebrow,
.persuasao-section.is-visible .persuasao-title,
.persuasao-section.is-visible .persuasao-lead,
.persuasao-section.is-visible .persuasao-pillar,
.persuasao-section.is-visible .persuasao-scarcity,
.persuasao-section.is-visible .persuasao-cta,
.persuasao-section.is-visible .persuasao-note {
  opacity: 1;
  transform: none;
}

@media (max-width: 799px) {
  .persuasao-pillars { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .persuasao-dot--pulse { animation: none; }
  .persuasao-eyebrow,
  .persuasao-title,
  .persuasao-lead,
  .persuasao-pillar,
  .persuasao-scarcity,
  .persuasao-cta,
  .persuasao-note {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Seção de contato (verde -> azul, círculo -> input) ===== */
.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vh, 4rem);
  padding: clamp(3rem, 8vh, 6rem) 6%;
  text-align: center;
  background-color: var(--green);
  color: var(--white);
  scroll-snap-align: start;
}

/* Camada azul que entra da esquerda para a direita (troca de cor) */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--blue);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
}

.contact-section.is-active::before {
  clip-path: inset(0 0 0 0);
}

/* Camada que tinge o fundo INTEIRO da seção com uma cor viva ao passar o
   mouse sobre uma das opções (classe .hover-* aplicada via JS). Fica acima do
   azul (::before) e abaixo do conteúdo (título/botões continuam brancos). */
.contact-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background-color: transparent;
  transition: opacity 0.45s ease, background-color 0.45s ease;
}

.contact-section.hover-whats .contact-wash {
  opacity: 1;
  background-color: #17d472; /* verde vivo (WhatsApp) */
}

.contact-section.hover-insta .contact-wash {
  opacity: 1;
  background-color: #f5288f; /* rosa vivo (Instagram) */
}

.contact-section.hover-email .contact-wash {
  opacity: 1;
  background-color: #2ca6ff; /* azul claro vivo */
}

/* Barra de glow que varre junto à frente da cor (mesmo easing da cor) */
.contact-section::after {
  content: "";
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 0;
  z-index: 1;
  width: 40%;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%);
  filter: blur(10px);
  background: linear-gradient(90deg,
    transparent,
    rgba(172, 254, 176, 0.5),
    rgba(255, 255, 255, 0.9),
    rgba(172, 254, 176, 0.5),
    transparent);
}

.contact-section.is-active::after {
  animation: contact-sweep 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

@keyframes contact-sweep {
  0%   { opacity: 0; transform: translateX(-50%); }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(200%); }
}

.contact-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-weight: 800;
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue);
  transition: color 1.4s ease 0.5s;
}

.contact-section.is-active .contact-title {
  color: var(--white);
}

/* Envólucro do CTA: carrega o brilho rotativo (o botão tem overflow:hidden,
   então o halo precisa viver aqui, atrás dele) e o efeito de escala no hover. */
.contact-cta-wrap {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  /* brilho verde que "respira" em volta do input, chamando o clique */
  animation: cta-glow-pulse 2.6s ease-in-out infinite;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s ease;
}

@keyframes cta-glow-pulse {
  0%, 100% { box-shadow: 0 0 16px 0 rgba(172, 254, 176, 0.4); }
  50%      { box-shadow: 0 0 30px 4px rgba(172, 254, 176, 0.75); }
}

/* Hover: o "input" cresce um pouco e o brilho fica forte e fixo */
.contact-cta-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px 6px rgba(172, 254, 176, 0.9);
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .contact-cta-wrap {
    animation: none;
    box-shadow: 0 0 22px rgba(172, 254, 176, 0.5);
    transition: none;
  }
  .contact-cta-wrap:hover { transform: none; }
}

/* Círculo que vira "input" */
.contact-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 96px;
  height: 96px;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(26, 34, 105, 0.18);
  transition:
    width 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.5s,
    height 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.5s,
    box-shadow 1.4s ease 0.5s;
}

.contact-cta:focus-visible {
  outline: 3px solid rgba(172, 254, 176, 0.9);
  outline-offset: 3px;
}

.contact-section.is-active .contact-cta {
  width: min(560px, 90vw);
  height: 64px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.contact-cta-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.95rem;
  /* revela da esquerda para a direita (sem fade) */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease 0.95s;
}

.contact-section.is-active .contact-cta-text {
  clip-path: inset(0 0 0 0);
}

/* Estado final imediato quando há preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  .contact-cta-text {
    clip-path: none !important;
  }
}

/* ===== 3 formas de contato reveladas ao clicar no CTA ===== */
.contact-options {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  /* fechado: escondido e fora da ordem de tabulação */
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.5s;
}

.contact-section.options-open .contact-options {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.contact-opt {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  /* entrada: sobe e aparece (com stagger via nth-child abaixo) */
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-section.options-open .contact-opt {
  opacity: 1;
  transform: translateY(0);
}

.contact-section.options-open .contact-opt:nth-child(1) { transition-delay: 0.06s; }
.contact-section.options-open .contact-opt:nth-child(2) { transition-delay: 0.14s; }
.contact-section.options-open .contact-opt:nth-child(3) { transition-delay: 0.22s; }

/* Botões permanecem brancos; o realce vem do fundo da seção (ver .contact-wash) */
.contact-opt:hover,
.contact-opt:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  outline: none;
}

.contact-opt-icon {
  display: inline-flex;
}

.contact-opt-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .contact-opt {
    transition: box-shadow 0.3s ease;
    transform: none;
  }
}

/* ===== Menu mobile: bolinha fixa à direita ===== */
.fab-nav {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  display: none; /* só existe no celular (ver media query no fim do arquivo) */
}

.fab-nav-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--blue);
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(26, 34, 105, 0.22),
    0 0 14px rgba(172, 254, 176, 0.55);
  /* entra com um "pop" depois da animação de abertura da hero */
  opacity: 0;
  transform: scale(0);
  animation: fab-pop 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) 2.3s forwards;
}

@keyframes fab-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fab-nav-btn:focus-visible {
  outline: 3px solid rgba(26, 34, 105, 0.55);
  outline-offset: 3px;
}

/* Ícone hambúrguer que vira "X" quando o menu abre */
.fab-nav-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 15px;
}

.fab-nav-icon i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}

.fab-nav-icon i:nth-child(1) { top: 0; }
.fab-nav-icon i:nth-child(2) { top: 6px; }
.fab-nav-icon i:nth-child(3) { top: 12px; }

.fab-nav.is-open .fab-nav-icon i:nth-child(1) { top: 6px; transform: rotate(45deg); }
.fab-nav.is-open .fab-nav-icon i:nth-child(2) { opacity: 0; }
.fab-nav.is-open .fab-nav-icon i:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Painel com os links, ancorado abaixo da bolinha */
.fab-nav-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 190px;
  padding: 0.5rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow:
    0 16px 40px rgba(26, 34, 105, 0.25),
    0 0 0 1px rgba(26, 34, 105, 0.06);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 0.25s;
}

.fab-nav.is-open .fab-nav-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.fab-nav-menu a {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.fab-nav-menu a:active {
  background: rgba(172, 254, 176, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .fab-nav-btn {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Rodapé (com fade suave a partir da seção anterior) ===== */
.site-footer {
  /* fade: começa no azul da seção acima e desce até o quase-preto */
  background: linear-gradient(to bottom, var(--blue) 0, var(--blue-light) 170px);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(3.5rem, 9vh, 6rem) 6% 2.5rem;
  text-align: center;
}

.footer-inner {
  width: min(1000px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--green);
}

.footer-copy {
  margin: 0.5rem 0 0;
  padding-top: 1.5rem;
  width: 100%;
  max-width: 620px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =====================================================================
   MOBILE — versão otimizada para celular: rolagem livre (sem snap),
   seções com altura do próprio conteúdo e tudo cabendo na largura da tela.
   ===================================================================== */
@media (max-width: 899px) {
  /* Seções de conteúdo crescem com o que têm dentro, sem esticar até 100vh */
  .quote-section,
  .statement-section,
  .solutions-section,
  .why-section,
  .testi-section {
    min-height: 0;
  }

  /* Hero e contato usam a altura visível real do celular (svh evita o
     "pulo" da barra de endereço do navegador) */
  .hero,
  .hero-stage,
  .contact-section {
    min-height: 100vh;
    min-height: 100svh;
  }

  /* Menu no celular fica na bolinha fixa à direita; o domo é só decorativo */
  .fab-nav {
    display: block;
  }

  .circle-nav {
    display: none;
  }

  .hero-nav.is-ready {
    pointer-events: none;
    cursor: default;
  }

  /* Citação: bloco compacto, sem sobra vertical */
  .quote-inner {
    padding-block: 5rem;
  }

  /* Faixa com foto: mais baixa e sem fundo fixo (iOS não suporta fixed) */
  .cta-band {
    min-height: 44vh;
    background-attachment: scroll;
  }

  /* "Produtos não são soluções": bloco corrido, sem espaço morto no meio */
  .statement-section {
    justify-content: flex-start;
    gap: 2.75rem;
    padding: 4.5rem 7% 4rem;
  }

  .solutions-section {
    padding: 3rem 5% 3.5rem;
  }

  .why-section {
    padding: 4.5rem 8%;
  }

  .testi-section {
    padding: 3.5rem 6% 4.5rem;
  }

  .persuasao-section {
    padding: 4rem 6%;
  }

  /* CTA de persuasão: o texto pode quebrar em duas linhas, nada vaza */
  .persuasao-cta {
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-align: center;
  }

  .persuasao-cta span {
    white-space: normal;
  }

  .persuasao-cta svg {
    flex: none;
  }

  .contact-section {
    gap: 2.25rem;
  }
}
