/* ============================================================
   ALICE — Landing Page
   Paleta oficial: Magenta #BE0380 · Beterraba #500A39 · Branco · Preto
   ============================================================ */

:root {
  --magenta: #BE0380;
  --magenta-soft: #e23ba2;
  --magenta-light: #fce8f4;
  --magenta-glow: rgba(190, 3, 128, 0.35);
  --beterraba: #500A39;
  --beterraba-deep: #38062a;
  --branco: #FFFFFF;
  --preto: #0d0d0d;
  --off: #fdf7fb;

  --font-display: "Fraunces", serif;
  --font-body: "Instrument Sans", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 24px;
  --topbar-h: 40px;
  --nav-h: 76px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off);
  color: var(--beterraba);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection { background: var(--magenta); color: var(--branco); }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--magenta);
  display: grid; place-items: center;
  transition: clip-path 0.9s var(--ease-out);
  clip-path: inset(0 0 0 0);
}
.preloader.done { clip-path: inset(0 0 100% 0); }
.preloader__mark {
  display: flex; align-items: baseline; gap: 10px;
}
.preloader__logo {
  width: clamp(120px, 24vw, 200px);
  height: auto;
  aspect-ratio: 1247 / 690;
  color: var(--branco);
  animation: preloader-breathe 1.2s ease-in-out infinite;
}
.preloader__pulse {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--branco);
  animation: preloader-pulse 1.2s ease-in-out infinite;
}
@keyframes preloader-breathe {
  0%, 100% { opacity: 0.85; } 50% { opacity: 1; }
}
@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); } 50% { transform: scale(1.6); }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1001;
  width: 100%; height: 3px;
  background: var(--magenta);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ============ TOPBAR ============ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--magenta);
  color: var(--branco);
}
.topbar__inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--branco);
  white-space: nowrap;
  transition: opacity 0.25s;
}
.topbar__link:hover { opacity: 0.85; }
.topbar__link svg { width: 16px; height: 16px; flex-shrink: 0; }
.topbar__sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.35);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(253, 247, 251, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(80, 10, 57, 0.08);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav__logo {
  color: var(--magenta);
  display: flex; align-items: center;
  transition: transform 0.3s var(--ease-spring);
}
.nav__logo:hover { transform: scale(1.05); }
.nav__logo-svg {
  width: 58px;
  height: auto;
  aspect-ratio: 1247 / 690;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.nav__links {
  display: flex; gap: 32px; margin-left: auto;
}
.nav__link {
  font-weight: 500; font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--magenta);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: 0 50%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 7px;
  margin-left: auto;
}
.nav__burger span {
  display: block; height: 2px; width: 26px;
  background: var(--beterraba);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
  margin: 0 auto;
}
.nav__burger.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav__burger.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--beterraba);
  display: grid; place-items: center;
  clip-path: circle(0% at calc(100% - 46px) 38px);
  transition: clip-path 0.6s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 46px) 38px);
  visibility: visible;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 500;
  color: var(--branco);
  padding: 8px 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu.open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.43s; }
.mobile-menu__link:hover { color: var(--magenta-soft); }
.mobile-menu__link--cta { font-style: italic; color: var(--magenta-soft); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s, color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--magenta); color: var(--branco);
  box-shadow: 0 8px 30px var(--magenta-glow);
}
.btn--primary:hover {
  box-shadow: 0 12px 40px var(--magenta-glow);
  background: #a8026f;
}
.btn--ghost {
  background: transparent; color: var(--beterraba);
  box-shadow: inset 0 0 0 1.5px rgba(80, 10, 57, 0.25);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--beterraba); }
.btn--nav {
  background: var(--beterraba); color: var(--branco);
  padding: 12px 24px; font-size: 0.9rem;
}
.btn--nav:hover { background: var(--magenta); }

.btn--whatsapp {
  background: var(--beterraba);
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(80, 10, 57, 0.28);
}
.btn--whatsapp:hover {
  background: var(--beterraba-deep);
  box-shadow: 0 12px 32px rgba(80, 10, 57, 0.35);
}
.btn--whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--branco); }
.btn--whatsapp:hover svg { transform: none; }
@media (max-width: 1080px) {
  .nav__inner { gap: 20px; }
  .nav__links { gap: 20px; }
}

