/* ===== BANNER.CSS - Estilos del banner y botones superiores ===== */

/* BANNER CON IMAGEN - OCUPA TODO SIN MÁRGENES */
.banner {
    width: 100%; /* Ancho completo */
    max-width: 100vw; /* FIX: No exceder viewport */
    margin: 0; /* Sin márgenes */
    padding: 0; /* Sin padding */
    display: block;
    position: relative;
    overflow: hidden; /* FIX: Ocultar cualquier desborde */
}

.banner a {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.banner a:hover {
    opacity: 0.9;
}

.banner img {
    width: 100%; /* Ancho completo del contenedor */
    max-width: 100%; /* FIX: Nunca exceder el contenedor */
    height: auto; /* Altura proporcional */
    display: block; /* Elimina espacio blanco debajo */
}

/* CONTENEDOR DE BOTONES EN BANNER */
.banner-buttons {
    position: absolute;
    bottom: 0; /* PEGADO al borde inferior del banner */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 100;
    /* FIX: Prevenir overflow de botones */
    max-width: 100%;
    box-sizing: border-box;
}

/* BOTÓN HAMBURGUESA/BOCINA */
.hamburger-container {
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: rgba(0, 0, 0, 0.85);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.menu-toggle:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

/* OCULTAR BOTÓN BOCINA EN DESKTOP - SOLO HAMBURGUESA */
.mobile-specials-btn {
    display: none;
}

/* MOSTRAR BOTÓN HAMBURGUESA EN DESKTOP */
.desktop-menu-btn {
    display: flex;
}

/* BOTÓN INICIAR SESIÓN EN BANNER */
.login-banner-container {
    display: flex;
    align-items: center;
}

.banner-login-btn {
    background: rgba(211, 47, 47, 0.95);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.banner-login-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
}

/* BARRA SUPERIOR */
.top-bar {
    background: #ebe6d7;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    border: 1px solid #e0e0e0;
}

.search-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 600px;
}
