/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fefefe;
    color: #333;
    line-height: 1.6;
  }
  
  /* PALETA DE COLORES */
  :root {
    --pastel-green: #a8e6cf;
    --pastel-pink: #ffd3e0;
    --pastel-blue: #d0eaff;
    --text-dark: #222;
    --accent: #64b6ac;
  }
  
  /* HEADER */
  .header {
    background-color: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--accent);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: var(--accent);
  }
  
  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
  }
  

  .video-section {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #000;
  }
  
  .main-video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
    object-fit: cover;
  }
  
  
  /* ABOUT SECTION */
  .about-section {
    background-color: #d6eadf;
    padding: 60px 20px;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  
  .about-image {
    max-width: 300px;
    border-radius: 12px;
  }
  
  .about-content {
    flex: 1;
    min-width: 280px;
  }
  
  .about-more {
    display: none;
    margin-top: 10px;
  }
  
  .toggle-about,
  .toggle-service,
  .buy-btn,
  .whatsapp-btn {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .toggle-about:hover,
  .toggle-service:hover,
  .buy-btn:hover,
  .whatsapp-btn:hover {
    background-color: #4fa397;
  }
  
  .whatsapp-btn {
    display: inline-block;
    text-decoration: none;
  }
  
/* Estilos generales para la sección de servicios */

.section-title h2, p {
    text-align: center;
    margin-bottom: 30px;
  }
.services-section {
    background-color: #f0f0f0;
    padding: 60px 0;
  }
  
  .services-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
  }
  
  .service-card .service-description {
    font-size: 1rem;
    color: #666;
    margin: 15px 0;
  }
  
  .service-card .service-more {
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
  }
  
  button.toggle-service-btn, button.buy-btn {
    background-color: #eac4d5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button.toggle-service-btn:hover, button.buy-btn:hover {
    background-color: #ea9ab2;
  }
  
  
  /* TESTIMONIOS */
  .testimonials-section {
    background-color: #d6eadf;
    padding: 60px 20px;
  }
  
  .testimonials-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .gallery-img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.3s;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
  }
  
  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
  }
  
  .lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }
  
/* Estilos generales para la sección de consulta y compra */
.consultar-plan-audio {
    background-color: #f0f9f5; /* Fondo en tonos suaves para resaltar los botones */
    padding: 60px 0;
    text-align: center;
  }
  
  .section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .section-title p {
    font-size: 1.2rem;
    color: #666;
  }
  
  /* Contenedor de los botones */
  .buttons-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  /* Estilos para cada tarjeta de botón */
  .button-card {
    width: 300px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .button-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  /* Estilos para el enlace de consulta por WhatsApp */
  .consultar-btn {
    display: inline-block;
    background-color: #ea9ab2; /* Color llamativo */
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .consultar-btn:hover {
    background-color: #5a4cc2;
    transform: scale(1.05);
  }
  
  /* Estilos para el botón de compra de audio */
  .comprar-audio-btn {
    background-color: #ffc09f; /* Color dorado */
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .comprar-audio-btn:hover {
    background-color: #e0c100;
    transform: scale(1.05);
  }
  

  /* FOOTER */
  .footer {
    background-color: #eee;
    text-align: center;
    padding: 30px 20px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .social-icons a {
    text-decoration: none;
    color: var(--accent);
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #3b8070;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 200px;
      display: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 15px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .about-container {
      flex-direction: column;
      align-items: center;
    }
  
    .video-overlay h1 {
      font-size: 1.8rem;
    }
  }
  