.btn--light {
  background: var(--branco); color: var(--beterraba);
}
.btn--light:hover { background: var(--magenta-light); }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  text-align: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__photo {
  position: absolute; inset: 0;
  background: url("../hero.png") right center / cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(253, 247, 251, 0.96) 0%,
    rgba(253, 247, 251, 0.88) 38%,
    rgba(253, 247, 251, 0.35) 62%,
    rgba(253, 247, 251, 0) 100%);
}
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: blob-float 14s ease-in-out infinite alternate;
}
.hero__blob--1 {
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
  top: -18%; right: -12%;
  opacity: 0.25;
}
.hero__blob--2 {
  width: 45vw; height: 45vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, #f4a4d4 0%, transparent 70%);
  bottom: -15%; left: -10%;
  animation-delay: -7s;
}
@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-6%, 8%) scale(1.15); }
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.31 0 0 0 0 0.04 0 0 0 0 0.22 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner { max-width: 1000px; }

/* Com a foto de fundo, alinha o conteúdo à esquerda em telas largas */
@media (min-width: 961px) {
  .hero {
    align-items: flex-start;
    text-align: left;
  }
  .hero .hero__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .hero .hero__badge { margin-bottom: 28px; }
  .hero .hero__title { font-size: clamp(3rem, 6.5vw, 5.4rem); max-width: 680px; }
  .hero .hero__sub { margin: 0 0 44px; max-width: 500px; }
  .hero .hero__ctas { justify-content: flex-start; }
  .hero .hero__stats { justify-content: flex-start; }
  .hero .hero__stat { text-align: left; }
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--branco);
  border: 1px solid rgba(190, 3, 128, 0.2);
  color: var(--magenta);
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 999px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(190, 3, 128, 0.12);
}
.hero__badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta);
  position: relative;
}
.hero__badge-pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--magenta);
  animation: ping 1.8s var(--ease-out) infinite;
}
@keyframes ping {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 9.5vw, 7.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--beterraba);
  margin-bottom: 32px;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero__word { display: inline-block; }
.hero__word--italic {
  font-style: italic;
  color: var(--magenta);
  font-weight: 600;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 580px; margin: 0 auto 44px;
  color: rgba(80, 10, 57, 0.75);
}
.hero__sub strong { color: var(--magenta); }

.hero__ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
}

.section-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.section-ctas--center { justify-content: center; }

.hero__stats {
  display: flex; justify-content: center; gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--magenta);
  display: block; line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.hero__stat-num small { font-size: 0.5em; font-weight: 500; opacity: 0.7; }
.hero__stat-label {
  font-size: 0.85rem; line-height: 1.45;
  color: rgba(80, 10, 57, 0.65);
}

.hero__scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(80, 10, 57, 0.3);
  border-radius: 14px;
}
.hero__scroll-hint span {
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--magenta);
  animation: scroll-hint 1.8s var(--ease-out) infinite;
}
@keyframes scroll-hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Hero entrance */
.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  animation: hero-in 1s var(--ease-out) forwards;
  animation-delay: calc(0.9s + var(--d) * 0.12s);
}
@keyframes hero-in {
  to { opacity: 1; transform: none; }
}
.hero__line .reveal-hero {
  transform: translateY(110%);
  animation-name: hero-word-in;
}
@keyframes hero-word-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--magenta);
  color: var(--branco);
  padding: 22px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative; z-index: 2;
  box-shadow: 0 10px 40px rgba(190, 3, 128, 0.25);
}
.marquee__track {
  display: flex; align-items: center; gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  white-space: nowrap;
}
.marquee__item--italic { font-style: italic; font-weight: 400; }
.marquee__sep { font-size: 1rem; opacity: 0.7; }

