/* HERO SECTION - IMAGEM MAIS PARA CIMA */

/* ===========================
   BASE MANTIDA
   =========================== */

.hero-editorial {
  position: relative;
  min-height: calc(100vh - 88px);
  height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding-top: 88px;
  background: var(--navy);
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/estadio.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-editorial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(12, 59, 107, 0.2) 0%,
    rgba(12, 59, 107, 0.5) 50%,
    rgba(12, 59, 107, 0.7) 100%);
  z-index: 2;
}

.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.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  color: white;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9em;
  font-weight: 400;
  color: var(--orange);
  margin-top: 0.5rem;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 1rem;
  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 10px 30px rgba(241, 90, 36, 0.3);
  white-space: nowrap;
}

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

/* ===========================
   DESKTOP: IMAGEM BEM MAIS PARA CIMA
   =========================== */

@media (min-width: 769px) {
  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Começa do topo */
    gap: 1.5rem;
    height: 100%;
    position: relative;
    padding-top: 0; /* REMOVE O PADDING - IMAGEM VAI PARA O TOPO */
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    background: white;
    margin-top: -50px; /* PUXA A IMAGEM PARA CIMA */
  }

  .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: 480px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

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

  .stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--orange);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .stat-label {
    font-size: 0.85rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }
}

/* ===========================
   MOBILE - NÃO MEXER
   =========================== */

@media (max-width: 768px) {
  .logo-wrapper img {
    height: 32px !important;
    width: auto !important;
  }

  .header-inner {
    height: 72px !important;
  }

  .hero-editorial {
    min-height: 100vh;
    height: auto;
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  .hero-editorial::before {
    opacity: 0.25;
  }

  .hero-editorial::after {
    background: linear-gradient(180deg,
      rgba(12, 59, 107, 0.3) 0%,
      rgba(12, 59, 107, 0.6) 50%,
      rgba(12, 59, 107, 0.8) 100%);
  }

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

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

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

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

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

  .hero-subtitle {
    font-size: 1rem;
    margin: 0 auto 2rem;
    padding: 0 1rem;
  }

  .hero-cta-group {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin-top: 1.5rem;
  }

  .btn-primary {
    font-size: 0.85rem;
    padding: 14px 20px;
    white-space: nowrap;
    width: auto;
    min-width: fit-content;
    max-width: calc(100% - 3rem);
    margin: 0 auto;
    display: flex;
  }

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

  .hero-image-wrapper {
    aspect-ratio: 16/10;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    max-width: 90%;
    margin: 0 auto;
  }

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

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

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

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

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

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

  .hero-image-wrapper {
    aspect-ratio: 16/11;
  }
}

/* Desktop - garantir altura exata */
@media (min-width: 769px) {
  .hero-editorial {
    height: calc(100vh - 88px);
    max-height: calc(100vh - 88px);
  }
}

/* Remover espaços indesejados */
.hero-editorial {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

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