/* =========================================================
   FLUXZ — LP Negócios Locais
   Paleta extraída do layout original
   ========================================================= */
:root {
  --black: #050505;
  --header-bg: #121212;
  --purple: #663399;
  --purple-card-a: #7a568a;
  --purple-card-b: #8d6ba1;
  --green: #61ce70;
  --green-hover: #4fb85e;
  --green-bright: #2aff62;
  --white: #ffffff;
  --text-dark: #1b1b1b;
  --text-body: #333333;
  --text-light: #e9e9ee;
  --muted-light: #c9c9d2;
  --container: 1200px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text-light);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color 180ms ease, transform 180ms ease;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.btn-pill {
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 17px;
  font-weight: 700;
}

.btn-lg {
  padding: 19px 38px;
  font-size: 19px;
}

.btn-upper {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ico-wa {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Texto curto do CTA, usado só em tela estreita */
.txt-short {
  display: none;
}

.cta-center {
  margin-top: 34px;
  text-align: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.logo img {
  width: 174px;
}

/* ---------- Hero ---------- */
/* Sem respiro embaixo: a foto encosta na borda da seção, como no layout
   original. Com respiro ela parece flutuar no meio do preto. */
.hero {
  position: relative;
  padding: 90px 0 0;
  background: #0a0a0a;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 51, 153, 0.75), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.12;
  color: #fff;
  max-width: 580px;
}

.hl-green {
  color: var(--green-bright);
}

.hl-purple {
  color: var(--purple);
}

.hero-lead {
  margin-top: 22px;
  max-width: 34em;
  font-size: 17px;
  color: #e6e6ea;
}

.hero-strong {
  margin-top: 18px;
  font-size: 17px;
  color: #fff;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.hero-social img {
  width: 140px;
}

.hero-social-text strong {
  display: block;
  font-size: 17px;
  color: #fff;
}

.hero-social-text span {
  font-size: 16px;
  color: #dcdce2;
}

.hero-copy .btn {
  margin-top: 30px;
}

/* A foto encosta na borda; o texto mantém respiro embaixo. */
.hero-copy {
  padding-bottom: 88px;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-media img {
  display: block;
  width: min(500px, 100%);
}

/* ---------- Seções ---------- */
.section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.section-white {
  background: #fff;
  color: var(--text-dark);
}

.section-dark {
  background: var(--black);
  color: var(--text-light);
}

.glow-right::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 51, 153, 0.7), transparent 60%);
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.title-center {
  max-width: 900px;
  margin: 0 auto;
  font-size: 36px;
  text-align: center;
  color: var(--text-dark);
}

.title-center.light {
  color: #fff;
  max-width: 1000px;
}

.subtitle-center {
  max-width: 900px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 16px;
  color: #e2e2e8;
}

.note-center {
  margin-top: 26px;
  text-align: center;
  font-size: 16px;
  color: var(--text-body);
}

.note-center.light {
  color: #eaeaf0;
}

/* ---------- Grids ---------- */
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

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

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

/* ---------- Cards claros (problema / benefícios) ---------- */
.card-outline {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 26px;
  text-align: center;
  background: #fff;
  border: 1px solid #b79ad4;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(102, 51, 153, 0.22);
}

.card-outline .card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

.card-outline h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--purple);
}

.card-outline p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-body);
}

/* ---------- Cards roxos (nichos / soluções) ---------- */
.card-purple {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 22px;
  text-align: center;
  color: #fff;
  background: linear-gradient(150deg, var(--purple-card-a), var(--purple-card-b));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.card-purple .card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.card-purple p {
  font-size: 15px;
  line-height: 1.5;
}

.card-service {
  padding: 32px 26px;
}

.card-service .card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
}

.card-service h3 {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* ---------- Empresas que confiam ---------- */
.clients-strip {
  background: var(--purple);
  padding: 6px 0;
}

.clients-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 200px;
  border-top: 1px solid rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
}

