/* Estilos para Landing Club */
.club-hero {
  background: linear-gradient(135deg, #008037 0%, #00a849 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.benefit-card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #008037;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.level-badge {
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.level-bronze {
  background: #cd7f32;
  color: white;
}
.level-silver {
  background: #c0c0c0;
  color: #333;
}
.level-gold {
  background: #ffd700;
  color: #333;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-family: serif;
  font-size: 5rem;
  color: #e8f5e9;
  position: absolute;
  top: 0;
  left: 20px;
  line-height: 1;
}

/* Utilities extracted from inline styles */
.z-10 {
  z-index: 10;
}

.mw-600 {
  max-width: 600px;
}

/* Hero badge with celebratory ring */
.hero-badge {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25),
    0 0 0 8px rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-float 5s ease-in-out infinite;
}

.hero-badge::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ffd54f,
    #ff6d00,
    #00c853,
    #00bcd4,
    #ffd54f
  );
  z-index: -1;
  animation: hero-spin 16s linear infinite;
  filter: saturate(1.05);
}

.club-hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

@keyframes hero-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.perk-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.hero-stats small {
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 992px) {
  .club-hero .row {
    align-items: center;
    min-height: 60vh;
  }
}
