/* seccion banner */
.banner-seo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #002468;
    padding: 40px 20px;
    min-height: 400px;
    width: 100%;
    box-sizing: border-box;
    gap: 20px; /* Reduced gap to bring blocks closer */
  }

  .banner-seo__image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .banner-seo__image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .banner-seo__text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
  }

  .banner-seo__title {
    font-size: 4.5rem;
    margin: 0 0 20px 0;
    font-weight: bold;
    color: white;
    text-align: center;
  }

  .banner-seo__paragraph {
    font-size: 2.2rem;
    margin: 0 0 30px 0;
    line-height: 1.5;
  }

  .banner-seo__buttons {
    display: flex;
    gap: 20px;
  }

  .banner-seo__button {
    padding: 12px 24px;
    font-size: 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: white;
  }

  .banner-seo__button--whatsapp {
    background-color: #25D366;
  }

  .banner-seo__button--whatsapp:hover {
    background-color: #20b358;
  }

  .banner-seo__button--phone {
    background-color: #007bff;
  }

  .banner-seo__button--phone:hover {
    background-color: #0056b3;
  }

  @media (max-width: 768px) {
    .banner-seo {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }

    .banner-seo__text-container {
      align-items: center;
      order: 1;
    }

    .banner-seo__image-container {
      order: 2;
      margin-top: 20px;
    }

    .banner-seo__title {
      font-size: 2rem;
    }

    .banner-seo__paragraph {
      font-size: 1rem;
    }

    .banner-seo__buttons {
      flex-direction: column;
      gap: 10px;
    }
  }

  @media (max-width: 480px) {
    .banner-seo__title {
      font-size: 2.2rem;
    }

    .banner-seo__paragraph {
      font-size: 1.5rem;
    }

    .banner-seo__button {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }
  /* preguntas frecuentes */
.faq-section {
    padding: 48px 16px;
    max-width: 1290px;
    margin: 0 auto;
  }
  .faq-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    color: #070d59;
  }
  .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: #002468;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    cursor: pointer;
    border: none;
    color: white;
  }
  .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);
    font-size: 1.5rem;
  }

  .faq-accordion-content.faq-active {
    max-height: 250px; 
    padding: 16px;
  }
  @media (min-width: 1024px) {
    .faq-container {
      flex-direction: row;
    }
    .faq-accordion {
      width: 60%;
    }
  }
  @media (max-width: 480px) {
    .faq-accordion-button {
      font-size: 1.3rem;
    }
    .faq-accordion-content {
      font-size: 1rem;
    }
  }
  
  /* seccion testimonios seo */
  .testimonials-section {
    padding: 40px 20px;
    background-color: #002468;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .testimonials-section .sec-title h2 {
   font-size: 30px;
   color: #ffffff;
   text-align:center;
  }
  
  .testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
    padding: 25px 20px;
    max-width: 350px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgb(0 0 0 / 0.15);
  }
  
  .testimonial-name {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #070d59;
  }
  
  
  .testimonial-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #070d59;
    margin-bottom: 20px;
    min-height: 72px; 
  }

  
  .testimonial-stars {
    font-size: 1.5rem;
    color: #f5a623; 
    user-select: none;
  }
  
  @media (max-width: 768px) {
    .testimonials-container {
      flex-direction: column;
      gap: 20px;
    }
    .testimonial-card {
      max-width: 100%;
      padding: 20px 15px;
    }
  }
  @media (max-width: 480px) {
  .testimonials-section .sec-title h2 {
    font-size: 20px;
   }
  }

/* Estilo base para enlaces SEO */
.interlink-seo {
    color: #e53935; /* Rojo intenso */
  }
  
  /* Efecto hover con azul bajito */
  .interlink-seo:hover {
    color: #42a5f5; 
    text-decoration: none;
  }
  
  /* Ajustamos en móviles para mejor visibilidad */
  @media (max-width: 768px) {
    .interlink-seo {
      font-size: 15px;
      padding: 1px 3px;
    }
  }