.clients-label {
  flex: 0 0 200px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--green-bright);
}

.clients-viewport {
  flex: 1;
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 420ms ease;
}

.clients-track img {
  flex: 0 0 calc((100% - 96px) / 5);
  min-width: 0;
  width: calc((100% - 96px) / 5);
  height: 112px;
  object-fit: contain;
}

.carousel-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.carousel-arrow.dark {
  color: #2b2b2b;
}

/* ---------- Comparativo ----------
   As duas colunas têm pesos visuais diferentes de propósito: a da esquerda
   recua (neutra, sem brilho) e a da direita é o destaque. */
.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  margin-top: 44px;
  align-items: center;
}

.compare-card {
  border-radius: 18px;
  padding: 30px 32px 34px;
}

.compare-card-negative {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.compare-card-positive {
  background: linear-gradient(
      165deg,
      rgba(102, 51, 153, 0.3),
      rgba(102, 51, 153, 0.05) 55%,
      transparent
    ),
    #0b0b0f;
  border: 1px solid rgba(102, 51, 153, 0.75);
  box-shadow: 0 0 0 1px rgba(97, 206, 112, 0.14),
    0 24px 60px rgba(102, 51, 153, 0.32);
}

/* Cabeçalho do card */
.compare-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.compare-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.compare-chip svg {
  width: 22px;
  height: 22px;
}

.compare-card-negative .compare-chip {
  color: #d98a8a;
  background: rgba(217, 138, 138, 0.11);
}

.compare-card-positive .compare-chip {
  color: var(--green-bright);
  background: rgba(42, 255, 98, 0.12);
}

.compare-card h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.28;
}

.compare-card-negative h3 {
  color: #b9b9c4;
}

.compare-card-positive h3 {
  color: #fff;
}

/* Itens */
.mark-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mark-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mark-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.compare-card-negative .mark-list li {
  color: #a9a9b6;
}

.compare-card-positive .mark-list li {
  color: #dcdce6;
}

.mark-list strong {
  font-weight: 700;
  color: #fff;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
}

.mark svg {
  width: 14px;
  height: 14px;
}

.mark-x {
  color: #d96a6a;
  border: 1px solid rgba(217, 106, 106, 0.42);
}

.mark-check {
  color: #08210d;
  background: var(--green);
}

/* Selo entre as colunas */
.compare-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0b0b0f;
  border: 1px solid rgba(102, 51, 153, 0.85);
  box-shadow: 0 0 24px rgba(102, 51, 153, 0.5);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #cbb3e4;
}

