body {
  background: linear-gradient(135deg, #442380, #941b9a);
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*POP UP*/

#popup-ad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.popup-content img {
    width: 500px;
    height: 500px;
   /*border-radius: 1px;*/
}

#close-ad {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}


.admin a{
  color:rgb(110, 120, 130);
  position:absolute;
  right:10px;
  top:10px;
  text-decoration: none;
  font-size: 20px;

}

.admin a:hover{
  cursor:pointer;
  color: rgb(168, 171, 251);

}



header {
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid #fff;
  padding: 20px 0px;
}

header h1 {
  font-size: 4.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

/* Estilo para las secciones */
section {
  padding: 40px 20px;
}

.video-section {

  text-align: center;
}

video {
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
  video::-webkit-media-controls-download-button {
    display: none;
  }



/* Estilo para el formulario */

.form-container {
  border-radius: 10px;
  padding: 30px;
  max-width: 900px;
  width: 100%;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 0 auto;
}

.form-content {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #333;
  display: flex;
  justify-content: space-around;
}



.main-fieldset {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  width:60%;
}

.title {
  font-size: 28px;
  font-weight: bold;
  color: #8436d1;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.form-inputs {
  margin-bottom: 20px;
}

.input-fieldset {
  border: 2px solid #8436d1;
  border-radius: 5px;
  margin-bottom: 15px;
}

legend {
  border-radius: 5%;
  font-size: 14px;
  font-weight: bold;
  color: #8436d1;
  margin-bottom: 5px;
}

input,
textarea {
  width: 96%;
  padding: 10px;
  font-family: Arial; Sans-Serif;    
  font-size: 14px;
  color: #333;
  border: none;
}

textarea {
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #5e259e;
  box-shadow: none;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.actions-container {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  gap: 20px;
}


.decorative-box {
  background: #f3e9fe;
  padding: 15px 20px;
  border-radius: 5px;
  color: #8436d1;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.decorative-box:hover{
  transform: scale(1.05);
}

#button {
  background: linear-gradient(135deg, #8436d1, #5e259e);
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

#button:hover {
  background: linear-gradient(135deg, #5e259e, #8436d1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

/* Estilo para la imagen */
.image-section {
  text-align: center;
}

.image-section img {
  
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.image-section1 {
  text-align: center;
}


.image-section1 img {
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes glow {
  0% { box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); }
  100% { box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); }
}



/*

.whatsapp-icon {
    position: fixed;
    bottom: 30px; 
    right: 30px; 
    width: 60px; 
    height: 60px;
    z-index: 1000; 
  }
  
  .whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .whatsapp-icon img:hover {
    transform: scale(1.1); 
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
  }
*/
  
  /* Responsive  */
  @media (max-width:900px ) {

    *{
      padding:0;
      margin:0;
      box-sizing: border-box;
    }
    .body{
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
  
    }

    header h1{
      font-size:25px;
      padding: 20px;
    }

    .input{
      box-shadow: none;
      text-shadow: none;
    }

    input:focus,
    textarea:focus {
    outline: none; 
    box-shadow: none; 
    }
    
    .whatsapp-icon {
      width: 50px; 
      height: 50px;
      bottom: 20px; 
      right: 20px; 
      
    }

    form {
      padding: 20px;
      width:70%;
    }
    
        .image-section1 {
  text-align: center;
}

    .image-section1 img {
      max-width: 80%;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    
    
    .image-section1 img:hover {
      transform: scale(1.05) rotate(2deg);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    }
    
  
  }
  
  @media (max-width: 480px) {

    *{
      padding:0;
      margin:0;
      box-sizing: border-box;
    }
    .body {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: auto;
      width: 100%;
    }
    header h1 {
      font-size: 25px;
      margin:5px;
    }
    header p {
      font-size: 1rem;
    }
    
    .form-container {
      width: 90%;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-content: center;
    }

    .form-content{
      display: flex;
      margin: auto;
      flex-direction: column;
      justify-content: center;
      align-items: center;

    }
    
    #popup-ad {
        display: none; 
    }
   
    
    .input-fieldset {
      border: 2px solid #8436d1;
      border-radius: 5px;
      margin-bottom: 5px;
      width: 300px;
    }

    .input{
      box-shadow: none;
      text-shadow: none;
    }

    input:focus,
    textarea:focus {
    outline: none; 
    box-shadow: none; 
    }

    .actions-container{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

    }

    .decorative-box{
      width:auto;
    }

    .whatsapp-icon {
      width: 40px; 
      height: 40px;
      bottom: 15px; 
      right: 15px;
    }
    .title {
      font-size: 20px;
    }
    #button {
      font-size: 0.9rem;
      padding: 10px 20px;
   
    }

    .image-section {
  text-align: center;
}

.image-section img {
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  
}



    
    .image-section1 {
  text-align: center;
}

    .image-section1 img {
      max-width: 80%;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    
    
    .image-section1 img:hover {
      transform: scale(1.05) rotate(2deg);
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    }
  }
  