/* Estilos customizados para o Clube Mali Perfumes */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px 0;
  margin-top: 0;
}

/* Stats Section */
.stats-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 30px 0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #667eea;
}

/* Section Padding */
.section-padding {
  padding: 80px 0;
}

/* Feature Cards */
.feature-card {
  transition: transform 0.3s ease;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.icon-large {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 20px;
}

/* Testimonial Cards */
.testimonial-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0;
  border-left: 5px solid #667eea;
  height: 100%;
}

/* Plan Cards */
.plan-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.plan-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

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

.plan-card:hover .plan-price {
  transform: scale(1.1);
  color: #667eea;
}

.plan-card:hover h3 {
  color: #667eea !important;
}

.plan-card.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
  position: relative;
}

.plan-card.selected::before {
  opacity: 1;
}

.plan-card.selected .plan-price {
  color: #667eea;
  text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.plan-card.selected h3 {
  color: #667eea !important;
  text-shadow: 0 1px 2px rgba(102, 126, 234, 0.1);
}

.plan-card .badge {
  transition: all 0.3s ease;
}

.plan-card:hover .badge {
  transform: scale(1.1);
  background-color: #667eea !important;
}

.plan-card:hover .plan-description {
  color: #495057 !important;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #667eea;
  transition: all 0.3s ease;
  display: inline-block;
}

.plan-description {
  color: #6c757d;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.plan-card h3 {
  transition: all 0.3s ease;
}

.plan-card .text-decoration-line-through {
  transition: all 0.3s ease;
  opacity: 0.7;
}

.plan-card:hover .text-decoration-line-through {
  opacity: 1;
  color: #dc3545 !important;
}

/* Efeito de brilho no hover */
.plan-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.plan-card:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

/* Animação para o badge de desconto */
.plan-card .position-absolute .badge {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Botões */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px 0;
    text-align: center;
  }
  
  .hero-section .display-4 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .plan-price {
    font-size: 2rem;
  }
}

/* Estilos específicos para planos dentro do formulário */
#contato .plan-card {
  margin-bottom: 15px;
}

#contato .plan-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

#contato .plan-price {
  font-size: 2rem;
}

/* Estilos para a seção de planos */
#planos .card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

#planos .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#planos .card-header {
  border: none;
  padding: 1.5rem;
}

#planos .card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

#planos .card-body {
  padding: 2rem;
}

#planos .card-body ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

#planos .card-body ul li:last-child {
  border-bottom: none;
}

#planos .card-body ul li i {
  width: 20px;
  text-align: center;
}

/* Estilos para o contador na seção de planos */
#planos .bg-white {
  border-radius: 20px;
  border: 2px solid #f8f9fa;
}

#planos .bg-white:hover {
  border-color: #667eea;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
}

#planos .bg-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: none;
  transition: all 0.3s ease;
}

#planos .bg-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}



/* Scroll suave */
html {
  scroll-behavior: smooth;
}