/* ---------- Por que contratar ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 44px;
}

.why-photo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 28px;
}

.why-col h3 {
  font-size: 32px;
  line-height: 1.25;
  color: var(--text-dark);
}

.why-col > p {
  margin-top: 20px;
  font-size: 16px;
  color: var(--text-body);
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 32px;
  font-size: 16px;
  color: var(--text-body);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--green)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6 9 17l-5-5' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / 13px 13px no-repeat;
}

/* ---------- Consultoria / passos ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.process-intro h2 {
  font-size: 32px;
  line-height: 1.25;
  color: var(--text-dark);
}

.process-intro p {
  margin-top: 22px;
  font-size: 16px;
  color: var(--text-body);
}

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

.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  margin-bottom: 48px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-num {
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: var(--purple);
}

.step-body h3 {
  font-size: 21px;
  font-weight: 400;
  color: var(--purple);
}

.step-body p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-body);
}

/* ---------- Quem somos ---------- */
.about {
  padding-bottom: 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.about-media img {
  width: 100%;
  border-radius: 16px;
}

.about-copy h2 {
  font-size: 34px;
  text-align: center;
  color: #fff;
}

.about-copy p {
  margin-top: 22px;
  font-size: 16px;
  color: #e4e4ea;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
  padding: 44px 40px;
  border-radius: 16px;
  background: linear-gradient(90deg, #57129c, #8150b1);
}

.stat {
  text-align: center;
  color: #fff;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}

.stat > span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- Resultados / depoimentos ---------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 46px;
}

.video-frame {
  position: relative;
  max-width: 412px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.prints-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.prints-viewport {
  flex: 1;
  overflow: hidden;
}

.prints-track {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  transition: transform 420ms ease;
}

.print-slide {
  flex: 0 0 calc((100% - 120px) / 3);
  height: 500px;
  margin: 0;
}

/* Alturas diferentes de print ficam alinhadas pelo topo, sem cortar nada. */
.print-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.prints-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.prints-dots[hidden] {
  display: none;
}

.prints-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfcfd6;
}

.prints-dots button.is-active {
  background: #2b2b2b;
}

/* ---------- FAQ ---------- */
.faq .title-center {
  max-width: 620px;
}

.faq-list {
  max-width: 1090px;
  margin: 44px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
}

.faq-arrow {
  flex: 0 0 auto;
  margin-top: 4px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--green-bright);
  transition: transform 200ms ease;
}

.faq-item.is-open .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  padding: 0 4px 22px 37px;
  font-size: 16px;
  color: #dcdce4;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 34px 0 40px;
  background: var(--black);
  text-align: center;
  font-size: 16px;
  color: #e8e8ee;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #9a6fc9;
}

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

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid,
  .compare-grid,
  .why-grid,
  .process-grid,
  .about-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  /* Empilhado, o respiro do texto viraria um vão preto antes da foto. */
  .hero-grid {
    gap: 24px;
  }

  .compare-grid {
    gap: 24px;
  }

  /* Empilhado, o selo cairia em cima de um dos cards. */
  .compare-vs {
    display: none;
  }

  .hero-copy {
    padding-bottom: 0;
  }

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

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

  /* Card sozinho na última linha fica centralizado em vez de encostado. */
  .grid-3 > :last-child:nth-child(odd),
  .grid-4 > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }

  .videos-grid {
    gap: 34px;
  }

  .stats-bar {
    margin-top: 40px;
  }

  .clients-track img {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
  }

  .print-slide {
    flex: 0 0 calc((100% - 60px) / 2);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 40px 0 0;
  }

  .hero-copy {
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .title-center,
  .why-col h3,
  .process-intro h2,
  .about-copy h2 {
    font-size: 26px;
  }

  .header-inner {
    min-height: 68px;
  }

  .logo img {
    width: 122px;
  }

  /* O número é longo: sem compactar, o botão come metade da tela e
     chega a quebrar em duas linhas em telas de 360px. */
  .btn-pill {
    gap: 6px;
    padding: 9px 13px;
    font-size: 13px;
    white-space: nowrap;
  }

  .btn-pill .ico-wa {
    width: 17px;
    height: 17px;
  }

  .btn-lg {
    gap: 9px;
    padding: 15px 22px;
    font-size: 15px;
    line-height: 1.3;
  }

  /* CTA centralizado. width fit-content mantém o botão do tamanho do
     conteúdo — com display:flex sozinho ele esticaria a largura toda. */
  .hero-copy .btn-lg {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-3 > :last-child:nth-child(odd),
  .grid-4 > :last-child:nth-child(odd) {
    width: 100%;
  }

  .clients-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 0;
  }

  .clients-label {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 12px;
  }

  .clients-track img {
    flex: 0 0 100%;
    width: 100%;
  }

  .step {
    grid-template-columns: 80px 1fr;
  }

  .step-num {
    font-size: 46px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .print-slide {
    flex: 0 0 100%;
  }

  .process-grid,
  .why-grid,
  .about-grid {
    gap: 36px;
  }

  .cta-center .btn {
    width: 100%;
  }
}

/* Só em celular o texto completo do CTA não cabe numa linha e o botão
   estoura a largura toda. Acima disso, mantém a copy completa. */
@media (max-width: 480px) {
  .txt-full {
    display: none;
  }

  .txt-short {
    display: inline;
  }
}

/* Telas bem estreitas (iPhone SE e similares) */
@media (max-width: 400px) {
  .logo img {
    width: 108px;
  }

  .btn-pill {
    padding: 8px 11px;
    font-size: 12px;
  }

  .btn-pill .ico-wa {
    width: 15px;
    height: 15px;
  }

  .header-inner {
    gap: 10px;
  }
}

/* =========================================================
   Movimento — entrada por scroll, hover e microinterações
   ========================================================= */

/* Revelação no scroll: a classe só é aplicada pelo JS,
   então sem JS o conteúdo continua visível. */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header ganha peso ao rolar */
.site-header {
  transition: box-shadow 280ms ease, background-color 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 18, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

/* Hero: brilho de fundo respirando (a foto fica parada) */
@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero::after,
.glow-right::after {
  animation: glow-breathe 9s ease-in-out infinite;
}

/* Botões: brilho que atravessa no hover */
.btn-green {
  position: relative;
  overflow: hidden;
}

.btn-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 640ms ease;
  pointer-events: none;
}

.btn-green:hover::after {
  left: 130%;
}

/* CTA do hero pulsa de leve para puxar o olho */
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(97, 206, 112, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(97, 206, 112, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(97, 206, 112, 0);
  }
}

.hero-copy .btn-lg {
  animation: cta-pulse 3s ease-out infinite;
}

/* Cards reagem ao mouse */
.card-outline,
.card-purple,
.compare-card {
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.card-outline:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
  box-shadow: 0 18px 38px rgba(102, 51, 153, 0.28);
}

.card-purple:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.5);
}

