/* PREMIUM ENHANCED DESIGN - ESTILO EDITORIAL ESPORTIVO SOFISTICADO */

/* ===========================
   FONTES E VARIÁVEIS GLOBAIS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Cores principais */
  --navy: #0C3B6B;
  --navy-dark: #082947;
  --navy-light: #1A4D7D;
  --blue: #0F4D8A;
  --blue-light: #2B6BA8;
  --orange: #F15A24;
  --orange-dark: #D94F20;
  --orange-light: #FF7642;

  /* Neutros premium */
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F7;
  --gray-200: #E8E8ED;
  --gray-300: #D2D2D7;
  --gray-400: #A8A8AD;
  --gray-500: #86868B;
  --gray-600: #515154;
  --gray-700: #333336;

  /* Tipografia refinada */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos harmônicos */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Container e grid */
  --container-max: 1440px;
  --container-padding: clamp(1.5rem, 5vw, 4rem);

  /* Sombras sofisticadas */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.16);
  --shadow-2xl: 0 32px 128px rgba(0, 0, 0, 0.24);

  /* Animações */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   RESET E BASE REFINADA
   =========================== */

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ===========================
   HEADER ULTRA PREMIUM
   =========================== */

.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out);
}

.premium-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.99);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.logo-wrapper img {
  height: 48px;
  width: auto;
  transition: transform 0.3s var(--ease-out);
}

.logo-wrapper:hover img {
  transform: scale(1.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(241, 90, 36, 0.25);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s var(--ease-out);
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.4);
}

@media (max-width: 768px) {
  .nav-cta span {
    display: none;
  }

  .nav-cta {
    padding: 12px;
    width: 44px;
    height: 44px;
  }
}

/* ===========================
   HERO EDITORIAL REFINADO
   =========================== */

.hero-editorial {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy-light) 100%);
  overflow: hidden;
  margin-top: 88px;
}

/* Background patterns aprimorados */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-lines::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 50%, rgba(241, 90, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 77, 138, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 30s ease-in-out infinite;
}

.hero-lines::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 200px,
      rgba(255, 255, 255, 0.02) 200px,
      rgba(255, 255, 255, 0.02) 201px
    );
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--container-padding);
}

.hero-content {
  position: relative;
  animation: heroFadeIn 1s var(--ease-out);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.15), rgba(241, 90, 36, 0.05));
  border: 1px solid rgba(241, 90, 36, 0.3);
  border-radius: 100px;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.2);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(241, 90, 36, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 1.15em;
  margin-top: 0.1em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-premium.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(241, 90, 36, 0.3);
}

.btn-premium.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(241, 90, 36, 0.4);
}

.btn-premium.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-premium.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
  height: 650px;
  animation: heroImageFade 1.2s var(--ease-out) 0.3s both;
}

@keyframes heroImageFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.2), transparent);
  z-index: 1;
  mix-blend-mode: overlay;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.1);
}

/* Stats flutuantes premium */
.hero-stats {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.stat-item {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: var(--gray-200);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

/* ===========================
   CLUBES PREMIUM COLORIDOS
   =========================== */

.clubs-premium {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(to bottom, var(--gray-50), var(--white));
  overflow: hidden;
}

.clubs-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.clubs-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
}

.club-item {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  overflow: hidden;
}

.club-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(241, 90, 36, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.club-item:hover::before {
  opacity: 1;
}

.club-item:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: var(--shadow-xl);
}

.club-item img {
  width: 70%;
  height: auto;
  object-fit: contain;
  transition: all 0.4s var(--ease-out);
}

.club-item:hover img {
  transform: scale(1.15);
}

/* ===========================
   FEATURES MAGAZINE APRIMORADO
   =========================== */

.features-premium {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: var(--space-xl);
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transition: left 0.4s var(--ease-out);
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  border-radius: 20px;
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.1), rgba(241, 90, 36, 0.05));
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--orange);
  stroke-width: 2;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--orange);
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
}

/* Card em destaque aprimorado */
.feature-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border: none;
  padding: var(--space-3xl);
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.feature-highlight::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.feature-highlight .feature-title {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.feature-highlight .feature-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.feature-highlight .feature-icon {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.feature-highlight .feature-icon svg {
  width: 80px;
  height: 80px;
  stroke: var(--orange-light);
}

@media (max-width: 768px) {
  .feature-highlight {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

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

/* ===========================
   SEÇÃO DE NÚMEROS INFOGRÁFICO
   =========================== */

.numbers-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  overflow: hidden;
}

.numbers-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.number-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--white);
  border-radius: 32px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.number-card:hover::before {
  transform: scaleX(1);
}

.number-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.number-value {
  font-family: var(--font-display);
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
  transition: transform 0.4s var(--ease-out);
}

.number-card:hover .number-value {
  transform: scale(1.1);
}

.number-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.number-description {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===========================
   VÍDEOS PREMIUM REFINADO
   =========================== */

.videos-premium {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.videos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.videos-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.video-card:hover::before {
  opacity: 1;
}

.video-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================
   FORMULÁRIO SPLIT PREMIUM
   =========================== */

.form-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gray-50);
  padding: var(--space-3xl) 0;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.form-left {
  padding: var(--space-4xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.form-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.form-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.form-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.form-benefits {
  list-style: none;
  position: relative;
  z-index: 1;
}

.form-benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.form-benefit-item:hover {
  transform: translateX(10px);
}

.form-benefit-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-benefit-text {
  color: var(--white);
  flex: 1;
}

.form-benefit-text strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.form-right {
  padding: var(--space-4xl);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-embed-wrapper {
  width: 100%;
  max-width: 500px;
}

/* ===========================
   FOOTER MINIMALISTA PREMIUM
   =========================== */

.footer-premium {
  padding: var(--space-2xl) 0;
  background: linear-gradient(to bottom, var(--gray-700), var(--black));
  color: var(--white);
  text-align: center;
}

.footer-logo {
  height: 48px;
  margin-bottom: var(--space-md);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===========================
   ANIMAÇÕES GLOBAIS
   =========================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animação de entrada dos elementos */
.animate-in {
  animation: fadeInUp 0.8s var(--ease-out) both;
}

/* ===========================
   RESPONSIVO REFINADO
   =========================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

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

  .hero-visual {
    height: 500px;
    margin-top: var(--space-2xl);
  }

  .hero-stats {
    position: static;
    transform: none;
    margin-top: var(--space-2xl);
    border-radius: 24px;
  }

  .form-container {
    grid-template-columns: 1fr;
  }

  .form-left {
    padding: var(--space-3xl);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
  }

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

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

  .clubs-grid {
    gap: var(--space-md);
  }

  .club-item {
    width: 110px;
    height: 110px;
  }

  .hero-stats {
    flex-direction: column;
    border-radius: 24px;
    gap: 0;
  }

  .stat-item {
    width: 100%;
    padding: var(--space-md);
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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