/* Sección principal del contenido */
.contenido-programa {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  /* Estilos de introducción */
  .intro {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .intro h1 {
    color: #5bb9eb;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
  }
  
  .intro h2 {
    color: #ea5898;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .intro .resumen {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
  }
  
  /* Estilos del texto extenso */
  .texto-extenso p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
    text-align: justify;
    line-height: 1.8;
  }
  
  .texto-extenso .cierrefinal {
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    color: #efed3f;
  }
  .contacto-final {
    text-align: center;
    margin-top: 50px;
  }
  
  .contacto-final p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .boton-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .boton-whatsapp:hover {
    background-color: #1ebc5b;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .intro h1 {
      font-size: 1.5rem;
    }
  
    .intro h2 {
      font-size: 1.1rem;
    }
  
    .texto-extenso p {
      font-size: 1rem;
    }
  }
  .footer {
    background-color: #5bb9eb;
    padding: 2rem 1rem;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #ea5898;
    margin-top: 3rem;
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }
  
  .social-icons a {
    color: white;
    font-size: 1.6rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
  }
  
  .whatsapp:hover {
    color: #25d366;
  }
  
  .instagram:hover {
    color: #e1306c;
  }
  
  .facebook:hover {
    color: #1877f2;
  }
  .youtube:hover {
    color: #ff0000;
  }
  
  @media (max-width: 768px) {
    .footer p {
      font-size: 0.9rem;
    }
  
    .social-icons a {
      font-size: 1.4rem;
    }
  }
  