/* preguntas frecuentes */
.faq-section {
    padding: 48px 16px;
    max-width: 1290px;
    margin: 0 auto;
  }
  .faq-section h2 {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    color: #6b899b;
  }
  .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: #6b899b;
    color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.08rem;
    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: #09183d;
    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%;
    }
  }
  @media (max-width: 768px){
    .faq-section h2 {
      font-size: 1.5rem;
    }
  }
  @media (min-width: 400px) {
  .faq-section h2 {
    font-size: 2rem;
  }
}

  /* testimonios */
  .review-name{
    font-size: 18px;
  }

  @media (min-width: 400px) {
    .review-name{
      font-size: 20px;
    }
  }

  /* stron seo */
  .strong-seo{
    color: #00B38B !important;
  }

  .strong-seo:hover{
    color: #0300b3;
  }

  /* beneficios- seo */
  .blog-content .texto-seo{
    font-size: 16px;
  }

  /* strong-seo-h1 */
  .strong-seo-h1{
    font-size: 0.7em;
    text-transform: uppercase;
    color: #09183d!important;
  }