/* ============================================
   ACADEMIA SPESSATTO — Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray: #888;
  --color-gray-dark: #2f2b2c;
  --color-accent: #ed1c23;
  --color-accent-dark: #c9181e;
  --color-accent-light: rgba(237, 28, 35, 0.1);

  --font-primary: 'Poppins', sans-serif;

  --header-height: 80px;
  --container-width: 1200px;
  --section-padding: 120px;
  --section-padding-mobile: 80px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Recorte do logo composto oficial (wordmark ~46% / emblema ~54%) */
  --logo-split: 46.09%;
  --logo-dark-w: 682;
  --logo-dark-wordmark-h: 472;
  --logo-dark-emblem-h: 552;
  --logo-light-w: 802;
  --logo-light-emblem-h: 552;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--color-gray);
  font-weight: 400;
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section__subtitle {
  margin: 0 auto;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 28, 35, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn--outline-dark:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
}

.btn--dark:hover {
  background: transparent;
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn--large {
  padding: 18px 40px;
  font-size: 0.9375rem;
}

/* Ripple Effect */
.btn--ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
}

/* ============================================
   LOGO CROP — logo composto oficial (sem editar arquivo)
   ============================================ */
.logo-crop {
  display: block;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}

.logo-crop > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.72) 0%, transparent 100%);
  opacity: 1;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.header.scrolled::before {
  opacity: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  transition: opacity var(--transition-fast);
}

.nav__logo:hover {
  opacity: 0.88;
}

.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

/* legado */
.nav__logo-mark {
  height: 44px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.nav__logo-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav__logo:hover .nav__logo-name {
  color: var(--color-accent);
}

/* legado */
.nav__logo-emblem {
  width: 58px;
  aspect-ratio: var(--logo-dark-w) / var(--logo-dark-emblem-h);
}

.nav__logo-emblem img {
  transform: translateY(calc(-1 * var(--logo-split)));
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.nav__logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* legado — removido do HTML */
.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
}

.nav__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   IMPACT HERO
   ============================================ */
.impact-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  padding:
    calc(var(--header-height) + 32px + env(safe-area-inset-top, 0px))
    0
    calc(88px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.impact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.impact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.impact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 20%, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.92) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.88) 100%);
  z-index: 1;
}

.impact-hero__content {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  width: 100%;
  max-width: 960px;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  padding: 8px 24px 24px;
}

.impact-hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.impact-hero__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.impact-hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.75;
}

.impact-hero__reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.impact-hero__reason {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition-base), background var(--transition-base);
}

.impact-hero__reason:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(237, 28, 35, 0.35);
}

.impact-hero__reason i {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.impact-hero__reason h2 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.impact-hero__reason p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  font-weight: 300;
}

.impact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.impact-hero .hero__scroll {
  z-index: 2;
}

.impact-hero__content .reveal:nth-child(1) { transition-delay: 0.05s; }
.impact-hero__content .reveal:nth-child(2) { transition-delay: 0.12s; }
.impact-hero__content .reveal:nth-child(3) { transition-delay: 0.2s; }
.impact-hero__content .reveal:nth-child(4) { transition-delay: 0.32s; }
.impact-hero__content .reveal:nth-child(5) { transition-delay: 0.44s; }

.impact-hero__content .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.impact-hero__content .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BRAND HERO (segunda dobra)
   ============================================ */
.brand-hero {
  position: relative;
  background: var(--color-black);
  padding:
    calc(var(--section-padding) * 0.75)
    0
    calc(var(--section-padding) * 0.85);
  overflow: hidden;
}

.brand-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(237, 28, 35, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(47, 43, 44, 0.4) 0%, var(--color-black) 100%);
  pointer-events: none;
}

.brand-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.brand-hero .hero__brand {
  margin-bottom: 24px;
}

.brand-hero .hero__text {
  margin-bottom: 32px;
}

.brand-hero__content .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.brand-hero__content .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.brand-hero__content .reveal:nth-child(1) { transition-delay: 0.05s; }
.brand-hero__content .reveal:nth-child(2) { transition-delay: 0.15s; }
.brand-hero__content .reveal:nth-child(3) { transition-delay: 0.25s; }
.brand-hero__content .reveal:nth-child(4) { transition-delay: 0.35s; }
.brand-hero__content .reveal:nth-child(5) { transition-delay: 0.45s; }
.brand-hero__content .reveal:nth-child(6) { transition-delay: 0.55s; }

