*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
}


.logo-container h1{
    margin-left:20px;
    font-size:24px;
}

/* BOTONES DERECHA */

.menu-derecha{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:12px;
}

.carrito,
.mi-cuenta{
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-size:15px;
    font-weight:bold;
    transition:0.3s;
}

.carrito{
    background:#28a745;
    color:white;
}

.carrito:hover{
    background:#218838;
    transform:translateY(-2px);
}

.mi-cuenta{
    background:#ffcc00;
    color:#000;
}

.mi-cuenta:hover{
    background:#ffd633;
    transform:translateY(-2px);
}

/* MENU */

nav{
    margin-top:15px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

nav a{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#34236e;
    color:white;
    text-decoration:none;
    padding:8px 14px;
    border-radius:20px;
    font-size:14px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    background:#ffcc00;
    color:#000;
    transform:translateY(-2px);
}


button{
    padding:10px;
    cursor:pointer;
}
.logo-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    max-width:1300px;

    margin:auto;

    padding:8px 20px;

    min-height:90px;

}

header{
    background:#1B1240;
    color:white;
    padding:10px 0;
}
.logo-container img{
    width:90px;
    height:auto;
}
.hero{
    text-align:center;
    padding:60px 20px;
    background:white;
}

.hero h2{
    font-size:40px;
    color:#1B1240;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    margin-bottom:25px;
}

.btn-principal{
    display:inline-block;
    background:#ffcc00;
    color:#000;
    text-decoration:none;
    padding:14px 30px;
    border-radius:10px;
    font-weight:bold;
    font-size:18px;
}



footer{
    background:#1B1240;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}
/* CONTACTO */





/* =========================
   WHATSAPP FLOTANTE
========================= */

.whatsapp-flotante{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    background:#25D366;
    color:white;

    padding:12px 18px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

    transition:.3s;
}

.whatsapp-flotante:hover{
    transform:translateY(-3px);
    background:#1ebe5d;
}

.whatsapp-flotante i{
    font-size:28px;
}

.whatsapp-flotante span{
    font-size:16px;
}

/* Versión móvil */

@media(max-width:768px){

    .whatsapp-flotante{

        bottom:20px;
        right:20px;

        padding:14px;

        border-radius:50%;
    }

    .whatsapp-flotante span{
        display:none;
    }

    .whatsapp-flotante i{
        font-size:30px;
    }

}
/* =========================
   RESPONSIVE MOVIL
========================= */

@media (max-width: 768px){

    .logo-container{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    

    .logo-container h1{

    font-size:20px;

    margin-left:15px;

     }

    .menu-derecha{
        margin:0;
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

    .carrito,
    .mi-cuenta{
        font-size:14px;
        padding:10px 15px;
    }

    nav{

    padding:10px 0 15px;

    }

    nav a{
        font-size:13px;
        padding:8px 12px;
    }

}


