/* ============================================================
   CARLSON GRACIE CALGARY — LP BETA
   Design tokens: extraidos de tokens-extraidos-lp-ref.md
   Mobile-first, semântico, production-grade
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors — palette: preto, branco, vermelho */
  --color-primary:        #CC0000;
  --color-primary-dark:   #A80000;
  --color-secondary:      #111111; /* preto — nav, hero, cta-mid, footer */
  --color-secondary-dark: #000000; /* preto puro — credibility bar */
  --color-accent:         #E8A020;
  --color-bg-primary:     #FFFFFF;
  --color-bg-secondary:   #F5F5F5;
  --color-bg-dark:        #111111; /* preto */
  --color-text-primary:   #1A1A1A;
  --color-text-light:     #FFFFFF;
  --color-text-muted:     #666666;
  --color-border:         #DDDDDD;
  --color-stars:          #F5A623;

  /* Typography — Prata (headlines, serifada) + Open Sans (body) */
  --font-headline: "Prata", Georgia, "Times New Roman", serif;
  --font-body:     "Open Sans", Arial, sans-serif;

  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold:    700;

  --fs-hero:    clamp(1.5rem, 3vw, 2.1rem);
  --fs-section: clamp(1.6rem, 3.5vw, 2.5rem);
  --fs-card:    clamp(1.1rem, 2.5vw, 1.375rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;

  /* Layout */
  --container-max: 1100px;
  --container-pad: 20px;

  /* Borders */
  --radius:    4px;
  --radius-lg: 8px;
  --radius-xl: 16px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   200ms ease;
  --transition-slow:   300ms ease-in-out;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   REDUCED MOTION — GLOBAL OVERRIDE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-hero > *,
  .scroll-reveal,
  .stagger-reveal > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.text-red    { color: var(--color-primary); }
.text-muted  { color: var(--color-text-muted); }

h1, h2, h3 {
  font-family: var(--font-headline);
  line-height: 1.15;
  font-weight: 400; /* Prata só possui peso 400 */
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container,
.nav__container,
.hero__container,
.credibility__container,
.pain__container,
.value-prop__container,
.testimonials__container,
.cta-mid__container,
.differentiators__container,
.how-it-works__container,
.team__container,
.faq__container,
.urgency__container,
.guarantee__container,
.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--color-text-light);
}

.btn--nav {
  padding: 10px 20px;
  font-size: var(--fs-small);
}

.btn--large {
  padding: 18px 36px;
  font-size: 1.0625rem;
}

.btn--light-border {
  border-color: rgba(255,255,255,0.4);
}

.btn--dark {
  background-color: #111111;
  color: var(--color-text-light);
  border-color: #111111;
}

