* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    align-items: center;
    text-align: center;
    background-color: #ffdd57;
  }
  

  #portada{
    margin-top: 30px;
  }
  .hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  #buyButton {
    background-color: #ffdd57;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #buyButton:hover {
    background-color: #fbc02d;
  }
  
  .about {
    padding: 40px 20px;
    max-width: 700px;
    margin: auto;
  }
  
  .about h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .about ul {
    list-style: none;
    padding-left: 0;
  }
  
  .about li {
    background: #f0f0f0;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
  }

  .video-container {
    position: relative;
    max-width: 500px;
    aspect-ratio: 9/16;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    z-index: 1;
    margin: 0 auto 30px auto;
  }
  
  .video-container:hover {
    transform: scale(1.05);
  }
  
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  footer {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }
  
  /* Estilos del botón flotante */
.floating-button {
  position: fixed; /* Fija la posición en la pantalla */
  bottom: 20px; /* Distancia desde la parte inferior */
  right: 20px; /* Distancia desde la parte derecha */
  width: 70px;
  height: 70px;
  background-color: rgb(17, 171, 29); /* Color de fondo del botón */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para darle efecto de elevación */
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

/* Icono dentro del botón */
.floating-button i {
  font-size: 50px;
  color: #fff; /* Color del icono */
  width: 100%;
}

/* Efecto hover para mayor elevación */
.floating-button:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Aumenta la sombra en hover */
}

/* Efecto activo cuando se hace clic */
.floating-button:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Disminuye la sombra al presionar */
}

.boton-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.buyButton {
  background-color: #ffdd57;
  color: #000;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  min-width: 200px;
}

.buyButton:hover {
  background-color: #fbc02d;
}

#anuncio{
  font-size: 25px;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #000;
font-weight: bold;
display: none;
}

@media (max-width: 600px) {
  .boton-container {
    flex-direction: column;
    align-items: center;
  }


  #anuncio{
    display: none;
  }

  .buyButton {
    width: 80%;
  }
}
