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

body {
    font-family: Arial, sans-serif;
    padding-top: 100px;
    /* Espacio para que el navbar no tape el carrusel */
    background-color: #f4f4f4;
}

/* NAVBAR FIJO (VERDE) */
.header-fijo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2e7d32;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.logo-central-queque {
    text-align: center;
}

.main-logo-text {
    display: block;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.nav-links-mobile {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-links-mobile a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* MENÚ LATERAL (SIDEBAR) - ESTO LO OCULTA */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    /* Escondido a la izquierda */
    width: 280px;
    height: 100%;
    background-color: #1b5e20;
    transition: 0.3s ease;
    z-index: 2000;
}

.sidebar.active {
    left: 0;
    /* Se muestra al activar */
}

.close-sidebar {
    color: white;
    font-size: 40px;
    padding: 15px;
    cursor: pointer;
    text-align: right;
}

.sidebar-links a {
    display: block;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}