/* =========================================================
   1. VARIÁVEIS GLOBAIS
   Altere cores, fontes e larguras aqui para mudar todo o site.
   ========================================================= */
:root {
  --purple-deep: #53277e;
  --purple: #7c3aed;
  --purple-dark: #32144e;
  --yellow: #f6c945;
  --cream: #faf8fc;
  --white: #ffffff;
  --ink: #211b28;
  --muted: #665f6e;
  --line: rgba(83, 39, 126, 0.13);
  --shadow: 0 20px 60px rgba(50, 20, 78, 0.12);
  --radius-small: 16px;
  --radius: 28px;
  --container: 1200px;
  --font-title: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* RESET: deixa a aparência mais consistente entre navegadores. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.65rem, 5.2vw, 5.35rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.05rem, 3.8vw, 3.75rem);
  letter-spacing: -0.05em;
}

h3 {
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

/* Classes utilitárias usadas em várias seções. */
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--yellow);
  font-weight: 700;
}

.skip-link:focus {
  top: 20px;
}

/* Pequenos títulos acima dos títulos principais. */
.kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f6c945;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker.light {
  color: var(--yellow);
}

.section-heading {
  max-width: 590px;
}

.section-heading h2 span {
  color: #00B3AF;
}

.section-heading>p {
  font-size: 1.06rem;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

/* Botões: todos têm altura mínima acessível para toque. */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.25);
}

.button-primary:hover {
  background: #6d28d9;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.34);
}

.button-secondary {
  color: var(--purple-deep);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(246, 201, 69, 0.19);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-small {
  min-height: 46px;
  padding: 11px 19px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--purple);
  font-weight: 800;
}

/* =========================================================
   2. CABEÇALHO E MENU
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 252, 0.88);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(50, 20, 78, 0.07);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 15px 15px 15px 4px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
}

.brand-name {
  font-size: 0.72rem;
  line-height: 1.22;
  text-transform: uppercase;
}

.brand-name strong {
  color: #f6c945;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.main-nav a {
  color: #4f4856;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--purple);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--purple-deep);
}

/* =========================================================
   3. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 78px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #00B3AF;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00B3AF;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
}

.hero h1 span {
  color: #00B3AF;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: clamp(1.02rem, 1.4vw, 1.17rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microcopy {
  margin: 13px 0 27px 5px;
  font-size: 0.79rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.trust-number {
  color: #00B3AF;
  font-family: var(--font-title);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 180px 180px 38px 38px;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(50, 20, 78, 0.42));
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.image-tag {
  position: absolute;
  right: 30px;
  bottom: 26px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  bottom: 65px;
  left: -42px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 19px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  font-size: 0.74rem;
  line-height: 1.4;
}

.floating-card strong {
  display: block;
  color: var(--purple-deep);
  font-size: 0.84rem;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-size: 1.2rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 90px;
  right: -150px;
  width: 430px;
  height: 430px;
  background: rgba(246, 201, 69, .2);
}

.hero-orb-two {
  bottom: 40px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(124, 58, 237, .08);
}

/* Faixa roxa logo depois do hero. */
.trust-strip {
  color: var(--white);
  background: var(--purple-deep);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-list div {
  display: flex;
  min-height: 125px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.trust-list div:last-child {
  border-right: 0;
}

.trust-list strong {
  color: var(--yellow);
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.trust-list span {
  color: rgba(255, 255, 255, .78);
  font-size: 0.76rem;
}

/* =========================================================
   4. IDENTIFICAÇÃO E MODALIDADES
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 95px;
  align-items: start;
}

.intro-image {
  width: 100%;
  height: 275px;
  margin-top: 35px;
  object-fit: cover;
  border-radius: var(--radius);
}

.benefit-list {
  display: grid;
  gap: 5px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article>span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(124, 58, 237, .08);
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
}

.benefit-list h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.benefit-list p {
  margin: 0;
  font-size: 0.91rem;
}

.highlight-note {
  margin: 25px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  color: #00B3AF;
  background: var(--white);
  font-weight: 700;
}

.modalities-section {
  color: var(--white);
  background: var(--purple-dark);
}

.modalities-section .section-heading h2 span {
  color: var(--yellow);
}

.modalities-section .section-heading p {
  color: rgba(255, 255, 255, .65);
}

.modality-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 315px;
  gap: 16px;
}

.modality-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

.modality-card.large {
  grid-row: span 2;
}

.modality-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  transition: transform 600ms cubic-bezier(.2, .8, .2, 1);
}

.modality-card:hover img {
  transform: scale(1.045);
}

.modality-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(24, 8, 38, .9));
}

.card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 25px;
}

.card-overlay span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card-overlay h3 {
  margin: 7px 0 6px;
  font-size: 1.34rem;
}

.card-overlay p {
  margin: 0;
  color: white;
  font-size: 15px;
  line-height: 1.5;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.section-cta p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 0.76rem;
}

/* =========================================================
   5. SOBRE, BENEFÍCIOS E PROCESSO
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.about-collage {
  position: relative;
  min-height: 640px;
}

.about-main {
  width: 78%;
  height: 570px;
  object-fit: cover;
  border-radius: 150px 150px 24px 24px;
  box-shadow: var(--shadow);
}

.about-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 9px solid var(--cream);
  border-radius: 50%;
}

.about-badge {
  position: absolute;
  top: 35px;
  right: 9px;
  display: flex;
  width: 135px;
  height: 135px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--purple-deep);
  background: var(--yellow);
  text-align: center;
  transform: rotate(7deg);
}

.about-badge strong {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.about-badge span {
  font-size: .65rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-section blockquote {
  margin: 30px 0;
  padding: 22px 0 22px 23px;
  border-left: 4px solid var(--purple);
  color: var(--purple-deep);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
}

.dance-benefits {
  background: var(--white);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.icon-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.icon-card>span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 13px;
  color: var(--purple);
  background: rgba(124, 58, 237, .09);
  font-size: 1.25rem;
}

.icon-card h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.icon-card p {
  margin: 0;
  font-size: .87rem;
}

.legal-note,
.proof-warning {
  margin: 28px auto 0;
  color: #817989;
  font-size: .73rem;
  text-align: center;
}

.process-section {
  color: var(--white);
  background: var(--purple-deep);
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.process-intro {
  position: sticky;
  top: 130px;
}

.process-intro h2 span {
  color: var(--yellow);
}

.process-intro p {
  color: rgba(255, 255, 255, .7);
}

.process-intro small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, .52);
  font-size: .7rem;
}

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

.steps-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.steps-list li>span {
  color: var(--yellow);
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
}

.steps-list h3 {
  margin: 0 0 7px;
  font-size: 1.2rem;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
}

/* =========================================================
   6. COMUNIDADE, PROVAS E CTA
   ========================================================= */
.community-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

.community-quote {
  display: block;
  margin-top: 27px;
  color: var(--purple-deep);
  font-family: var(--font-title);
  font-size: 1.05rem;
}

.community-image {
  position: relative;
}

.community-image img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 28px 140px 28px 28px;
}

.event-pills {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.event-pills span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(50, 20, 78, .82);
  backdrop-filter: blur(8px);
  font-size: .69rem;
  font-weight: 700;
}

.proof-section {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 15px;
}

.proof-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(83, 39, 126, .14);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 16px 35px rgba(38, 17, 58, .1);
}

.proof-photo {
  background: #000;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: .55;
}

.proof-video {
  position: relative;
  background: #fff;
}

.proof-video iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  background: #fff;
}