/* ============================================
   HERO (legado — classes compartilhadas)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  padding:
    calc(var(--header-height) + 28px + env(safe-area-inset-top, 0px))
    0
    calc(96px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 32%, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.9) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  width: 100%;
  max-width: 780px;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  padding: 16px 24px 32px;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.hero__brand-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 10px;
}

.hero__brand-sub {
  margin: 10px 0 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__brand-wordmark {
  display: block;
  width: min(280px, 78vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.hero__brand-emblem {
  position: relative;
  width: min(220px, 68vw);
  margin-top: 4px;
}

.hero__brand-emblem::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(237, 28, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__brand-emblem img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero__tag::before,
.hero__tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(237, 28, 35, 0.5);
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero__text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero__note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll:hover {
  color: var(--color-white);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--color-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  letter-spacing: 0.02em;
}

.trust-bar__item i {
  color: var(--color-accent);
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Hero entrance animation */
.hero__content .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero__content .reveal:nth-child(2) { transition-delay: 0.15s; }
.hero__content .reveal:nth-child(3) { transition-delay: 0.28s; }
.hero__content .reveal:nth-child(4) { transition-delay: 0.4s; }
.hero__content .reveal:nth-child(5) { transition-delay: 0.52s; }

.hero__content .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.hero__content .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  background: var(--color-white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sobre__image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.sobre__image-wrapper:hover img {
  transform: scale(1.05);
}

.sobre__badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--color-white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(237, 28, 35, 0.12);
}

.sobre__badge-logo {
  width: 148px;
  aspect-ratio: var(--logo-light-w) / var(--logo-light-emblem-h);
}

.sobre__badge-logo img {
  transform: translateY(calc(-1 * var(--logo-split)));
}

.sobre__badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.sobre__badge-text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
}

.sobre__text {
  color: var(--color-gray-dark);
  margin-bottom: 20px;
  font-weight: 300;
}

.sobre__content .btn {
  margin-top: 16px;
}

/* ============================================
   MODALIDADES
   ============================================ */
.modalidades {
  background: var(--color-gray-light);
}

.modalidades__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.modalidade-card {
  padding: 40px 28px;
  text-align: center;
  border: 1px solid transparent;
}

.modalidade-card:hover {
  border-color: rgba(237, 28, 35, 0.15);
}

.modalidade-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.modalidade-card:hover .modalidade-card__icon {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.1);
}

.modalidade-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.modalidade-card__desc {
  font-size: 0.9375rem;
  color: var(--color-gray);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.6;
}

.modalidade-card__btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

/* ============================================
   HORÁRIOS
   ============================================ */
.horarios {
  background: var(--color-white);
}

.horarios__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.horarios__filter-btn {
  padding: 10px 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid #e8e8e8;
  border-radius: 100px;
  background: var(--color-white);
  color: var(--color-gray-dark);
  transition: all var(--transition-base);
}

.horarios__filter-btn:hover {
  border-color: var(--color-black);
  color: var(--color-black);
}

.horarios__filter-btn.active {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.horarios__empty {
  text-align: center;
  padding: 40px 0;
  color: var(--color-gray);
}

.horarios__empty a {
  color: var(--color-accent);
  font-weight: 600;
}

.horario-card.hidden {
  display: none;
}

.horarios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.horario-card {
  padding: 32px 28px;
  border: 1px solid #eee;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  cursor: pointer;
}

@media (hover: hover) {
  .horario-card:hover {
    border-color: var(--color-accent);
  }

  .horario-card:hover .horario-card__action {
    color: var(--color-accent);
  }
}

.horario-card__emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.horario-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.horario-card__idade {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.horario-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-gray-dark);
}

.horario-card__info span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.horario-card__info i {
  color: var(--color-accent);
  width: 16px;
}

.horario-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  width: 100%;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray);
  transition: color var(--transition-base);
}

.horario-card--info {
  cursor: default;
}

.horario-card--info:hover {
  border-color: #eee;
}

@media (hover: hover) {
  .horario-card--info:hover {
    border-color: rgba(237, 28, 35, 0.15);
  }
}

.horarios__cta {
  text-align: center;
  margin-top: 56px;
}

.diferenciais__cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  background: var(--color-gray-light);
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diferencial-card {
  padding: 40px 32px;
  text-align: center;
}

.diferencial-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.diferencial-card:hover .diferencial-card__icon {
  background: var(--color-accent);
  color: var(--color-white);
}

.diferencial-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.diferencial-card__desc {
  font-size: 0.9375rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.6;
}

.diferenciais__grid--compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.diferencial-card--compact {
  padding: 0;
  text-align: left;
  background: none;
  border: none;
  box-shadow: none;
}

.diferencial-card--compact .diferencial-card__icon {
  margin: 0 0 16px;
  width: 48px;
  height: 48px;
  font-size: 1.125rem;
  border-width: 1px;
}