.btn--dark:hover {
  background-color: #000000;
  border-color: #000000;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Stars */
.stars {
  color: var(--color-stars);
  font-size: 1.125rem;
  letter-spacing: 2px;
}
.stars--sm { font-size: 0.875rem; }

/* ============================================================
   SECTION 1 — NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-secondary);
  padding: var(--space-sm) 0;
  /* JS adds .nav--scrolled class to trigger shadow */
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.nav--scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logo placeholder box (visível enquanto asset não chega) */
.nav__logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 38px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.nav__logo-placeholder span {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav__logo-img--round {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.hero {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: var(--space-sm) 0 var(--space-xl);
  overflow: hidden;
  position: relative;
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Form always before bullets, regardless of screen size */
.hero__form         { order: 3; }
.hero__social-proof { order: 4; }
.hero__bullets      { order: 5; }

/* Mobile: form appears before bullets — form must be above fold */
@media (max-width: 899px) {
  /* Compact nav logo so hero gains vertical space */
  .nav__logo-img--round {
    height: 52px;
    width: 52px;
  }

  .hero {
    padding: 12px 0 var(--space-lg);
  }
  .hero__container {
    gap: var(--space-sm);
  }
  .hero__content {
    gap: 10px;
  }
  .hero__headline {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
  }
  .hero__form-field input {
    padding: 10px 14px;
  }
  .hero__form         { max-width: 100%; }
  .hero__image-wrapper {
    order: -1;
    max-height: 320px;
  }
  .hero__content {
    order: 1;
  }
}

/* Hero load animations */
.hero__headline {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out 0.1s forwards;
}

.hero__subheadline {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out 0.22s forwards;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  padding-left: var(--space-md);
  position: relative;
  opacity: 0;
  transform: translateY(12px);
}

.hero__bullets li:nth-child(1) { animation: fadeUp 0.5s ease-out 0.32s forwards; }
.hero__bullets li:nth-child(2) { animation: fadeUp 0.5s ease-out 0.4s forwards; }
.hero__bullets li:nth-child(3) { animation: fadeUp 0.5s ease-out 0.48s forwards; }

.hero__bullets li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  position: absolute;
  left: 0;
  top: 0;
}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.56s forwards;
}

.hero__form-row {
  display: flex;
  gap: var(--space-xs);
}

.hero__form-field {
  flex: 1;
}

.hero__form-field input {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text-primary);
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.hero__form-field input::placeholder {
  color: var(--color-text-muted);
}

.hero__form-field input:focus {
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.hero__form-field input:focus-visible {
  outline: none;
}

.hero__cta-subtext {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.55);
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.7s forwards;
}

.hero__social-proof a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__reviews-text strong {
  color: var(--color-text-light);
}

/* Hero image */
.hero__image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.65s ease-out 0.3s forwards;
  background-color: #0D0D0D;
  min-height: 280px;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image--desktop { display: none; }
.hero__image--mobile  { display: block; }

.hero__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #222222 0%, #111111 100%);
  border: 2px dashed rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
}

.hero__image-placeholder span {
  font-family: var(--font-headline);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* ============================================================
   SECTION 3 — CREDIBILITY BAR
   ============================================================ */
.credibility {
  background-color: var(--color-secondary-dark);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.credibility__label {
  font-family: var(--font-headline);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.45);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.credibility__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  align-items: center;
  justify-items: center;
}

.credibility__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.credibility__number {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
}

.credibility__text {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.credibility__intl-logo {
  max-height: 52px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.credibility__logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 52px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: var(--space-xs);
}

.credibility__logo-placeholder span {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* ============================================================
   SECTION 4 — PAIN POINT
   ============================================================ */
.pain {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
}

.pain__headline {
  font-size: var(--fs-section);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pain__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 720px;
  margin: 0 auto;
}

.pain__agitation,
.pain__solution {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pain__agitation p,
.pain__solution p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.pain__quote {
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.7;
}

.pain__solution {
  border-top: 2px solid var(--color-border);
  padding-top: var(--space-xl);
}

.pain__solution p strong {
  color: var(--color-text-primary);
}

/* ============================================================
   SECTION 5-7 — VALUE PROPS
   ============================================================ */
.value-prop {
  padding: var(--space-2xl) 0;
}

.value-prop--alt-bg {
  background-color: var(--color-bg-secondary);
}

.value-prop__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.value-prop__image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  min-height: 240px;
}

.value-prop__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-prop__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
}

.value-prop__image-placeholder span {
  font-family: var(--font-headline);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.8;
  padding: var(--space-md);
}

.value-prop__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.value-prop__number {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: var(--fw-bold);
  color: var(--color-border);
  line-height: 1;
  letter-spacing: -0.02em;
}

.value-prop__title {
  font-size: var(--fs-card);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

.value-prop__body {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================================
   SECTION 8 — TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
}

.testimonials__headline {
  font-size: var(--fs-section);
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Carousel wrapper */
.testimonials__carousel-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonials__track-container {
  flex: 1;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Arrow buttons */
.testimonials__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.testimonials__arrow:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-text-light);
}

/* Cards — flex children of the track */
.testimonial-card {
  flex: 0 0 calc(100% - 0px); /* mobile: 1 per view */
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.testimonial-card__name {
  font-family: var(--font-headline);
  font-weight: var(--fw-semibold);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: auto;
}

.testimonial-card__quote {
  font-size: var(--fs-small);
  line-height: 1.55;
  color: var(--color-text-primary);
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

/* ============================================================
   SECTION 9 — CTA INTERMEDIÁRIO
   ============================================================ */
.cta-mid {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-mid__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.cta-mid__headline {
  font-size: var(--fs-section);
  color: var(--color-text-light);
}

.cta-mid__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  line-height: 1.65;
}

/* CTA Mid — button override for red background */
.cta-mid .btn--primary {
  background-color: var(--color-text-light);
  color: var(--color-primary);
  border-color: var(--color-text-light);
}

.cta-mid .btn--primary:hover {
  background-color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
}

/* Pulse animation — fires once after entry */
/* Delay handled by JS setTimeout (800ms) — no CSS delay to avoid doubling */
@keyframes pulseOnce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  70%  { transform: scale(0.99); }
  100% { transform: scale(1); }
}

.btn--pulse.pulse-active {
  animation: pulseOnce 0.6s ease-in-out 1 forwards;
}

/* ============================================================
   SECTION 11 — DIFFERENTIATORS (dark, redesigned)
   ============================================================ */
.differentiators {
  padding: var(--space-2xl) 0;
  background-color: #0D0D0D;
}

.differentiators__headline {
  font-size: var(--fs-section);
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-light);
}

.differentiators__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.diff-card {
  background-color: #1A1A1A;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--color-primary);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.diff-card:hover {
  box-shadow: 0 12px 40px rgba(204,0,0,0.18);
  transform: translateY(-6px);
  border-color: rgba(204,0,0,0.35);
  border-top-color: var(--color-primary);
}

.diff-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(204,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-xs);
  transition: background var(--transition-base);
}

.diff-card:hover .diff-card__icon-wrap {
  background: rgba(204,0,0,0.18);
}

.diff-card__title {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-light);
}

.diff-card__body {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ============================================================
   SECTION 11 — HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
}

.how-it-works__headline {
  font-size: var(--fs-section);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.step__number {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
}

.step__title {
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
}

.step__body {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.step__arrow {
  display: none; /* visible on desktop */
  font-size: 2rem;
  color: var(--color-border);
  align-self: center;
}

/* ============================================================
   SECTION 12 — MEET THE TEAM
   ============================================================ */
.team {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-secondary);
}

.team__headline {
  font-size: var(--fs-section);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.team__subheadline {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.65;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.team-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  border-bottom: 1px dashed var(--color-border);
}

.team-card__photo-placeholder span {
  font-family: var(--font-headline);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.team-card__info {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.team-card__name {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
}

.team-card__title {
  font-size: var(--fs-small);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card__bio {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: var(--space-xs);
}

/* ============================================================
   SECTION 13 — FAQ
   ============================================================ */
.faq {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
}

.faq__headline {
  font-size: var(--fs-section);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  text-align: left;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-primary);
  background-color: var(--color-bg-secondary);
  /* No padding/margin/width changes — avoids layout reflow on hover */
}

.faq__icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  transition: transform var(--transition-slow);
  display: inline-block;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow), opacity var(--transition-slow);
  opacity: 0;
}

.faq__answer:not([hidden]) {
  opacity: 1;
  /* max-height set by JS */
}

.faq__answer p {
  padding: 0 0 var(--space-md);
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   SECTION 14 — URGÊNCIA
   ============================================================ */
.urgency {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.urgency__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.urgency__headline {
  font-size: var(--fs-section);
  color: var(--color-text-light);
}

.urgency__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  line-height: 1.65;
}

.urgency__subtext {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   SECTION 15 — GARANTIA
   ============================================================ */
.guarantee {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-secondary);
}

.guarantee__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  max-width: 640px;
}

.guarantee__badge {
  flex-shrink: 0;
}

.guarantee__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.guarantee__headline {
  font-size: var(--fs-section);
}

.guarantee__body {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   SECTION 16 — FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-secondary);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 0;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Logo placeholder box no footer (visível enquanto asset não chega) */
.footer__logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 38px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  margin-bottom: var(--space-xs);
}

.footer__logo-placeholder span {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__logo-round {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer__brand-name {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.2;
}

.footer__tagline {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.45);
}

.footer__section-title {
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer__address {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.footer__link {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__schedule-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer__schedule-list strong {
  color: rgba(255,255,255,0.85);
}

.footer__social-links {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--color-primary);
}

.footer__bottom {
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer__copyright {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal-link {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: rgba(255,255,255,0.7);
}

.footer__legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

/* Pending state — placeholder links and spans not yet active */
.footer__legal-link--pending,
.footer__social-link--pending {
  opacity: 0.45;
  cursor: default;
  font-style: italic;
}

/* ============================================================
   VALUE PROPS INTRO
   ============================================================ */
.value-props-intro {
  padding: var(--space-xl) 0 var(--space-md);
  background-color: var(--color-bg-secondary);
  text-align: center;
}

.value-props-intro__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.value-props-intro__headline {
  font-size: var(--fs-section);
  color: var(--color-text-primary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.2;
}

/* ============================================================
   SOCIAL PROOF — VIDEO TESTIMONIALS
   ============================================================ */
.video-testimonials {
  background-color: #0D0D0D;
  padding: var(--space-2xl) 0;
}

.video-testimonials__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.video-testimonials__headline {
  font-size: var(--fs-section);
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.video-testimonials__subheadline {
  font-size: 1.0625rem;
  text-align: center;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.video-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.video-card__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  background: #000;
  border: 1px solid rgba(255,255,255,0.07);
}

.video-card__caption {
  padding: var(--space-xs) 0;
}

.video-card__label {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.video-card__context {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.5);
  text-transform: capitalize;
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl) var(--container-pad);
}

.schedule__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.schedule__headline {
  font-family: var(--font-headline);
  font-size: var(--fs-section);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.schedule__subheadline {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.schedule__day-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
}

.schedule__day-name {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-primary);
}

.schedule__slots {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule__slot {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 5px 8px;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  background: rgba(0,0,0,0.03);
}

.schedule__time {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  min-width: 52px;
  flex-shrink: 0;
}

.schedule__class-name {
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

.schedule__slot--gi      { border-left-color: #1A1A1A; }
.schedule__slot--nogi    { border-left-color: #2563EB; }
.schedule__slot--muaythai{ border-left-color: #7C3AED; }
.schedule__slot--kids    { border-left-color: var(--color-accent); }
.schedule__slot--beginners { border-left-color: #16A34A; }
.schedule__slot--openmat { border-left-color: var(--color-primary); }

.schedule__note {
  margin-top: var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-align: center;
}

/* ============================================================
   FACILITY
   ============================================================ */
.facility {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--container-pad);
}

.facility__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.facility__headline {
  font-family: var(--font-headline);
  font-size: var(--fs-section);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.facility__subheadline {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.facility__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.facility__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-reveal utility classes (set by JS / GSAP) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(16px);
}

.scroll-reveal--left {
  opacity: 0;
  transform: translateX(-20px);
}

.scroll-reveal--right {
  opacity: 0;
  transform: translateX(20px);
}

.scroll-reveal--scale {
  opacity: 0;
  transform: scale(0.97);
}

/* ============================================================
   TABLET — 600px+
   ============================================================ */
@media (min-width: 600px) {
  .credibility__items {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__image-wrapper {
    min-height: 360px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px); /* 2 per view */
  }

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

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

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

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

  .facility__photo {
    height: 220px;
  }
}

/* ============================================================
   DESKTOP — 900px+
   ============================================================ */
@media (min-width: 900px) {

  /* Hero */
  .hero__container {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-2xl);
    min-height: 480px;
  }

  .hero__content {
    flex: 1;
    max-width: 540px;
  }

  .hero__image-wrapper {
    flex: 1;
    min-height: 480px;
    max-width: 560px;
  }

  .hero__image--desktop { display: block; }
  .hero__image--mobile  { display: none; }

  /* Value props alternate layout */
  .value-prop__container {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .value-prop__image-wrapper {
    flex: 1;
    min-height: 340px;
    max-width: 480px;
  }

  .value-prop__text {
    flex: 1;
    max-width: 480px;
  }

  .value-prop--reverse .value-prop__container {
    flex-direction: row-reverse;
  }

  /* Testimonials 3 per view */
  .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
  }

  /* Differentiators 3 col */
  .differentiators__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* How it works horizontal */
  .how-it-works__steps {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .step {
    flex: 1;
  }

  .step__arrow {
    display: flex;
    align-self: center;
    /* No padding-top — align-self: center handles vertical alignment */
  }

  /* Team 3 col (7 cards) */
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: var(--container-max);
  }

  /* Centra o 7º card quando está sozinho na última linha */
  .team__grid .team-card:last-child:nth-child(3n+1) {
    grid-column: 2;
  }

  /* Video testimonials 3 col */
  .video-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Guarantee horizontal */
  .guarantee__container {
    flex-direction: row;
    text-align: left;
    max-width: 720px;
  }

  /* Footer 4 col (schedule removed) */
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  /* Schedule 6 col — one per day */
  .schedule__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ============================================================
   HERO FORM — SUCCESS & ERROR STATES
   ============================================================ */
.hero__form-error {
  font-size: 0.875rem;
  color: #ff4444;
  margin-top: 0.5rem;
  text-align: center;
}
.hero__form-error a {
  color: inherit;
  text-decoration: underline;
}

.hero__form-success {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md, 8px);
}
.hero__form-success__check {
  font-size: 2.5rem;
  color: #4caf50;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.hero__form-success__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
.hero__form-success__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