.compare-card-negative:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.compare-card-positive:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(97, 206, 112, 0.28),
    0 30px 70px rgba(102, 51, 153, 0.48);
}

.card-icon {
  transition: transform 320ms ease;
}

.card-outline:hover .card-icon,
.card-purple:hover .card-icon {
  transform: scale(1.12) rotate(-3deg);
}

/* Passos, logos e fotos */
.step-num {
  transition: transform 320ms ease;
}

.step:hover .step-num {
  transform: translateX(6px) scale(1.06);
}

.clients-track img {
  opacity: 0.92;
  transition: transform 320ms ease, opacity 320ms ease;
}

.clients-track img:hover {
  transform: scale(1.08);
  opacity: 1;
}

.carousel-arrow {
  transition: transform 220ms ease, opacity 220ms ease;
}

.carousel-arrow:hover {
  transform: scale(1.25);
}

.why-photo,
.about-media img,
.print-slide img {
  transition: transform 420ms ease;
}

.why-photo:hover,
.about-media img:hover,
.print-slide img:hover {
  transform: scale(1.03);
}

.check-list li {
  transition: transform 240ms ease;
}

.check-list li:hover {
  transform: translateX(5px);
}

/* FAQ */
.faq-question {
  transition: color 220ms ease;
}

.faq-question:hover,
.faq-item.is-open .faq-question {
  color: var(--green-bright);
}

/* WhatsApp flutuante com anel pulsante */
@keyframes wa-ring {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.whatsapp-float {
  transition: transform 260ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: #25d366;
  animation: wa-ring 2.4s ease-out infinite;
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Páginas legais ---------- */
.legal-page {
  max-width: 920px;
  padding: 70px 20px;
}

.legal-title {
  font-size: 34px;
  color: #fff;
}

.legal-updated {
  margin-top: 12px;
  color: var(--muted-light);
}

.legal-content {
  margin-top: 28px;
}

.legal-content h2 {
  margin: 32px 0 14px;
  font-size: 22px;
  color: #fff;
}

.legal-content p,
.legal-content li {
  color: var(--muted-light);
  line-height: 1.8;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--green);
}