.diferencial-card--compact .diferencial-card__title {
  font-size: 1rem;
  margin-bottom: 8px;
}

.diferencial-card--compact .diferencial-card__desc {
  font-size: 0.875rem;
}

/* ============================================
   COMO COMEÇAR (Passos — legado)
   ============================================ */
.passos {
  background: var(--color-gray-light);
}

.passos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.passo-card {
  position: relative;
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  overflow: hidden;
}

.passo-card__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(237, 28, 35, 0.08);
  line-height: 1;
}

.passo-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 1.375rem;
}

.passo-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.passo-card__desc {
  font-size: 0.9375rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================
   GALERIA
   ============================================ */
.galeria {
  background: var(--color-white);
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.galeria__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  background: none;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.galeria__item:hover img {
  transform: scale(1.08);
}

.galeria__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--color-white);
  font-size: 1.5rem;
}

.galeria__item:hover .galeria__overlay {
  opacity: 1;
}

/* ============================================
   DEPOIMENTOS / SLIDER
   ============================================ */
.depoimentos {
  background: var(--color-gray-light);
}

.slider {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider__slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 16px;
}

.depoimento-card {
  background: var(--color-white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.depoimento-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--color-accent-light);
}

.depoimento-card__nome {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.depoimento-card__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.depoimento-card__texto {
  font-size: 1rem;
  color: var(--color-gray-dark);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--color-black);
}

.slider__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.slider__dots {
  display: flex;
  gap: 8px;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  transition: all var(--transition-base);
  cursor: pointer;
}

.slider__dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: linear-gradient(145deg, #b8161c 0%, var(--color-accent) 45%, #c9181e 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__brand-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: color var(--transition-fast);
}

.footer__brand-name::before {
  content: '';
  width: 3px;
  height: 1.25em;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.footer__brand-name:hover {
  color: var(--color-accent);
}

.footer__logo {
  display: block;
  margin-bottom: 20px;
}

.footer__logo-mark {
  width: min(200px, 72vw);
  aspect-ratio: var(--logo-dark-w) / var(--logo-dark-wordmark-h);
}

.footer__logo-mark img {
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

.footer__desc {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.125rem;
  color: var(--color-white);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.footer__links ul li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  font-weight: 300;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__contact ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  font-weight: 300;
  align-items: flex-start;
}

.footer__contact i {
  color: var(--color-accent);
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

.footer__contact a:hover {
  color: var(--color-accent);
}

.footer__map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}

.footer__map-link:hover {
  gap: 12px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 300;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer__legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__legal a:hover,
.footer__legal a[aria-current="page"] {
  color: var(--color-accent);
}

.footer__bottom-inner--legal {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal__body {
  max-width: 760px;
  margin: 0 auto;
}

.legal__body code {
  font-size: 0.875em;
  background: var(--color-gray-light);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox:not([hidden]).active {
  display: flex;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  animation: lightboxIn 0.4s ease;
}

.lightbox__counter {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.lightbox__nav:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: none;
  }
}

/* ============================================
   STICKY CTA (Mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #eee;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #25D366;
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.sticky-cta__btn:hover {
  background: #1fb855;
}

body.has-sticky-cta {
  padding-bottom: 72px;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }

  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-4px);
}

/* ============================================
   CURSOS
   ============================================ */
.cursos {
  background: var(--color-gray-light);
}

.cursos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.curso-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
  height: 100%;
}

@media (hover: hover) {
  .curso-card:hover {
    border-color: rgba(237, 28, 35, 0.2);
  }
}

.curso-card--destaque {
  border: 2px solid var(--color-accent);
  background: linear-gradient(180deg, #fff 0%, rgba(237, 28, 35, 0.03) 100%);
}

.curso-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}

.curso-card__tag--gold {
  background: var(--color-black);
}

.curso-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 1.375rem;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

@media (hover: hover) {
  .curso-card:hover .curso-card__icon {
    background: var(--color-accent);
    color: var(--color-white);
  }
}

.curso-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.curso-card__idade {
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.curso-card__desc {
  font-size: 0.9375rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.curso-card__list {
  list-style: none;
  margin-bottom: 24px;
}

.curso-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-gray-dark);
  margin-bottom: 8px;
  font-weight: 400;
}

.curso-card__list i {
  color: var(--color-accent);
  font-size: 0.75rem;
}

.curso-card__btn {
  width: 100%;
  margin-top: auto;
  padding: 12px 20px;
  font-size: 0.8125rem;
}

/* Cursos — layout clean */
.cursos__grid--clean {
  grid-template-columns: repeat(3, 1fr);
}

.curso-card--clean {
  background: var(--color-white);
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.curso-card--clean .curso-card__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.curso-card--clean .curso-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
}

.curso-card--clean .curso-card__idade {
  font-size: 0.8125rem;
  margin-bottom: 10px;
}

.curso-card--clean .curso-card__desc {
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.cursos__footer,
.horarios__footer {
  text-align: center;
  margin-top: 48px;
  font-size: 0.9375rem;
  color: var(--color-gray);
  font-weight: 300;
}

.cursos__footer a,
.horarios__footer a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cursos__footer a:hover,
.horarios__footer a:hover {
  color: var(--color-black);
}

/* ============================================
   EXPERIÊNCIA (Benefícios unificados)
   ============================================ */
.experiencia {
  background: var(--color-white);
}

.experiencia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.experiencia__lead {
  font-size: 1rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}

.experiencia__list {
  list-style: none;
}

.experiencia__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--color-gray-dark);
  margin-bottom: 14px;
  line-height: 1.5;
}

.experiencia__list i {
  color: var(--color-accent);
  font-size: 0.625rem;
  margin-top: 7px;
  flex-shrink: 0;
}

.experiencia__quote {
  background: var(--color-gray-light);
  border-left: 3px solid var(--color-accent);
  padding: 36px 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.experiencia__quote h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.experiencia__quote p {
  font-size: 0.9375rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 12px;
}

.experiencia__note {
  font-size: 0.875rem !important;
  color: var(--color-gray-dark) !important;
  font-weight: 400 !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* ============================================
   BENEFÍCIOS (legado — removido do HTML)
   ============================================ */
.beneficios {
  background: var(--color-white);
}

.beneficios__intro {
  max-width: 680px;
  margin-bottom: 56px;
}

.beneficios__lead {
  font-size: 1.125rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 16px;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.beneficio-item {
  padding: 32px 0;
  border-top: 2px solid var(--color-gray-light);
}

.beneficio-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.beneficio-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.beneficio-item p {
  font-size: 0.9375rem;
  color: var(--color-gray);
  font-weight: 300;
  line-height: 1.65;
}

.beneficios__cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #eee;
}

.beneficios__cta p {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  margin-bottom: 24px;
  font-weight: 500;
}

/* ============================================
   KARATÊ É PARA TODOS
   ============================================ */
.para-todos {
  background: var(--color-black);
  color: var(--color-white);
}

.para-todos .section__tag {
  color: var(--color-accent);
}

.para-todos .section__title {
  color: var(--color-white);
}

.para-todos .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
}

.para-todos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.para-todos-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition-base);
}

@media (hover: hover) {
  .para-todos-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(237, 28, 35, 0.4);
    transform: translateY(-4px);
  }
}

