
.enlaces-seo {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 230px;
    list-style: none;
    line-height: 30px;
  }

.enlaces-seo a{
    color: aliceblue;
}

.enlaces-seo a:hover{
    color: #e15280;
    transition: 1.5s;
}

.parrafo{
    text-decoration: none;
    text-align: justify;
    font-size: 16px;
    color: slategray;
    line-height: 30px;
    font-weight: normal;
}

/* banner seo */
.strong-seo {
    color: #ff4081;
    padding: 2px 6px;
    font-size: 2em;
    transition: all 0.3s ease;
  }

  
  /* Enlaces SEO rosados */
  .interlink-seo {
    color: #ff4081;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 3px;
  }

  .strong-seo-i{
    color: #ff4081;
    padding: 2px 6px;
    font-size: 1em;
    transition: all 0.3s ease;
  }

  
  /* Hover elegante para los interlinks */
  .interlink-seo:hover {
    color: #ff80ab;
  }
  
  /* Ajustes para que se vea bien en pantallas pequeñas */
  @media (max-width: 768px) {
    .strong-seo {
      font-size: 1em;
      padding: 2px 5px;
    }
  
    .interlink-seo {
      font-size: 1em;
      padding: 2px 4px;
    }
  }
  

/* preguntas frecuentes */
.faq-section {
    padding: 48px 16px;
    max-width: 1290px;
    margin: 0 auto;
  }
  .faq-section h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    color: #cf64c7;
  }
  .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: 1rem;
    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: #ff80ab;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
  }

  .faq-accordion-content a {
    color:#ea8adc;
  }
  .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: #f1daf1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .testimonials-section .sec-title h2 {
   font-size: 30px;
   color: #cf64c7;
   text-align:center;
   font-weight: bold;
  }
  
  .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: 1rem;
    margin-bottom: 12px;
    color: #cf64c7;
  }
  
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #cf64c7;
    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;
   }
  }