/* ============ SECTION BASE ============ */
.section-tag {
  display: inline-block;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid rgba(190, 3, 128, 0.3);
  border-radius: 999px;
}
.section-tag--light {
  color: #f7b8dd;
  border-color: rgba(255, 255, 255, 0.3);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--beterraba);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--magenta);
}
.section-title--light { color: var(--branco); }
.section-title--light em { color: #f7b8dd; }
.section-lead {
  font-size: 1.1rem;
  color: rgba(80, 10, 57, 0.7);
  max-width: 520px;
}
.section-lead strong { color: var(--magenta); }
.section-lead--light { color: rgba(255, 255, 255, 0.75); }
.section-lead--light strong { color: #f7b8dd; }

/* Scroll reveal genérico */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ============ MANIFESTO ============ */
.manifesto {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--off) 0%, var(--branco) 45%, var(--off) 100%);
  padding: clamp(96px, 14vw, 160px) 24px;
}
.manifesto__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.manifesto__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.manifesto__glow--1 {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -20%;
  left: 50%;
  transform: translateX(-60%);
  background: radial-gradient(circle, rgba(190, 3, 128, 0.18), transparent 70%);
}
.manifesto__glow--2 {
  width: min(400px, 55vw);
  height: min(400px, 55vw);
  bottom: -25%;
  left: 50%;
  transform: translateX(-20%);
  background: radial-gradient(circle, rgba(80, 10, 57, 0.1), transparent 70%);
}
.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 3vw, 32px);
}
.manifesto__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--beterraba);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.manifesto__title em {
  font-style: normal;
  color: var(--magenta);
  display: block;
  margin-top: 0.12em;
}
.manifesto__lead {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  line-height: 1.65;
  color: rgba(80, 10, 57, 0.68);
  max-width: 620px;
  text-wrap: balance;
}
.manifesto__lead strong {
  font-weight: 600;
  color: var(--magenta);
  white-space: nowrap;
}
.manifesto__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 680px);
  margin-top: 8px;
  padding: 20px clamp(22px, 4vw, 36px);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--beterraba) 0%, var(--beterraba-deep) 100%);
  color: var(--branco);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  box-shadow:
    0 20px 50px rgba(80, 10, 57, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
}
.manifesto__badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 56px rgba(80, 10, 57, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.manifesto__badge-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--magenta-soft);
  opacity: 0.95;
}

@media (max-width: 520px) {
  .manifesto__lead strong { white-space: normal; }
  .manifesto__badge {
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
  }
}

/* ============ ALICE AGORA ============ */
.agora {
  background: var(--branco);
  padding: clamp(90px, 12vw, 150px) 24px;
  border-radius: 60px 60px 0 0;
  position: relative;
}
.agora__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.agora__features { margin-top: 44px; display: grid; gap: 28px; }
.agora__feature {
  display: flex; gap: 20px; align-items: flex-start;
}
.agora__feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--magenta-light);
  color: var(--magenta);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease-spring), background 0.3s, color 0.3s;
}
.agora__feature:hover .agora__feature-icon {
  background: var(--magenta); color: var(--branco);
  transform: rotate(-6deg) scale(1.08);
}
.agora__feature-icon svg { width: 24px; height: 24px; }
.agora__feature h3 {
  font-size: 1.08rem; font-weight: 700;
  margin-bottom: 4px;
}
.agora__feature p {
  font-size: 0.95rem;
  color: rgba(80, 10, 57, 0.65);
}

/* Chat */
.agora__chat { position: relative; }
.chat__glow {
  position: absolute; inset: 10% 5%;
  background: radial-gradient(ellipse, var(--magenta-glow), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glow-breathe 5s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; } 50% { opacity: 1; }
}
.chat {
  position: relative; z-index: 1;
  background: var(--branco);
  border: 1px solid rgba(80, 10, 57, 0.1);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(80, 10, 57, 0.18);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}