.para-todos-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.para-todos-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.para-todos-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}

.para-todos-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.03em;
  transition: gap var(--transition-fast);
}

.para-todos-card__link:hover {
  gap: 12px;
  color: var(--color-white);
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: var(--color-accent);
  padding: 40px 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-white);
}

.cta-strip__text strong {
  font-size: 1.25rem;
  font-weight: 700;
}

.cta-strip__text span {
  font-size: 0.9375rem;
  opacity: 0.85;
  font-weight: 300;
}

.cta-strip .btn--primary {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
  flex-shrink: 0;
}

.cta-strip .btn--primary:hover {
  background: transparent;
  color: var(--color-white);
}

/* ============================================
   FAQ HOME
   ============================================ */
.faq-home {
  background: var(--color-gray-light);
}

.faq-home__grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-home__cta {
  text-align: center;
  margin-top: 40px;
}

.faq-home__cta p {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 16px;
}

/* ============================================
   ARTICLE PAGE (História do Karatê)
   ============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--color-black) url('../img/hero.jpg') center/cover no-repeat;
  color: var(--color-white);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero__lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-hero__meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.article__toc {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  background: var(--color-gray-light);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.article__toc-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--color-black);
}

.article__toc-list {
  list-style: none;
  counter-reset: toc;
}

.article__toc-list li {
  margin-bottom: 10px;
}

.article__toc-list a {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  font-weight: 400;
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.article__toc-list a:hover {
  color: var(--color-accent);
}

.article__body {
  max-width: 720px;
}

.article__section {
  margin-bottom: 56px;
}

.article__section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--color-black);
}

.article__section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--color-black);
}

.article__section p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-gray-dark);
  font-weight: 300;
  margin-bottom: 20px;
}

.article__quote {
  border-left: 4px solid var(--color-accent);
  padding: 24px 28px;
  margin: 32px 0;
  background: var(--color-gray-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article__quote p {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-black);
  margin-bottom: 8px;
}

.article__quote cite {
  font-size: 0.875rem;
  color: var(--color-gray);
  font-style: normal;
}

.article__list {
  margin: 16px 0 24px 20px;
}

.article__list li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-gray-dark);
  font-weight: 300;
  margin-bottom: 10px;
}

.article__list--ordered {
  list-style: decimal;
}

.article__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.article__card {
  background: var(--color-gray-light);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.article__card i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.article__card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.article__card p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--color-accent);
}

.timeline__item {
  position: relative;
  padding-bottom: 36px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline__year {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.timeline__content h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.timeline__content p {
  font-size: 0.9375rem;
  margin: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 400;
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item summary:hover {
  background: var(--color-gray-light);
}

.faq__item p {
  padding: 0 24px 18px;
  font-size: 0.9375rem;
  margin: 0;
}

.article__cta {
  background: var(--color-black);
  color: var(--color-white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 64px;
}

.article__cta h2 {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.article__cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 28px;
}

.article__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Homepage — teaser história */
.historia-teaser {
  background: var(--color-black);
  color: var(--color-white);
}