.proof-external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-size: .76rem;
  font-weight: 700;
}

.proof-video>.proof-external-link {
  width: 100%;
  justify-content: center;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
}

.proof-testimonial {
  align-items: flex-start;
  padding: 32px;
  color: var(--ink);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(38, 17, 58, .16);
}

.proof-stars {
  margin-bottom: 18px;
  color: #f4b400;
  font-size: 1.2rem;
  letter-spacing: .08em;
}

.proof-testimonial blockquote {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.75;
}

.proof-author {
  display: grid;
  gap: 3px;
  margin-bottom: 24px;
}

.proof-author strong {
  color: var(--purple-deep);
  font-size: .88rem;
}

.proof-author small {
  color: var(--muted);
  font-size: .7rem;
}

.mid-cta {
  padding: 65px 0;
  color: var(--white);
  background: var(--purple);
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.mid-cta h2 {
  max-width: 730px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
}

.mid-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .75);
}

/* =========================================================
   7. OBJEÇÕES, MAPA E FAQ
   ========================================================= */
.objections-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.objections-section .section-heading img {
  width: 100%;
  height: 260px;
  margin-top: 32px;
  object-fit: cover;
  border-radius: 20px;
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-list details {
  border-bottom: 1px solid var(--line);
}

.accordion-list summary {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: .95rem;
  font-weight: 700;
  list-style: none;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary span {
  display: grid;
  min-width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: rgba(124, 58, 237, .08);
  transition: transform 180ms ease;
}

.accordion-list details[open] summary span {
  transform: rotate(45deg);
}

.accordion-list details p {
  max-width: 680px;
  margin: -2px 45px 22px 0;
  font-size: .88rem;
}

.location-section {
  padding: 100px 0;
  color: var(--white);
  background: var(--purple-dark);
}

.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.location-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}

.location-copy address {
  display: grid;
  margin: 28px 0;
  color: rgba(255, 255, 255, .7);
  font-style: normal;
}

.location-copy address strong {
  color: var(--white);
}

.contact-links {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-links a {
  color: var(--white);
  font-weight: 700;
}

.contact-links span {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: .67rem;
  font-weight: 500;
  text-transform: uppercase;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-wrap {
  overflow: hidden;
  height: 500px;
  border: 8px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: saturate(.65) contrast(1.05);
}

.final-cta {
  background: linear-gradient(135deg, rgba(246, 201, 69, .22), rgba(124, 58, 237, .09));
}

.final-cta-inner {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.final-cta-inner p {
  max-width: 610px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

.final-cta-inner small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 130px;
}

/* =========================================================
   8. RODAPÉ E CTA MOBILE
   ========================================================= */
.site-footer {
  padding: 75px 0 25px;
  color: var(--white);
  background: #1b0d27;
}

footer img {
     border-radius: 5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 55px;
}

.footer-brand .brand-mark {
  border-radius: 7px;
}

.footer-brand .brand-name strong {
  color: var(--white);
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
}

.footer-grid a {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom span {
  color: rgba(255, 255, 255, .38);
  font-size: .68rem;
}

.footer-bottom span span {
  display: inline;
}

.footer-bottom>span:last-child {
  text-align: right;
}

.footer-credit {
  color: rgba(255, 255, 255, .34);
  font-size: .61rem;
  text-align: center;
  white-space: nowrap;
}

.footer-credit a {
  color: rgba(255, 255, 255, .58);
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-credit a:hover {
  color: var(--purple);
}

.mobile-cta {
  display: none;
}

/* Animação progressiva ativada pelo JavaScript. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Barra lilás que acompanha a rolagem no topo da tela. */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2000;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--purple), var(--purple-deep));
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Transições dos elementos que recebem profundidade pelo JavaScript. */
.hero-visual,
.hero-orb {
  will-change: transform;
}

.hero-visual {
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(.2, .8, .2, 1);
}

.hero-orb {
  transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.floating-card {
  transform: translate3d(var(--parallax-x, 0),
      var(--parallax-y, 0),
      0);
  transition: transform 350ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.modality-card {
  transform-style: preserve-3d;
  transition:
    opacity 650ms ease,
    transform 650ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.modality-card:hover {
  box-shadow: 0 22px 45px rgba(15, 5, 24, 0.34);
}

/* A onda do clique fica presa dentro do formato de cada botão. */
.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-ripple {
  position: absolute;
  z-index: -1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: button-ripple 600ms ease-out forwards;
}

@keyframes button-ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(24);
  }
}

/* =========================================================
   9. TABLET
   ========================================================= */
@media (max-width: 980px) {
  .section {
    padding: 85px 0;
  }

  .main-nav {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .process-grid,
  .community-grid,
  .objections-grid,
  .location-grid,
  .faq-layout {
    gap: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr .82fr;
  }

  .hero-image-wrap img {
    height: 520px;
  }

  .floating-card {
    left: -22px;
  }

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

  .trust-list div:nth-child(3) {
    border-right: 0;
  }

  .trust-list div:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .modality-card.large {
    grid-row: span 1;
  }

  .about-grid,
  .community-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .about-collage {
    min-height: 530px;
  }

  .about-main {
    height: 470px;
  }

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

  .process-grid,
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-card:last-child {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid>div:last-child {
    display: none;
  }
}

/* =========================================================
   10. CELULAR
   ========================================================= */
@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
  }

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

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-14px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .main-nav a {
    min-height: 52px;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-text {
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-image-wrap {
    border-radius: 100px 100px 24px 24px;
  }

  .hero-image-wrap img {
    height: 430px;
  }

  .floating-card {
    bottom: 40px;
    left: -5px;
  }

  .hero-orb-one {
    width: 260px;
    height: 260px;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list div {
    min-height: 100px;
    padding: 19px 13px;
  }

  .trust-list div:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .13);
  }

  .trust-list div:nth-child(even) {
    border-right: 0;
  }

  .trust-list div:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .trust-list div:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .intro-grid,
  .about-grid,
  .process-grid,
  .community-grid,
  .objections-grid,
  .location-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-image {
    height: 225px;
  }

  .modality-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .section-cta {
    flex-direction: column;
    text-align: center;
  }

  .about-collage {
    min-height: 500px;
  }

  .about-main {
    height: 450px;
  }

  .about-badge {
    right: 0;
    width: 112px;
    height: 112px;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .faq-layout .section-heading {
    position: static;
  }

  .steps-list li {
    grid-template-columns: 55px 1fr;
  }

  .community-image img {
    height: 380px;
    border-radius: 24px 90px 24px 24px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card:last-child {
    grid-column: auto;
  }

  .proof-card {
    min-height: 260px;
  }

  .mid-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .objections-grid .section-heading {
    max-width: none;
  }

  .contact-links {
    flex-direction: column;
    gap: 14px;
  }

  .map-wrap {
    height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid>div:last-child {
    display: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
  }

  .footer-bottom>span:last-child {
    text-align: center;
  }

  .footer-credit {
    margin: 2px 0;
    white-space: normal;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    display: block;
    padding: 10px 12px;
    border-top: 1px solid var(--line);
    background: rgba(250, 248, 252, .96);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 54px;
  }
}

/* Respeita a preferência do usuário por menos movimento. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}