.chat__header {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(80, 10, 57, 0.08);
  background: linear-gradient(135deg, var(--magenta), #8f0261);
  color: var(--branco);
}
.chat__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--branco); color: var(--magenta);
  font-family: var(--font-display);
  font-style: italic; font-weight: 700; font-size: 1.5rem;
  display: grid; place-items: center;
  line-height: 1; padding-bottom: 4px;
}
.chat__header strong { display: block; font-size: 1rem; }
.chat__status {
  font-size: 0.78rem; opacity: 0.9;
  display: inline-flex; align-items: center; gap: 6px;
}
.chat__status i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5dffa8;
  animation: dot-pulse 2s ease-in-out infinite;
}
.chat__badge {
  margin-left: auto;
  font-size: 0.72rem; font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px; border-radius: 999px;
}
.chat__body {
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 320px;
}
.chat__msg {
  max-width: 82%;
  padding: 12px 16px;
  font-size: 0.92rem; line-height: 1.45;
  opacity: 0; transform: translateY(14px) scale(0.96);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-spring);
}
.chat__msg.show, .chat__typing.show, .chat__call.show {
  opacity: 1; transform: none;
}
.chat__msg--user {
  align-self: flex-end;
  background: var(--magenta); color: var(--branco);
  border-radius: 18px 18px 4px 18px;
}
.chat__msg--alice {
  align-self: flex-start;
  background: #f6edf3; color: var(--beterraba);
  border-radius: 18px 18px 18px 4px;
}
.chat__msg--alice strong { color: var(--magenta); }
.chat__typing {
  align-self: flex-start;
  background: #f6edf3;
  border-radius: 18px 18px 18px 4px;
  padding: 14px 18px;
  display: flex; gap: 5px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.3s, transform 0.3s;
}
.chat__typing.hide { display: none; }
.chat__typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(80, 10, 57, 0.4);
  animation: typing 1.2s ease-in-out infinite;
}
.chat__typing span:nth-child(2) { animation-delay: 0.15s; }
.chat__typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}
.chat__call {
  align-self: center;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--magenta);
  background: var(--magenta-light);
  border: 1px dashed rgba(190, 3, 128, 0.4);
  padding: 10px 18px; border-radius: 999px;
  margin-top: 6px;
  opacity: 0; transform: translateY(14px) scale(0.96);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-spring);
}
.chat__call svg { width: 16px; height: 16px; }
.chat__input {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid rgba(80, 10, 57, 0.08);
  color: rgba(80, 10, 57, 0.4);
  font-size: 0.9rem;
}
.chat__input span { flex: 1; }
.chat__input button {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--magenta); color: var(--branco);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease-spring);
}
.chat__input button:hover { transform: scale(1.12) rotate(-8deg); }
.chat__input button svg { width: 17px; height: 17px; }

/* ============ APP (seção escura) ============ */
.app {
  background: var(--beterraba);
  padding: clamp(100px, 13vw, 160px) 24px;
  position: relative;
  overflow: hidden;
}
.app::before {
  content: "";
  position: absolute;
  width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 3, 128, 0.35), transparent 70%);
  top: -20%; left: -20%;
  filter: blur(60px);
  animation: blob-float 16s ease-in-out infinite alternate;
}
.app__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  position: relative;
}
.app__phone-wrap {
  position: relative;
  display: grid; place-items: center;
  perspective: 1000px;
}
.phone {
  width: min(320px, 80vw);
  background: var(--preto);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5),
              0 0 0 2px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}
