/* ==========================================================================
   Fast Web Designer — estilos compartilhados
   Marca: monocromática (preto/branco). Acento verde SOMENTE em CTA.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Superfícies */
  --bg: #0a0a0a;
  --bg-elev: #121212;
  --bg-card: #161616;
  --bg-inset: #1e1e1e;

  /* Texto */
  --fg: #fafafa;
  --fg-muted: #a3a3a3;
  --fg-subtle: #737373;

  /* Traços */
  --border: #262626;
  --border-strong: #383838;

  /* Acento — exclusivo de CTA (verde WhatsApp) */
  --cta: #25d366;
  --cta-hover: #1fb855;
  --cta-fg: #06210f;

  /* Destaque neutro (badges, realces que não são CTA) */
  --highlight: #ffffff;

  /* Espaçamento — escala 4/8 */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* Tipografia — Sora leve para títulos, Inter para leitura.
     O peso 300 nos títulos é o que separa "caro" de "barulhento". */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --container: 1120px;

  --ring: 0 0 0 3px rgba(37, 211, 102, 0.45);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-lift: 0 12px 32px rgba(0, 0, 0, 0.55);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 300;
}

/* O itálico dentro de um título é o acento editorial do projeto:
   destaca a palavra que carrega a promessa, sem precisar de cor. */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

/* Foco visível — nunca remover */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-sm);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-16);
  border-top: 1px solid var(--border);
}

.section--flush { border-top: 0; }

.section__head {
  max-width: 44rem;
  margin-bottom: var(--sp-12);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--sp-3);
}

.section__title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  margin-bottom: var(--sp-4);
}

.section__sub {
  color: var(--fg-muted);
  font-size: 1.0625rem;
  max-width: 38rem;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 52px;
  padding: var(--sp-3) var(--sp-6);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease),
              transform 180ms var(--ease);
  touch-action: manipulation;
}

.btn:active { transform: scale(0.98); }

/* CTA principal — único uso do verde */
.btn--cta {
  background: var(--cta);
  color: var(--cta-fg);
}
.btn--cta:hover { background: var(--cta-hover); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--fg-subtle); background: var(--bg-elev); }

.btn--block { width: 100%; }

.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Hero editorial ----------
   Imagem grande ocupando a tela, conteúdo ancorado embaixo à esquerda.
   O texto não disputa espaço com a imagem: ele repousa sobre a parte
   escura dela. É isso que separa "editorial" de "banner". */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg);
}

/* A imagem */
.hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  z-index: 0;
}

/* Gradiente subindo: preto embaixo onde fica o texto, imagem livre em cima */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(10, 10, 10, 0.82) 30%,
    rgba(10, 10, 10, 0.35) 62%,
    rgba(10, 10, 10, 0.1) 100%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: var(--sp-16);
  padding-top: var(--sp-24);
}

/* Linha de contexto — discreta, no lugar do badge com ícone colorido */
.hero__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--sp-6);
}

.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 16em;
  margin-bottom: var(--sp-6);
  text-wrap: balance;
}

.hero__title em { color: var(--fg-muted); }

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.hero__reassure {
  font-size: 0.8125rem;
  color: var(--fg-subtle);
  margin-top: var(--sp-6);
}

/* Selos de confiança — linha fina, sem ícone colorido */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-8);
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__badges li {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
}

@media (max-width: 767px) {
  .hero__inner { padding-bottom: var(--sp-12); padding-top: var(--sp-16); }
  .hero__badges { gap: var(--sp-2) var(--sp-6); margin-top: var(--sp-8); }
}

/* ---------- Indicador de scroll ----------
   Branco, nunca verde: o verde é exclusivo de CTA e não pode competir
   com o botão principal logo ao lado. */
.hero__scroll {
  position: absolute;
  right: var(--sp-8);
  bottom: var(--sp-12);
  z-index: 2; /* acima do gradiente do hero, que também ocupa a camada 1 */
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero__scroll { display: flex; }
}

.hero__scroll i {
  width: 1px;
  height: 88px;
  background: linear-gradient(var(--fg-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* ---------- Inclinação 3D nos cards ----------
   Aplicada só em ponteiro fino (mouse). No toque não faz sentido e no
   celular só atrapalharia a rolagem. */
.tilt-scene { perspective: 1000px; }

.tilt {
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease), border-color 300ms var(--ease);
}

.tilt.is-tilting {
  transition: transform 80ms linear, border-color 300ms var(--ease);
  border-color: var(--border-strong);
}

/* ---------- Reveal ao rolar ----------
   A classe .reveal é aplicada pelo JavaScript, nunca no HTML.
   Se o JS falhar, nada fica invisível. */
.reveal { opacity: 0; }

.reveal.is-in {
  animation: revealUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Faixa de prova ---------- */
.proof {
  padding-block: var(--sp-8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}

.proof__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--sp-4);
}

.proof__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
  align-items: center;
}

.proof__list li {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
}

/* ---------- Grades ---------- */
.grid {
  display: grid;
  gap: var(--sp-4);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  padding: var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-inset);
}

