.hero-banner {
  height: 60vh;
  min-height: 260px;
  background-image: url('../images/pag3.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

/* --- Sección principal FAQ --- */
#faq {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  color: #1DA28D;
  text-align: left;
  font-family: 'Poppins', sans-serif;
}

#faq h1 {
  color: #03705E;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#faq .subtitulo {
  color: #1DA28D;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* --- Tarjetas FAQ --- */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 6px solid #1DA28D;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* --- Encabezado clickeable --- */
.faq-item h2 {
  font-size: 1.3rem;
  color: #03705E;
  margin: 0;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
}

.faq-item h2::after {
  content: '\f078'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.faq-item.active h2::after {
  transform: rotate(180deg);
}

/* --- Contenido expandible --- */
.faq-content {
  padding: 0 20px 16px 20px;
  display: none;
  animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #1DA28D;
  margin-top: 14px;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
}

/* --- Animación suave --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  #faq h1 {
    font-size: 1.6rem;
  }
  .faq-item h2 {
    font-size: 1.2rem;
  }
  .faq-item p {
    font-size: 0.95rem;
  }
}