.phone__notch {
  position: absolute; top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: var(--preto);
  border-radius: 999px;
  z-index: 2;
}
.phone__screen {
  background: linear-gradient(170deg, #fdf3f9 0%, #fce4f1 100%);
  border-radius: 34px;
  padding: 60px 18px 24px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 560px;
}
.phone__header { padding: 0 4px; }
.phone__greeting {
  display: block;
  font-size: 0.85rem; color: rgba(80, 10, 57, 0.6);
}
.phone__name {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--beterraba);
}
.phone__card {
  background: var(--magenta); color: var(--branco);
  border-radius: 20px; padding: 18px;
  box-shadow: 0 12px 30px rgba(190, 3, 128, 0.35);
}
.phone__card--main p {
  font-family: var(--font-display);
  font-size: 1.25rem; line-height: 1.25;
  margin: 8px 0 12px;
}
.phone__card-tag {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px; border-radius: 999px;
}
.phone__card-cta { font-size: 0.85rem; font-weight: 600; }
.phone__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.phone__card--small {
  background: var(--branco); color: var(--beterraba);
  box-shadow: 0 6px 20px rgba(80, 10, 57, 0.1);
  font-size: 0.8rem; font-weight: 600; line-height: 1.3;
  display: flex; flex-direction: column; gap: 10px;
}
.phone__card--small svg { width: 22px; height: 22px; color: var(--magenta); }
.phone__list {
  background: var(--branco);
  border-radius: 20px; padding: 6px 16px;
  box-shadow: 0 6px 20px rgba(80, 10, 57, 0.1);
}
.phone__list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
}
.phone__list-item + .phone__list-item {
  border-top: 1px solid rgba(80, 10, 57, 0.08);
}
.phone__list-item strong { display: block; font-size: 0.85rem; color: var(--beterraba); }
.phone__list-item span { font-size: 0.74rem; color: rgba(80, 10, 57, 0.55); }
.phone__dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
}
.phone__dot--ok { background: #18c97a; }
.phone__dot--wait { background: #f5a623; }

.app__orbit {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid; place-items: center;
  font-size: 1.6rem;
  animation: orbit-float 5s ease-in-out infinite alternate;
}
.app__orbit--1 { top: 8%; left: 2%; animation-delay: 0s; }
.app__orbit--2 { bottom: 14%; right: 0%; animation-delay: -1.8s; }
.app__orbit--3 { top: 40%; right: -4%; animation-delay: -3.2s; color: var(--branco); }
@keyframes orbit-float {
  from { transform: translateY(-12px) rotate(-4deg); }
  to { transform: translateY(12px) rotate(5deg); }
}

.app__checks { margin: 36px 0 44px; display: grid; gap: 16px; }
.app__checks li {
  position: relative;
  padding-left: 38px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
}
.app__checks li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--magenta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 12 4 4 8-8' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ REAJUSTE ============ */
.reajuste {
  background: var(--branco);
  padding: clamp(100px, 13vw, 160px) 24px;
}
.reajuste__inner { max-width: 1100px; margin: 0 auto; }
.reajuste__head {
  text-align: center;
  margin-bottom: 70px;
  display: flex; flex-direction: column; align-items: center;
}
.reajuste__head .section-lead { max-width: 620px; }

.chart {
  background: var(--off);
  border: 1px solid rgba(80, 10, 57, 0.08);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
}
.chart__bars {
  display: flex; align-items: flex-end;
  gap: clamp(8px, 2vw, 24px);
  height: 320px;
}
.chart__bar {
  flex: 1;
  height: var(--h);
  background: rgba(80, 10, 57, 0.12);
  border-radius: 12px 12px 4px 4px;
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.1s var(--ease-out), background 0.3s;
}
.chart.in .chart__bar { transform: scaleY(1); }
.chart.in .chart__bar:nth-child(1) { transition-delay: 0.05s; }
.chart.in .chart__bar:nth-child(2) { transition-delay: 0.12s; }
.chart.in .chart__bar:nth-child(3) { transition-delay: 0.19s; }
.chart.in .chart__bar:nth-child(4) { transition-delay: 0.26s; }
.chart.in .chart__bar:nth-child(5) { transition-delay: 0.33s; }
.chart.in .chart__bar:nth-child(6) { transition-delay: 0.4s; }
.chart.in .chart__bar:nth-child(7) { transition-delay: 0.47s; }
.chart.in .chart__bar:nth-child(8) { transition-delay: 0.54s; }
.chart.in .chart__bar:nth-child(9) { transition-delay: 0.61s; }
.chart__bar:hover { background: rgba(80, 10, 57, 0.22); }
.chart__bar--alice {
  background: linear-gradient(180deg, var(--magenta), #8f0261);
  box-shadow: 0 10px 30px var(--magenta-glow);
}
.chart__bar--alice:hover { background: linear-gradient(180deg, var(--magenta), #8f0261); }
.chart__bar--alice::after {
  content: "menor do setor";
  position: absolute; top: -58px; left: 50%;
  transform: translateX(-50%);
  background: var(--beterraba); color: var(--branco);
  font-size: 0.7rem; font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px; border-radius: 8px;
  opacity: 0;
  transition: opacity 0.5s ease 1.4s, transform 0.5s var(--ease-spring) 1.4s;
}
.chart.in .chart__bar--alice::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.chart__value {
  position: absolute; top: -28px; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(0.62rem, 1.4vw, 0.85rem);
  font-weight: 700;
  color: var(--beterraba);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease 1s;
}
.chart.in .chart__value { opacity: 1; }
.chart__bar--alice .chart__value { color: var(--magenta); }
.chart__label {
  position: absolute; bottom: -30px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem; font-weight: 600;
  color: rgba(80, 10, 57, 0.5);
}
.chart__bar--alice .chart__label {
  font-family: var(--font-display);
  font-style: italic; font-weight: 600;
  color: var(--magenta);
  font-size: 1rem;
}
.chart__caption {
  margin-top: 56px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(80, 10, 57, 0.5);
}

.reajuste__highlight {
  margin-top: 64px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  text-align: left;
}
.reajuste__big {
  font-family: var(--font-display);
  font-style: italic; font-weight: 600;
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 1;
  color: var(--magenta);
  font-variant-numeric: tabular-nums;
}
.reajuste__highlight p {
  font-size: 1.15rem; line-height: 1.5;
  color: rgba(80, 10, 57, 0.75);
}

/* ============ FAQ ============ */
.faq {
  background: var(--off);
  padding: clamp(90px, 12vw, 150px) 24px;
}
.faq__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--header-h) + 32px); }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--branco);
  border: 1px solid rgba(80, 10, 57, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item[open] {
  border-color: rgba(190, 3, 128, 0.35);
  box-shadow: 0 16px 44px rgba(190, 3, 128, 0.1);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-weight: 600; font-size: 1.05rem;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--magenta); }
.faq__item[open] summary { color: var(--magenta); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--magenta-light);
  position: relative;
  transition: transform 0.4s var(--ease-spring), background 0.3s;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--magenta);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon {
  background: var(--magenta);
  transform: rotate(135deg);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--branco); }
