/* HOTFIX V7 - REDESIGN COMPLETO COM HIERARQUIA E OTIMIZAÇÕES */

/* ===========================
   HIERARQUIA DE FONTES GLOBAL
   =========================== */

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: var(--gray-600);
}

/* ===========================
   HERO SECTION - REDESIGN COMPLETO
   =========================== */

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

/* Background com estádio */
.hero-editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/estadio.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
}

/* Overlay gradient */
.hero-editorial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
    rgba(12, 59, 107, 0.4) 0%,
    rgba(12, 59, 107, 0.8) 50%,
    rgba(12, 59, 107, 0.95) 100%);
  z-index: 2;
}

.hero-lines {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* Conteúdo do Hero */
.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  color: white;
  margin-bottom: 1rem;
}

.hero-title .accent {
  display: block;
  color: var(--orange);
  font-size: 0.9em;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Botão único */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.3);
}

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

/* Remover botão ghost */
.btn-ghost {
  display: none !important;
}

/* Visual do Hero */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: white;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================
   REMOVER ESPAÇOS FANTASMAS
   =========================== */

section {
  padding: 3rem 0 !important;
}

.clubs-premium {
  padding: 2rem 0 !important;
  margin-top: -2rem !important;
}

.features-premium {
  padding-top: 2rem !important;
}

/* ===========================
   AJUSTES SEÇÃO FEATURES
   =========================== */

.features-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--navy);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-highlight {
  grid-column: span 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: white;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  min-height: 250px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* ===========================
   FORMULÁRIO - REDESIGN COMPLETO
   =========================== */

.form-premium {
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  padding: 5rem 0;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.form-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.form-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

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

.form-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-benefit-item:last-child {
  border-bottom: none;
}

.form-benefit-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  min-width: 45px;
}

.form-benefit-text {
  flex: 1;
}

.form-benefit-text strong {
  display: block;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.form-benefit-text br {
  display: none;
}

.form-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.form-embed-wrapper {
  width: 100%;
  height: 700px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-embed-wrapper [data-respondi-container] {
  height: 100%;
  width: 100%;
}

/* ===========================
   QUEBRAS DE LINHA ESTRATÉGICAS
   =========================== */

@media (min-width: 1024px) {
  .hero-title {
    white-space: nowrap;
  }

  .hero-title .accent {
    white-space: normal;
  }
}

/* ===========================
   RESPONSIVIDADE MOBILE
   =========================== */

@media (max-width: 768px) {
  /* Hero Mobile */
  .hero-editorial {
    min-height: 100vh;
    padding: 100px 0 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

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

  .hero-badge {
    margin: 0 auto 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-title .accent {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin: 0 auto 1.5rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .btn-primary {
    font-size: 0.875rem;
    padding: 14px 24px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    padding: 0 1rem;
  }

  .hero-image-wrapper {
    aspect-ratio: 16/9;
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Remover espaços mobile */
  section {
    padding: 2rem 0 !important;
  }

  .clubs-premium {
    padding: 1.5rem 0 !important;
    margin-top: 0 !important;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-highlight {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .feature-highlight .feature-content {
    max-width: 100%;
  }

  .feature-card {
    min-height: auto;
    padding: 1.5rem;
  }

  /* Formulário Mobile */
  .form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-left {
    text-align: center;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  .form-benefit-item {
    max-width: 100%;
    text-align: left;
  }

  .form-embed-wrapper {
    height: 500px;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-title .accent {
    font-size: 1.25rem;
  }

  .btn-primary {
    font-size: 0.8rem;
    padding: 12px 20px;
  }

  .hero-stats {
    font-size: 0.875rem;
  }
}

/* ===========================
   AJUSTES VÍDEOS
   =========================== */

.videos-premium {
  padding: 3rem 0 !important;
  background: var(--gray-50);
}

.videos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.videos-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.videos-header h2 {
  color: var(--navy);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.video-card {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #000;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .video-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===========================
   CLUBES SECTION
   =========================== */

.clubs-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0;
}

.club-item {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.club-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.club-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* ===========================
   NÚMEROS SECTION
   =========================== */

.numbers-section {
  padding: 3rem 0 !important;
  background: var(--gray-50);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
}

.number-card {
  text-align: center;
  padding: 1.5rem;
}

.number-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--orange);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.number-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.number-description {
  font-size: 0.875rem;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}