/* ============================================================
   Nosso Campeão — Landing Page
   Paleta, tipografia e estrutura conforme especificação
   ============================================================ */

/* Fonte local (Inter, fonte variável) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}

:root {
  --primary-green: #108234;
  --primary-green-dark: #0b672a;
  --primary-green-light: #e7f4ec;
  --primary-green-soft: #dcefe3;
  --bg-gray: #f4f7f6;
  --bg-gray-soft: #eef2f0;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-lighter: #8a8a8a;
  --white: #ffffff;
  --border: #e6eae8;
  --star: #f5b301;
  --radius-card: 12px;
  --radius-pill: 50px;
  --shadow-soft: 0 10px 30px rgba(16, 82, 52, 0.08);
  --shadow-card: 0 16px 40px rgba(16, 82, 52, 0.12);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-light);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Ícones (HugeIcons)
   ============================================================ */
.logo-icon i { font-size: 24px; color: #fff; }

.badge i { font-size: 16px; color: #108234; }

.btn i { font-size: 18px; }

.btn-play i { font-size: 20px; color: #108234; }

.benefit-ic i { font-size: 26px; color: #108234; }

.app-card-ic i { font-size: 14px; color: #fff; }

.demo-ball i { font-size: 18px; color: #fff; }

.sport-ic i { font-size: 46px; color: #108234; }

.sport-ic svg { width: 46px; height: 46px; }

.faq-q i { font-size: 20px; color: #108234; }

.social-links i { font-size: 20px; }

.available i { font-size: 22px; color: #1a1a1a; }

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================================
   Botões
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 130, 52, 0.28);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-play {
  background: transparent;
  color: var(--text-dark);
  padding: 14px 8px;
  gap: 10px;
}

.btn-play svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.btn-play:hover {
  color: var(--primary-green);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-green);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.site-header .logo-text {
  font-size: 20px;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions .btn {
  padding: 12px 24px;
  font-size: 15px;
}

.link-login {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}

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

.nav-actions--mobile {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 36px 0 64px;
  background:
    radial-gradient(circle at 85% 15%, rgba(16, 130, 52, 0.06), transparent 42%),
    var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green-light);
  color: var(--primary-green);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--primary-green);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.available {
  display: flex;
  align-items: center;
  gap: 12px;
}

.available-label {
  font-size: 14px;
  color: var(--text-lighter);
  margin-right: 2px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(16, 82, 52, 0.18));
}

/* Mockup do smartphone */
.phone-mockup {
  position: relative;
  z-index: 10;
  width: 300px;
  height: 600px;
  background: #0f1f16;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(16, 82, 52, 0.25), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f6f8f7;
  border-radius: 34px;
  overflow: hidden;
  padding: 44px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0f1f16;
  border-radius: 16px;
  z-index: 2;
}

.app-status {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-user strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
}

.app-user small {
  font-size: 12px;
  color: var(--text-lighter);
}

.app-more {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-lighter);
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.app-stat {
  background: #fff;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(16, 82, 52, 0.05);
}

.app-stat strong {
  display: block;
  font-size: 20px;
  color: var(--primary-green);
}

.app-stat span {
  font-size: 11px;
  color: var(--text-lighter);
}

.app-chart {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(16, 82, 52, 0.05);
}

.app-chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.app-chart-title strong {
  font-size: 13px;
  color: var(--text-dark);
}

.app-chart-title span {
  font-size: 11px;
  color: var(--text-lighter);
}

.app-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 74px;
}

.app-chart-bars .bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  height: 100%;
}

.app-chart-bars .bar span {
  width: 100%;
  max-width: 22px;
  background: linear-gradient(180deg, #34b564, #108234);
  border-radius: 5px 5px 2px 2px;
}

.app-chart-bars .bar:nth-child(5) span {
  background: linear-gradient(180deg, #46c975, #158f3d);
  box-shadow: 0 0 10px rgba(16, 130, 52, 0.4);
}

.app-chart-bars .bar em {
  font-style: normal;
  font-size: 10px;
  color: var(--text-lighter);
}

.app-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.app-card-ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-card strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
}

.app-card small {
  font-size: 11px;
  color: var(--text-lighter);
}

.app-fab {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary-green);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 130, 52, 0.4);
  transition: transform 0.2s ease;
}

.app-fab:hover {
  transform: scale(1.08);
}

/* Imagens secundárias do hero */
.hero-photo {
  position: absolute;
  z-index: 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-photo--child {
  bottom: 26px;
  left: 2%;
  width: 150px;
  background: #f0f7f3;
}

.hero-photo--parent {
  top: 20px;
  right: 2%;
  width: 140px;
  background: #f0f7f3;
}

/* ============================================================
   Benefícios
   ============================================================ */
.benefits {
  background: var(--bg-gray);
  padding: 48px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.benefit-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.benefit h3 {
  font-size: 17px;
  font-weight: 600;
}

.benefit p {
  font-size: 14px;
  color: var(--text-light);
  max-width: 240px;
}

/* ============================================================
   Como Funciona
   ============================================================ */
.process {
  padding: 96px 0 32px;
  background: var(--white);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 48px;
}

.section-title--left {
  text-align: left;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 0;
}

.step::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 62px;
  bottom: -36px;
  border-left: 2px dashed #cfe3d7;
}

.step:last-child::after {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(16, 130, 52, 0.25);
}

.step-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 14px;
}

.step-body p {
  font-size: 15px;
  color: var(--text-light);
}

.step-body p strong {
  color: var(--primary-green);
}

/* Card demo (flutuante) */
.process-demo {
  display: block;
}

.demo-card {
  margin: 0 auto;
}

.demo-card {
  width: 400px;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.demo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px dashed transparent;
  pointer-events: none;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.demo-header strong {
  font-size: 16px;
  color: var(--text-dark);
}

.demo-header span {
  font-size: 12px;
  color: var(--primary-green);
  background: var(--primary-green-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-gray-soft);
}

.demo-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-item strong {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.demo-ball {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.demo-ball--shot { background: #2f7cc4; }
.demo-ball--goal { background: var(--primary-green); }
.demo-ball--assist { background: #e0902b; }

.demo-counter {
  display: flex;
  align-items: center;
  gap: 14px;
}

.demo-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 18px;
  color: var(--primary-green);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.demo-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 20px;
  text-align: center;
}

.demo-save {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--primary-green);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.demo-save:hover {
  background: var(--primary-green-dark);
}

/* ============================================================
   Modalidades
   ============================================================ */
.sports {
  padding: 96px 0;
  background: var(--bg-gray);
}

.sports-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}

.sport-card {
  flex: 1 1 0;
  min-width: 120px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.sport-ic {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sport-card h3 {
  font-size: 15px;
  font-weight: 600;
}

.sport-card--more .sport-ic {
  background: var(--bg-gray-soft);
}

/* Cores por modalidade */
.sport-card--football .sport-ic i { color: #108234; }
.sport-card--basketball .sport-ic i { color: #e8710a; }
.sport-card--volleyball .sport-ic i { color: #1a73c4; }
.sport-card--tennis .sport-ic i { color: #c9a227; }
.sport-card--swimming .sport-ic i { color: #0d9488; }
.sport-card--more .sport-ic i { color: #7c3aed; }

@media (max-width: 900px) {
  .sports-grid {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .sport-card {
    flex: 0 0 130px;
    min-width: 130px;
  }
}

/* ============================================================
   Estatísticas / Recursos
   ============================================================ */
.stats {
  padding: 96px 0;
  background: var(--white);
}

.stats-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.stats-header .section-title span {
  color: var(--primary-green);
  display: inline-block;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stats-card {
  background: #f6f9f6;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  border-color: #a8d8b2;
  box-shadow: var(--shadow-card);
}

.stats-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(16, 130, 52, 0.25);
}

.stats-card-icon i {
  font-size: 26px;
  color: #fff;
}

.stats-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.stats-card-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 14px;
}

.stats-card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ============================================================
   Depoimentos
   ============================================================ */
.testimonials {
  padding: 96px 0;
  background: var(--bg-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-light);
  flex: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.avatar--carlos { background: #2f7cc4; }
.avatar--mariana { background: #d6688f; }
.avatar--rafael { background: #5b6bd6; }

.testimonial-user strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
}

.testimonial-user small {
  font-size: 13px;
  color: var(--text-lighter);
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  padding: 64px 0 96px;
  background: var(--white);
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, #0c5d22, #108234 55%, #15923e);
  border-radius: 28px;
  padding: 40px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  color: #fff;
}

.cta-inner::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -180px;
  right: -120px;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
}

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

.btn-cta:hover {
  background: #eaf5ee;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.cta-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-badge {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    inset 0 0 0 18px rgba(255, 255, 255, 0.035);
}

.cta-icon-badge i {
  font-size: 82px;
  color: #fff;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 0 0 96px;
  background: var(--white);
}

.faq-container {
  max-width: 760px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.faq-q svg {
  flex-shrink: 0;
  color: var(--primary-green);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
}

.faq-item.open .faq-a {
  max-height: 200px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #102019;
  color: #9fb3a7;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 64px 24px 48px;
}

.logo--footer .logo-text {
  color: #fff;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 280px;
  color: #9fb3a7;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #9fb3a7;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary-green);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9fb3a7;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--primary-green);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 13px;
  color: #7c9286;
}

/* ============================================================
   Animações de entrada (reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsividade
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps {
    gap: 24px;
  }

  .cta-inner {
    padding: 36px 32px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-header .nav {
    height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 30px rgba(16, 82, 52, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: 460px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul a {
    display: block;
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--bg-gray-soft);
  }

  .nav-actions--mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 12px;
  }

  .nav-actions--mobile .link-login {
    text-align: center;
    padding: 8px;
  }

  .nav-actions--mobile .btn {
    justify-content: center;
  }

  .hero {
    padding: 56px 0 40px;
  }

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

  .hero-content {
    max-width: 100%;
  }

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

  .hero-sub {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-photo--child {
    left: 0;
  }

  .hero-photo--parent {
    right: 0;
  }

  .process {
    padding: 72px 0 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sports {
    padding: 72px 0;
  }

  .stats {
    padding: 72px 0;
  }

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonials {
    padding: 72px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .cta-banner {
    padding: 24px 0 72px;
  }

  .cta-inner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
    gap: 32px;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-image {
    width: 160px;
  }

  .cta-icon-badge i {
    font-size: 64px;
  }

  .faq {
    padding: 0 0 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 32px;
    row-gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-play {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .phone-mockup {
    width: 280px;
    height: 570px;
  }

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