/* Reset y base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  /* icono de play de los controles  */

  #playPauseBtn img {
    transition: opacity 0.3s ease;
    width: 15px; /* Cambia esto si quieres más pequeño o más grande */
    height: auto;
    margin-top: 4px;
  }
  
  #playPauseBtn:hover img {
    opacity: 0.8;
  }


  header .logo{
    width: 50px;
    right: 20px;
    
  }


  

 





  
  
  body {

    background: #000;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
   /*      background: linear-gradient(to bottom,
      #000000 3%,
      #9f6c2f 15%,
      #d89e33 30%,
      #e6a700 50%,
      #ffcc00 65%,
      #ffb400 80%,
      #ffd700 90%,
      #fff200 95%,
      #fff9db 100%);
    color: #fff;
    text-align: center;
    overflow-x: hidden;
    */
  }

























  
  /* Header */
  header {
    background: #000000;
/*  padding-top: 1.5rem;  */
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Arial, Helvetica, sans-serif;
    height: 70px;
 
   
  
    
 
    
  }





.titulo-logo {
  font-family: 'Great Vibes', cursive; /* elegante, tipo firma */
    font-size: 30px; /* aquí es donde ajustas el tamaño */

  font-weight: 400;
  color: #ffd700;                      /* dorado premium */
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4); /* profundidad sutil */
 margin-top: 1.1rem;




  
}

   /*der img {
    max-width: 180px;
  } */
  
  .titulo1 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
    gap: 20px;
  }
  .titulo1 span {
    font-size: inherit;
  }




/* --------------SEO----------------- */
  /* Ocultar el H1 solo visualmente, pero Google lo lee */
.seo-hidden {
  position: absolute; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  white-space: nowrap; 
  border: 0;
}









  
  /* Sección de video */
  .video-section {
   


  background: linear-gradient(to bottom,
    #000000 0%,
    #9f6c2f 20%,
    #d89e33 40%,
    #e6a700 60%,
    #d0b100 100%);
  padding: 2rem 1rem;
 
    
  }
  .video-section h2,
  .video-section .headline {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.4;
  }















/* Contenedor del video */
/* Contenedor general */
.video-container {
  width: 100%;
  max-width: 1030px;   /* límite en pantallas grandes */
  margin: 20px auto;   /* centrado con margen */
  background: #000;    /* fondo negro */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Mantiene proporción 16:9 */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  height: 0;

  


  
}

/* El iframe ocupa todo el espacio */
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}





  
  
  
  /* CTA */
  .cta-container {
    margin-top: 1.5rem;
  }
  .cta-button {
    width: 30%;
    background: #000;
    color: #ffd700;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px #ffd70088;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .cta-button:hover {
    transform: scale(1.05);
  }
  
  /* Estrellas */
  .stars {
    margin-top: 1rem;
    font-size: 2rem;
    letter-spacing: 5px;
   
  }
  


  
  /* Estilo dibujado circular */
  .circle-draw {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .circle-draw::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid red;
    border-radius: 50%;
    z-index: -1;
    box-sizing: border-box;
    animation: drawCircle 2s ease-out forwards;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    mask-image: radial-gradient(closest-side, black 95%, transparent 100%);
  }
  @keyframes drawCircle {
    0% {
      clip-path: circle(0% at 50% 50%);
      opacity: 1;
    }
    100% {
      clip-path: circle(100% at 50% 50%);
      opacity: 1;
    }
  }
  
  /* Texto dorado */
  .gold-gradient {
    background: linear-gradient(to bottom, #795d01, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  /* Sección de información */
  .info-section {
      background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);

      padding: 3rem 1rem;

    color: #fff;
    text-align: center;
  }
  .info-section h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
   
      color: #ffd700; /* dorado */
  text-shadow: 1px 1px 8px rgba(255, 215, 0, 0.4); /* brillo suave */

    position: relative;
    display: inline-block;
     font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600; /* títulos más fuertes */
  }













  .info-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }
  .info-text {
    flex: 1 1 55%;
    text-align: left;
  }
  .info-text h3 {
     font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    font-weight: 500;
  line-height: 1.4;
           font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;


  }


.info-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #ddd; /* texto más suave sobre fondo oscuro */
       font-family: 'Montserrat', sans-serif; /* diferente fuente para la P */
       



 
}

  
  .info-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
         font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  }
  .info-text ul li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
  }
  .info-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
   font-size: 1.2rem;
    color: #ffd700; /* dorado */
  }
  .info-image {
    flex: 1 1 40%;
    text-align: center;
    perspective: 1000px; /* hace que el efecto 3D sea más realista */
  }
 .info-image img {
   max-width: 100%;
  height: auto;
   border-radius: 16px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); */
  transition: transform 0.6s ease, box-shadow 0.6s ease, filter 0.6s ease;
  animation: float 6s ease-in-out infinite;
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
  

