* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #e94560;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 5px;
}

.nav-link a {
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 15px;
}

.nav-link a:hover {
    background-color: #e94560;
    color: white;
}

.tienda-icon a {
    font-size: 22px;
    color: white;
    padding: 10px 20px;
    border: 2px solid #e94560;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.tienda-icon a:hover {
    background-color: #e94560;
    color: white;
}

/* ===== MENU HAMBURGUESA ===== */
.hamburguesa {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 15px;
    }

    .hamburguesa {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 10px;
    }

    .nav-links.abierto {
        display: flex;
    }

    .nav-link a {
        display: block;
        padding: 12px 15px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .tienda-icon {
        margin-left: auto;
        margin-right: 10px;
    }

    .tienda-icon a {
        font-size: 18px;
        padding: 8px 15px;
    }
}
footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    background: #0f0f1a;
    color: white;
    padding: 60px 40px 30px;
}

.logo2 a {
    font-size: 28px;
    color: #e94560;
    font-weight: bold;
}

.logo2 p {
    margin-top: 10px;
    color: #888;
}

.navegacion h4,
.footer-productos h4,
.footer-contacto h4 {
    color: #e94560;
    margin-bottom: 15px;
    font-size: 18px;
}

.navegacion a,
.footer-productos a,
.footer-contacto a {
    display: block;
    color: #aaa;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.navegacion a:hover,
.footer-productos a:hover,
.footer-contacto a:hover {
    color: #e94560;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    margin-top: 20px;
    color: #666;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    transition: box-shadow 0.3s;
}

.whatsapp a:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 15px 20px;
    }
    .nav-link a {
        padding: 10px 12px;
        font-size: 13px;
    }
    footer {
        padding: 40px 20px 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 20px;
    }
    .logo2 a {
        font-size: 24px;
    }
    .whatsapp a {
        width: 50px;
        height: 50px;
    }
}
