/* Estilo General */
#faq {
  background-color: #f9f9f9;
}

#faq .section-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

#faq .intro {
  font-size: 18px;
  color: #666;
}

#faq-list {
  list-style: none;
  padding: 0;
}

#faq-list li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1px;
  padding: 15px;
  transition: 0.3s;
}

#faq-list a {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  padding: 1px;
}

#faq-list a:hover {
  color: #1bb1dc;
}

#faq-list a i {
  font-size: 22px;
  transition: transform 0.3s ease-in-out;
  margin-left: 80px;
}

#faq-list a.collapsed i {
  transform: rotate(0deg);
}

#faq-list a:not(.collapsed) i {
  transform: rotate(180deg);
}

#faq-list .collapse {
  padding: 15px;
  font-size: 16px;
  color: #555;
  text-align: justify;
}

#faq-list a:not(.collapsed) i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068"; /* Ícono de menos (fa-minus) */
}

/* Seccion de incio */
.about-subtitle {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
  color: #666;
}

.about-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.member-role {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.profile-image {
  max-width: 120px;
}

.product-card {
  border-top: 4px solid #0e16d4;
}

/* ===== WHY SECTION ===== */

.why-section {
  background: #f7f9fc;
}

.why-section .intro {
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
  color: #555;
}

/* card del video */

.video-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: auto;
  transition: 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.portada-card {
  width: 100%;
  max-width: 900px;
  /* tamaño máximo en PC */
  margin: 0 auto;
  /* centrar */
  overflow: hidden;
  border-radius: 10px;
}

.portada-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* ===== TEXTO DESTACADO NEGOCIOS ===== */

.business-info {
  max-width: 750px;
  margin: auto;
  margin-top: 35px;
  background: #f5f7fb;
  padding: 25px 30px;
  border-radius: 15px;
  text-align: justify;
  color: #555;
  line-height: 1.7;
  border-left: 4px solid #0e16d4;
}

.business-info p {
  margin-bottom: 12px;
}

/* CTA HOME */

.cta-home {
  background-image: linear-gradient(90deg, #0e16d4, #3533cd);
  color: white;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 70px auto;
  max-width: 1100px;
}

.cta-home-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-home-text {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
  opacity: 0.95;
}

.cta-home-buttons .btn {
  margin: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}
