/* preguntas frecuentes */
.faq-section {
    padding: 48px 16px;
    max-width: 1290px;
    margin: 0 auto;
  }
  .faq-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    color: #298ad1;
  }
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    color: #000000;
  }
  .faq-accordion {
    width: 100%;
  }
  .faq-accordion-item {
    margin-bottom: 16px;
  }
  .faq-accordion-button {
    width: 100%;
    text-align: left;
    background-color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    cursor: pointer;
    border: none;
  }
  .faq-accordion-button::after {
    content: '\25BC';
    position: absolute;
    right: 16px;
    transition: transform 0.3s ease;
  }
  .faq-accordion-button.faq-active::after {
    transform: rotate(180deg);
  }
  .faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 16px;
    background-color: #ffffff;
    color: #0065be;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .faq-accordion-content.faq-active {
    max-height: 250px; /* Ajusta según contenido */
    padding: 16px;
  }
  @media (min-width: 1024px) {
    .faq-container {
      flex-direction: row;
    }
    .faq-accordion {
      width: 60%;
    }
  }