*{
    margin: 0;
    padding: 0;
    transition-duration: 0.2s;
    overflow: hidden;

}
body{
    background-image: url(../assets/img/fondos/fondo1.jpg);
   
}
.logo{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.logo > #img-logo{
    width: 20%;
    height: auto;
    border-radius: 20px;

}
.menu{
    display: flex;
    justify-content: center;
}
  
.menu > .menu-principal > ul{
    display: flex;
    list-style: none;
}
.menu > .menu-principal > ul > li{
    padding: 2px;
    margin: 10px;
    list-style: none;
    padding: 0px 5px 0px 5px;
    border-radius: 5px;  
    text-decoration: none;
}   
.menu > .menu-principal > ul > li > a{
    text-decoration: none;
    color: rgb(0, 0, 0);
  
}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.menu > .menu-principal > ul > li > a:hover{
    color: rgb(255, 255, 255);
    border-bottom: 2px solid rgb(255, 255, 255);

}
main > .section-1{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    width: 500px;
    height: auto;
}
main > .section-1 > #articulo-1{
    width: 200px;
    height: auto;
}
main > .section-1 > #articulo-1:hover{
    width: 300px;
    height: auto;
}
main > .section-1 > #articulo-2{
    width: 200px;
    height: auto;

}
main > .section-1 > #articulo-2:hover{
    width: 300px;
    height: auto;
}
main > .precio{
    background-color: rgb(252, 59, 59);
    padding: 15px 30px;
    color: rgb(255, 255, 255);
    border-radius: 10px;
    margin-top: 10px;
    width: 700px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
main > .precio > p{
    margin-top: 10px;
  }
main > .precio > h2, h3{
  text-align: right;
  margin-bottom: 5px;
}
main > .precio > h2 {
    text-align: right;
    text-decoration: line-through;
    
  }
  main > .precio > .boton-compra{
   
    display: flex;
    justify-content: right;
  }

  #compra{
    width: 230px;
    font-size: 4vh;
    padding: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-family:Georgia, 'Times New Roman', Times, serif;
    background-color: rgba(255, 255, 255, 0.301);
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: none;
  }
  #compra:hover{
    background-color: rgb(255, 255, 255);
    color: rgb(255, 0, 0);
    transition: 1s;
  }

  #garantia{
    color:rgb(0, 0, 0);
    font-size: 10px;

}
  
  .marquee {
    position: absolute;
    white-space: nowrap;
    font-size: 24px;
    font-weight: bold;
    animation: moverTexto 30s linear infinite;
    
}

@keyframes moverTexto {
    from {
        left: 100%;
    }
    to {
        left: -100%;
    }
}

#texto-en-movimiento{
    font-size: 3vh;
    color: rgb(255, 255, 255);
    text-shadow: 1px 5px 20px rgb(0, 0, 0);
}
.flotador {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp {
    width: 60px; /* Ajusta el tamaño del ícono */
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

#whatsapp:hover {
    transform: scale(1.1);
}