.info-image img.enter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.info-image img:hover {
  transform: scale(1.07) rotateY(3deg) rotateX(2deg);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.8);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}





/* Animación flotante suave */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-10px) translateX(5px); }
  50% { transform: translateY(8px) translateX(-5px); }
  75% { transform: translateY(-5px) translateX(3px); }
}



/* estilos parra el boton */

.cta-button2 {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;          /* quita subrayado */
  text-align: center;
  color: #000;                    /* texto negro */
  background: linear-gradient(90deg, #ffd700, #ffea00); /* dorado degradado */
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 1rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.cta-button2:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
  background: linear-gradient(90deg, #ffea00, #ffd700); /* invierte el degradado */
}


  
  
  
  






















/* Icono flotante de WhatsApp */
.whatsapp-icon {
  position: fixed;

  /* bottom: 90px; */
   bottom: 20px;  /* ASI ESTABA POR DEFECTO */
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.whatsapp-icon img {
  width: 32px;
  height: 32px;
}

/* Chat flotante grande */
.whatsapp-chat {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  max-width: 90%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  display: none;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  animation: slideUp 0.6s ease forwards;
}




input,
textarea {
  font-size: 16px !important;
}


#whatsappChat {
  transition: all 0.15s ease;
}

/* Resto de estilos del chat (chat-header, chat-body, chat-footer, etc.) como antes */
.chat-header { background: #25d366; color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 10px; }
.chat-header img { width: 24px; height: 24px; margin-right: 8px; }
.chat-header span { font-weight: 600; flex-grow: 1; }
.chat-header button { background: transparent; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.chat-body { padding: 10px; max-height: 250px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.chat-message { padding: 8px 12px; border-radius: 16px; font-size: 14px; line-height: 1.4; max-width: 80%; }
.bot-message { background: #f1f0f0; color: #000; align-self: flex-start; animation: fadeIn 0.5s ease; }
.user-message { background: #25d366; color: #fff; align-self: flex-end; animation: fadeIn 0.5s ease; }
.chat-footer { display: flex; padding: 8px; border-top: 1px solid #ddd; gap: 6px; }
.chat-footer input { flex-grow: 1; padding: 8px 10px; border-radius: 20px; border: 1px solid #ccc; outline: none; font-size: 14px; }
.chat-footer button { background: #25d366; color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; }
.chat-footer button:hover { transform: scale(1.1); }

/* Animaciones */
@keyframes slideUp { 0% { transform: translateY(100px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes fadeIn { 0% { opacity: 0; transform: translateY(5px); } 100% { opacity: 1; transform: translateY(0); } }


















  
  
  
  /* Responsive */
  @media (max-width: 992px) {
    .cta-button {
      width: 60%;
    }
  }
  @media (max-width: 768px) {
    .info-container {
      flex-direction: column;
      text-align: center;
    }
    .info-text {
      text-align: center;
    }
    .info-text ul li {
      padding-left: 0;
    }
    .info-text ul li::before {
      display: none;
    }
  }
  @media (max-width: 600px) {
 
   
 



 

    .cta-button {
      width: 70%;
    }

    
  }
  @media (max-width: 480px) {
    .cta-button {
      width: 90%;
    }
  }

























/* Separación entre texto e imagen solo en móviles */
@media (max-width: 768px) {
  .info-image {
    margin-top: 20px; /* ajusta este valor si quieres más o menos separación */
  }
}



 /*----- icono del boton play -------------------------*/

/* Media query para tablets / pantallas ≤ 768px */
@media (max-width: 768px) {
  .play-button-youtube {
    width: 90px !important;
    height: 55px !important;
  }
  .play-button-youtube span {
    font-size: 30px !important; /* ajusta el tamaño del icono ▶ */
    top: -1px !important;       /* sube un poquito el icono blanco */
  }
}

/* Media query para móviles / pantallas ≤ 480px */
@media (max-width: 480px) {
  .play-button-youtube {
    width: 80px !important;
    height: 50px !important;
  }
  .play-button-youtube span {
    font-size: 25px !important; /* icono más pequeño */
    top: -1px !important;       /* ajuste fino del icono blanco */
  }
}






















/* Separación entre texto e imagen solo en móviles */
@media (max-width: 768px) {
  .info-image {
    margin-top: 20px; /* ajusta este valor si quieres más o menos separación */
  }
}
