/* Index page specific styles */

.hero-image {
  max-width: 300px;
  height: auto;
}

@media (max-width: 576px) {
  .hero-image {
    max-width: 200px;
  }
}

/* Price section custom styles */
.price-value {
  font-size: 20px;
}

.price-value em {
  font-size: 16px;
  font-weight: 400;
}

.cta-list li {
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

/* Benefits cards hover effect */
#beneficios .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#beneficios .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* FAQ section styling */
.faq-section {
  background-color: #ffffff;
}

/* CTA buttons styling */
.btn-whatsapp {
  background-color: #2ba81a !important;
  color: #fff !important;
  border-color: #2ba81a !important;
}
.btn-whatsapp:hover {
  background-color: #1f7a0c !important;
  border-color: #fff !important;
}

.btn-telegram {
  background-color: #0088cc !important;
  color: #fff !important;
  border-color: #0088cc !important;
}
.btn-telegram:hover {
  background-color: #007bbd !important;
  border-color: #fff !important;
}


/* FAQ accordion styles */
#faq .accordion-body {
  font-size: 1rem;
  font-weight: 300;
  color: #515050;
}