.historia-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.historia-teaser__content .section__tag {
  color: var(--color-accent);
}

.historia-teaser__content .section__title {
  color: var(--color-white);
}

.historia-teaser__content .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.historia-teaser__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 32px;
}

.historia-teaser__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.historia-teaser__topic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.historia-teaser__topic i {
  color: var(--color-accent);
  font-size: 0.75rem;
}

.historia-teaser__visual {
  position: relative;
}

.historia-teaser__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.historia-teaser__card blockquote {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}

.historia-teaser__card cite {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .article__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article__toc {
    position: static;
  }

  .article__cards {
    grid-template-columns: 1fr;
  }

  .historia-teaser__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 130px 0 60px;
  }

  .article__cta {
    padding: 36px 24px;
  }

  .article__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .article__cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}


/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 96px;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .passos__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cursos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cursos__grid--clean {
    grid-template-columns: repeat(2, 1fr);
  }

  .experiencia__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diferenciais__grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .para-todos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__grid {
    gap: 48px;
  }

  .sobre__image-wrapper img {
    height: 480px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Nav */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --header-height: 70px;
  }

  .nav__logo-img {
    height: 28px;
  }

  .impact-hero {
    padding-top: calc(var(--header-height) + 20px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .impact-hero__content {
    padding: 4px 20px 16px;
  }

  .impact-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 16px;
  }

  .impact-hero__lead {
    margin-bottom: 28px;
    font-size: 0.9375rem;
  }

  .impact-hero__reasons {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .impact-hero__reason {
    padding: 16px 14px;
  }

  .impact-hero__reason h2 {
    font-size: 0.8125rem;
  }

  .impact-hero__reason p {
    font-size: 0.75rem;
  }

  .impact-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .impact-hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .brand-hero {
    padding: var(--section-padding-mobile) 0;
  }

  .brand-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 20px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .hero__content {
    padding: 12px 20px 24px;
  }

  .hero__brand-wordmark {
    width: min(240px, 85vw);
  }

  .hero__brand-emblem {
    width: min(190px, 72vw);
    margin-top: 2px;
  }

  .hero__brand-sub {
    margin: 8px 0 10px;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
  }

  .hero__brand {
    margin-bottom: 20px;
  }

  .hero__title {
    font-size: clamp(1.875rem, 7.5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero__text {
    margin-bottom: 28px;
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .hero__tag {
    margin-bottom: 16px;
  }

  .hero__scroll {
    bottom: 24px;
  }

  .hero__tag::before,
  .hero__tag::after {
    width: 16px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 0;
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__cta {
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__badge {
    right: 16px;
    bottom: 16px;
  }

  .sobre__image-wrapper img {
    height: 400px;
  }

  .horarios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .depoimento-card {
    padding: 36px 24px;
  }

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip .btn--primary {
    width: 100%;
    max-width: 320px;
  }

  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }

  body.has-sticky-cta {
    padding-bottom: 72px;
  }

  .back-to-top {
    bottom: 88px;
    left: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cursos__grid,
  .cursos__grid--clean,
  .beneficios__grid,
  .para-todos__grid,
  .horarios__grid,
  .diferenciais__grid,
  .diferenciais__grid--compact {
    grid-template-columns: 1fr;
  }

  .trust-bar__item {
    font-size: 0.75rem;
  }

  .galeria__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta {
    padding: 72px 0;
  }

  .section__header {
    margin-bottom: 48px;
  }
}

/* Reduced Motion */
@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 {
    opacity: 1;
    transform: none;
  }
}