.card__icon svg { width: 20px; height: 20px; color: var(--fg); }

.card__title {
  font-size: 1.125rem;
  margin-bottom: var(--sp-2);
}

.card__text { color: var(--fg-muted); font-size: 0.9375rem; }

/* Card de dor → solução */
.pain__q {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--fg);
}

.pain__a {
  color: var(--fg-muted);
  font-size: 0.9375rem;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}

/* ---------- Depoimentos ---------- */
.quote {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.quote__stars { display: flex; gap: 2px; margin-bottom: var(--sp-4); }
.quote__stars svg { width: 16px; height: 16px; color: var(--fg); }

.quote__text {
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: var(--sp-6);
  flex: 1;
}

.quote__who {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.quote__avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bg-inset);
  border: 1px solid var(--border-strong);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--fg-muted);
}

.quote__name { font-weight: 600; font-size: 0.9375rem; }
.quote__role { font-size: 0.8125rem; color: var(--fg-subtle); }

/* Marcador de conteúdo pendente */
.quote--pending { border-style: dashed; border-color: var(--border-strong); }
.quote--pending .quote__text { color: var(--fg-subtle); font-style: italic; }

.pending-tag {
  display: inline-block;
  padding: 2px var(--sp-2);
  margin-bottom: var(--sp-3);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* ---------- Lista de entregáveis ---------- */
.checklist { display: grid; gap: var(--sp-3); }

@media (min-width: 720px) {
  .checklist { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3) var(--sp-8); }
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.checklist svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cta);
}

.checklist strong { display: block; color: var(--fg); font-weight: 600; }
.checklist span { color: var(--fg-muted); }

/* ---------- Portfólio ---------- */
.work {
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* A capa usa a cor real da marca do cliente, mas só como brilho ao fundo —
   nunca como bloco chapado. A página segue monocromática; a cor apenas
   sugere a identidade de cada projeto. */
.work__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 20% 0%,
      color-mix(in srgb, var(--marca, #666) 22%, transparent), transparent 70%),
    linear-gradient(150deg, #171717, #0d0d0d);
}

/* Linha de horizonte, marcando a cor da marca sem invadir a composição */
.work__thumb::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(to right,
    var(--marca, #666), transparent 65%);
  opacity: 0.65;
}

.work__mark {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.125rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--fg-muted);
  text-align: center;
  padding-inline: var(--sp-4);
}

.work__body { padding: var(--sp-6); }

/* Case principal — ocupa a linha inteira e ganha layout horizontal.
   A hierarquia aqui é informação: diz qual trabalho representa melhor
   o nível da agência. */
.work--featured { margin-bottom: var(--sp-4); }

@media (min-width: 860px) {
  .work--featured {
    display: grid;
    /* Duas colunas iguais: assim a divisória cai exatamente sobre o vão
       entre as duas colunas do grid de baixo. O alinhamento é o que faz
       a seção parecer desenhada, e não montada. */
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .work--featured .work__thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 300px;
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
  .work--featured .work__thumb::after {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, var(--marca, #666), transparent 65%);
  }
  .work--featured .work__body {
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .work--featured .work__mark { font-size: clamp(1.5rem, 3vw, 2.25rem); }
  .work--featured .work__title { font-size: 1.5rem; }
}

/* Captura real do site ocupando a capa */
.work__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.92;
  transition: opacity 300ms var(--ease), transform 600ms var(--ease);
}

.work:hover .work__thumb img { opacity: 1; transform: scale(1.02); }

.work__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  align-self: flex-start;
  margin-top: var(--sp-4);
  padding-block: var(--sp-2);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}

.work__link:hover { color: var(--fg); border-color: var(--fg-subtle); }

.work__link svg { width: 14px; height: 14px; }

.work__tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--sp-2);
}

.work__title { font-size: 1.125rem; margin-bottom: var(--sp-2); }

.work__result {
  font-size: 0.9375rem;
  color: var(--fg-muted);
}

/* ---------- Planos ---------- */
.plan {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.plan--featured {
  border-color: var(--fg-subtle);
  background: var(--bg-elev);
}

.plan__flag {
  display: inline-block;
  align-self: flex-start;
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-4);
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan__name { font-size: 1.25rem; margin-bottom: var(--sp-2); }

.plan__for {
  font-size: 0.875rem;
  color: var(--fg-subtle);
  margin-bottom: var(--sp-6);
}

.plan__price {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-1);
  font-variant-numeric: tabular-nums;
}

.plan__price small {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--fg-subtle);
  letter-spacing: 0;
}

.plan__features {
  display: grid;
  gap: var(--sp-3);
  margin-block: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.9375rem;
  color: var(--fg-muted);
}

.plan__features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--cta);
}

