/* Fuente */
body {
    font-family: 'Krub', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f82061;
    color: #333;
}

/* HEADER */
.header {
    background-color: #e91e63;
    padding: 1rem;
    text-align: center;
}

.header__logo {
    max-width: 300px; 
    margin: 3rem 0;
}

/* NAV */
.navegacion {
    display: flex;
    justify-content: center;
    background-color: #f06292;
    padding: 10px;
}

.navegacion__enlace {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navegacion__enlace--activo {
    border-bottom: 2px solid white;
}

/* MAIN */
.contenedor {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
}

/* Grid de productos */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.producto {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform .2s;
}

.producto:hover {
    transform: scale(1.05);
}

.producto__imagen {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.producto__informacion {
    padding: 15px;
    text-align: center;
}

.producto__nombre {
    font-size: 1.2rem;
    font-weight: bold;
}

.producto__precio {
    color: #e91e63;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Login específico */
.login-body {
    background-color: #f82061;
}

.login-image {
    background: url('/img/iniciosesion.jpg') no-repeat center center;
    background-size: cover;
}

@media (max-width: 768px) {
    .login-image {
        height: 200px;
    }
}

.btn-pink {
    background: linear-gradient(90deg, #ff7eb3, #ff758c);
    color: white;
    border: none;
    transition: .3s;
}

.btn-pink:hover {
    opacity: .85;
    color: white;
}

.card:hover {
    transform: translateY(-6px);
    transition: .3s;
}