.faq__answer {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}
.faq__item[open] .faq__answer {
  max-height: 320px;
  padding: 0 26px 24px;
}
.faq__answer p {
  font-size: 0.97rem;
  color: rgba(80, 10, 57, 0.7);
}

/* ============ CTA ============ */
.cta {
  background: var(--beterraba);
  padding: clamp(100px, 13vw, 170px) 24px;
  position: relative;
  overflow: hidden;
  border-radius: 60px 60px 0 0;
}
.cta__bg { position: absolute; inset: 0; }
.cta__blob {
  position: absolute;
  width: 80vw; height: 80vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 3, 128, 0.4), transparent 65%);
  bottom: -40%; right: -25%;
  filter: blur(70px);
  animation: blob-float 18s ease-in-out infinite alternate;
}
.cta__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
  position: relative;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  color: var(--branco);
  margin-bottom: 24px;
}
.cta__title em { font-style: italic; color: #f7b8dd; }
.cta__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.cta__points {
  display: grid; gap: 10px;
  color: #f7b8dd;
  font-weight: 600; font-size: 0.95rem;
}

.cta__form {
  background: var(--branco);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  display: grid; gap: 18px;
}
.field { position: relative; }
.field input, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--beterraba);
  background: var(--off);
  border: 1.5px solid rgba(80, 10, 57, 0.12);
  border-radius: 14px;
  padding: 24px 18px 10px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.field select { cursor: pointer; }