.plan__cta { margin-top: auto; }

/* ---------- Garantia ---------- */
.guarantee {
  display: grid;
  gap: var(--sp-6);
  padding: var(--sp-8);
  margin-top: var(--sp-8);
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}

@media (min-width: 800px) {
  .guarantee { grid-template-columns: auto 1fr; align-items: start; gap: var(--sp-8); }
}

.guarantee__seal {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cta);
  border-radius: var(--radius);
  background: rgba(37, 211, 102, 0.08);
}

.guarantee__seal svg { width: 30px; height: 30px; color: var(--cta); }

.guarantee__title { font-size: 1.375rem; margin-bottom: var(--sp-3); }

.guarantee__text { color: var(--fg-muted); margin-bottom: var(--sp-4); }

.guarantee__rules {
  display: grid;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--fg-subtle);
}

.guarantee__rules li { display: flex; gap: var(--sp-2); }
.guarantee__rules strong { color: var(--fg-muted); font-weight: 600; }

/* ---------- Serviços complementares ---------- */
.addon {
  padding: var(--sp-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.addon__price {
  font-size: 0.875rem;
  color: var(--fg-subtle);
  margin-block: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; }

.faq details {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '';
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-right: 2px solid var(--fg-subtle);
  border-bottom: 2px solid var(--fg-subtle);
  transform: rotate(45deg);
  transition: transform 200ms var(--ease);
}

.faq details[open] summary::after { transform: rotate(-135deg); }

.faq__answer {
  padding-bottom: var(--sp-6);
  color: var(--fg-muted);
  font-size: 0.9375rem;
}

/* ---------- CTA final ---------- */
.final {
  text-align: center;
  padding-block: var(--sp-24);
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
}

.final__title {
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  margin-bottom: var(--sp-4);
  max-width: 34rem;
  margin-inline: auto;
}

.final__sub {
  color: var(--fg-muted);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-8);
  max-width: 32rem;
  margin-inline: auto;
}

.final__note {
  margin-top: var(--sp-6);
  font-size: 0.875rem;
  color: var(--fg-subtle);
}

/* ---------- Botão flutuante ---------- */
.float-cta {
  position: fixed;
  right: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  min-height: 52px;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-fg);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease),
              visibility 240ms var(--ease), background-color 180ms var(--ease);
  touch-action: manipulation;
}

.float-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.float-cta:hover { background: var(--cta-hover); }
.float-cta svg { width: 22px; height: 22px; }

@media (max-width: 480px) {
  .float-cta { left: var(--sp-4); right: var(--sp-4); justify-content: center; }
}

/* ---------- Rodapé ---------- */
.footer {
  padding-block: var(--sp-8);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--fg-subtle);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}

.footer a { text-decoration: none; }
.footer a:hover { color: var(--fg-muted); }

/* ---------- Utilidades ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .float-cta { transform: none; }
  /* Conteúdo sempre visível: reveal e pulso desligados, nunca escondidos */
  .reveal { opacity: 1 !important; animation: none !important; }
  .hero__scroll i { animation: none; opacity: 0.6; }
}

/* ==========================================================================
   Depoimentos em formato de conversa do WhatsApp
   As mensagens sao RECEBIDAS (o cliente escreveu para a agencia), entao o
   balao e cinza escuro, como no WhatsApp de verdade. Balao verde seria
   mensagem enviada — alem de furar a regra de verde exclusivo do CTA.
   ========================================================================== */

.chat {
  background: #0b141a;                  /* fundo de conversa do WhatsApp escuro */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ---------- Barra de topo ---------- */
.chat__head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: #202c33;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #2a3942;
  color: #d6dee3;
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.chat__id { min-width: 0; }           /* deixa o texto truncar em vez de estourar */

.chat__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e9edef;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat__role {
  font-size: 0.75rem;
  color: #8696a0;
  line-height: 1.4;
}

/* ---------- Area da conversa ---------- */
.chat__body {
  padding: var(--sp-6) var(--sp-4) var(--sp-4);
  flex: 1;
  display: flex;
}

.chat__bubble {
  position: relative;
  background: #202c33;
  color: #e9edef;
  border-radius: 0 8px 8px 8px;         /* canto reto em cima a esquerda: e ali que fica o rabinho */
  padding: var(--sp-3) var(--sp-4) var(--sp-2);
  max-width: 92%;
  font-size: 0.9375rem;
  line-height: 1.55;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* Rabinho do balao, desenhado em CSS puro */
.chat__bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #202c33 transparent transparent;
}

.chat__bubble p { margin: 0; }

.chat__meta {
  display: block;
  text-align: right;
  font-size: 0.6875rem;
  color: #8696a0;
  margin-top: var(--sp-1);
}

@media (max-width: 640px) {
  .chat__bubble { max-width: 100%; font-size: 0.9rem; }
}
