
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
    
}

body{
    background:#0b0b0b;
    color:white;
}
/* imagenes con efecto*/
.producto img{
    transition: all 0.3s ease;
    

}

.productos img:hover{
    cursor: pointer;
    transform: scale(1.2);
    opacity: 1;
    filter: contrast(120%);
}


/* NAVBAR */
header{
    background:#050505;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.5);
    
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    
}

.logo{
    color:#d8790d;
    font-size:24px;
    font-weight:bold;
         color: #00f0ff;
    text-shadow: 
    0 0 5px #00f0ff,
    0 0 10px #00f0ff,
    0 0 20px #00f0ff,
    0 0 40px #00f0ff;
}
.logo span{
    position: relative;
    top: 20px;
    display: inline-block;
    animation: bounce 0.3s ease infinite alternate;
    font-size: 60px;
    color: #39c3e6;
    text-shadow: 
        0 1px 0 #020000,
        0 2px 0 #020000,
        0 3px 0 #000000,
        0 4px 0 #010000,
        0 5px 0 #010000,
        0 6px 0 transparent,
        0 7px 0 transparent,
        0 8px 0 transparent,
        0 9px 0 transparent,
        0 10px 10px rgba(0, 0, 0, 0.4);
           text-align: center ;
     color: #00f0ff;
    text-shadow: 
    0 0 5px #00f0ff,
    0 0 10px #00f0ff,
    0 0 20px #00f0ff,
    0 0 40px #00f0ff;

}
@keyframes bounce {
    100%{
        top: -20px;
        text-shadow: 
            0 1px 0 #000000,
            0 2px 0 #040000,
            0 3px 0 #000000,
            0 4px 0 #ccc,
            0 5px 0 #ccc,
            0 6px 0 #ccc,
            0 7px 0 #ccc,
            0 8px 0 #ccc,
            0 9px 0 #ccc,
            0 50px 25px rgba(0, 0, 0, 0.2);
    }
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:#00ff9c;
    box-shadow: #00ff9c;
    border-radius: 50%;

}
nav ul li {
    float: left;
}

nav ul li a {
    display: block;
    color: rgb(51, 248, 12);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;

    box-shadow: 0px 0px 10px 10px rgba(13,234,212);
    color:rgb(255,254,254);
    display: flex;
    flex-direction: column;
    align-items: center;
}


#inicio{
    height:100vh;
    background: url("https://images.unsplash.com/photo-1526506118085-60ce8714f8c5?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8Z3ltfGVufDB8fDB8fHww") center/cover no-repeat;
     background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}



button
{
    font-size: 60px;
    padding: 0px 15px 15px 20px;
    outline: auto;
    background-color: rgba(22, 113, 138, 0.737);
    color:rgba(0, 0, 0, 0.425) ;
    border: 50px;
    border-radius: 50px ;
}
button:hover
{
box-shadow: 0px 0px 10px 10px rgba(13,234,212);
    color:rgb(255,254,254);
    display: flex;
    flex-direction: column;
}



.btn{
    background:#00ff9c;
    color:black;
    padding:12px 20px;
    border:none;
    font-weight:bold;
    cursor:pointer;
    border-radius:5px;
}


section{
    padding:100px 40px;
    text-align:center;
}

#historia{
    background:#141414;
}

#historia p{
    max-width:800px;
    margin:auto;
    margin-top:20px;
    line-height:1.6;
}


.productos-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    margin-top:30px;
}

.producto{
    background:#141414;
    width:260px;
    padding:20px;
    border-radius:10px;
    transition:0.3s;
}

.producto:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(0,255,156,0.4);
}

.producto img{
    width:100%;
    border-radius:10px;
}

.precio{
    color:#00ff9c;
    font-size:22px;
    margin:10px 0;
}


/* PROMOS */
#promociones{
    background:#141414;
}

.promo{
    margin:15px 0;
    font-size:20px;
    color:#00ff9c;
}


footer{
    background:#000;
    padding:20px;
}