.field--select::after {
  content: "";
  position: absolute; right: 18px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field label {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: rgba(80, 10, 57, 0.45);
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
}
.field input:focus, .field select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(190, 3, 128, 0.12);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--magenta);
}
.field input.error { border-color: #e0245e; }

.btn--submit {
  background: var(--magenta); color: var(--branco);
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
  box-shadow: 0 12px 36px var(--magenta-glow);
  position: relative;
}
.btn--submit:hover { background: #a8026f; }
.btn--submit .btn__success {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: var(--beterraba);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
}
.btn--submit.sent .btn__success { transform: translateY(0); }
.cta__disclaimer {
  font-size: 0.78rem;
  color: rgba(80, 10, 57, 0.5);
  text-align: center;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--beterraba-deep);
  color: var(--branco);
  padding: 72px 24px 0;
}
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__logo-svg {
  width: 88px;
  height: auto;
  aspect-ratio: 1247 / 690;
  color: var(--branco);
  display: block;
  margin-bottom: 18px;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  font-size: 0.95rem;
}
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col strong {
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  width: fit-content;
  position: relative;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--magenta-soft); }
.footer__bar {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 32px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__hash {
  font-weight: 700; color: var(--magenta-soft);
  white-space: nowrap;
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__phone svg { width: 16px; height: 16px; color: var(--branco); opacity: 0.9; }

/* Corretora parceira */
.footer__partner-logo {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.3s;
}
.footer__partner-logo:hover { opacity: 1; }

/* Desenvolvido por O1ne Data */
.footer__dev {
  display: inline-flex;
  align-items: center; gap: 10px;
}
.o1ne {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: -0.03em;
  color: var(--branco);
  display: inline-flex;
  align-items: center;
  transform: skewX(-4deg);
}
.o1ne i {
  font-style: italic;
  color: var(--branco);
}
.o1ne em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.62em;
  letter-spacing: 0.22em;
  color: var(--beterraba-deep);
  background: var(--branco);
  padding: 3px 7px 2px 9px;
  border-radius: 2px;
  margin-left: 7px;
  transform: skewX(-2deg);
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whats-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 950;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--beterraba);
  color: var(--branco);
  display: grid; place-items: center;
  box-shadow: 0 12px 36px rgba(80, 10, 57, 0.35);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s;
}
.whats-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--beterraba);
  animation: ping 2.2s var(--ease-out) infinite;
}
.whats-float:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 44px rgba(80, 10, 57, 0.42);
}
.whats-float svg { width: 30px; height: 30px; color: var(--branco); }
.whats-float__tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--beterraba);
  color: var(--branco);
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px; border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.whats-float:hover .whats-float__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 960px) {
  /* No mobile, a foto preenche o topo focando no rosto e o texto desce */
  .hero {
    justify-content: flex-end;
    padding-top: calc(var(--header-h) + 24px);
  }
  .hero__photo {
    background-position: 60% 22%;
    background-size: cover;
  }
  .hero__overlay {
    background: linear-gradient(180deg,
      rgba(253, 247, 251, 0) 0%,
      rgba(253, 247, 251, 0.4) 30%,
      rgba(253, 247, 251, 0.88) 50%,
      rgba(253, 247, 251, 0.98) 64%);
  }

  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }

  .agora__inner, .app__inner, .cta__inner, .faq__inner {
    grid-template-columns: 1fr;
  }
  .app__inner { gap: 64px; }
  .app__phone-wrap { order: 2; }
  .faq__head { position: static; }
  .chart__bars { height: 240px; }
  .chart__bar:nth-child(7), .chart__bar:nth-child(8), .chart__bar:nth-child(9) { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 520px) {
  .topbar__label { display: none; }
  .topbar__inner { gap: 16px; }
  .topbar__link { font-size: 0.78rem; }
}

@media (max-width: 560px) {
  .hero__stats { gap: 24px; }
  .hero__stat-label br { display: none; }
  .chart__bar:nth-child(5), .chart__bar:nth-child(6) { display: none; }
  .marquee__item { font-size: 1.15rem; }
  .reajuste__highlight { text-align: center; flex-direction: column; gap: 8px; }
  .reajuste__highlight p br { display: none; }
}

/* ============ ACESSIBILIDADE ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-hero { opacity: 1; transform: none; }
  .chat__msg, .chat__typing, .chat__call { opacity: 1; transform: none; }
  .chart__bar { transform: scaleY(1); }
}
