/* Elimina el espacio blanco superior */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Gris muy clarito (casi blanco) */
    color: #333; /* Texto gris oscuro (no negro puro para que no canse la vista) */
}

/* Hero section */
.hero-section {
    position: relative;
    background: url('../images/Mexicano.jpg') no-repeat center center/cover;    height: 80vh;
    margin-top: 0;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.position-relative.z-index-1 {
    z-index: 1;
}

/* Botones */
.btn-warning {
    background-color: #ffc107;
    border: none;
    transition: all 0.3s;
}

.btn-warning:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.btn-outline-light {
    border: 2px solid #fff;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

/* Tarjetas hover - Cerveza Nacional, Refrescantes, Abarrotes Básicos */
.hover-card {
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef;
}

.hover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #ffc107 !important;
    background-color: #ffffff !important;
}

.icon-square {
    background-color: #ffc107;
}

/* Tarjetas de categorías (Cervezas, Bebidas Refrescantes, Botanas, Abarrotes) */
.category-card-light {
    background-color: #fff;
    transition: all 0.3s;
}

.category-card-light:hover {
    background-color: #fffbe6;
    transform: translateY(-5px);
    border: 1px solid #ffc107 !important;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}