/* ESTILO GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f9fc;
    color: #333;
}

/* HEADER */
.header {
    background: #a8d4ff; /* Azul clarito */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #004a80;
    text-decoration: none;
}

/* MENÚ HAMBURGUESA */
/* Botón hamburguesa */
.hamburger {
    font-size: 32px;
    cursor: pointer;
    user-select: none;
    padding: 10px 15px;
    background: #4a90e2;
    color: white;
    border-radius: 6px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: #3a78c2;
}

/* Menú lateral */
.menu-lateral {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    background: #e8f0ff;
    padding: 20px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Botón cerrar menú */
.cerrar-menu {
    font-size: 28px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 10px;
}

/* Oculto */
.oculto {
    display: none;
}

/* Botones y entradas del menú */
.menu-btn {
    background: #4a90e2;
    color: white;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
}

/* Entradas blancas del menú */
.menu-entrada {
    background: white;
    padding: 10px;
    border-radius: 6px;
    margin-top: 5px;
    display: block;
    text-decoration: none;
    color: #333;
}

.menu-entrada:hover {
    background: #dce8ff;
}

/* Submenú */
/* 🔧 BLOQUE CORREGIDO PARA QUE EL SUBMENÚ SE OCUPE/SE DESPLIEGUE BIEN */
.submenu-content {
    flex-direction: column;
    gap: 10px;
}

.submenu-content.oculto {
    display: none;
}
/* 🔧 FIN DEL BLOQUE CORREGIDO */

/* CONTENIDO PRINCIPAL */
.contenido {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000015;
}

.contenido h1 {
    color: #005fa3;
    margin-top: 0;
    text-align: center;
}

/* LISTA DE POSTS */
.lista-posts {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.lista-posts li {
    margin-bottom: 15px;
    background: #e9f3ff;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.15s, background 0.2s;
}

.lista-posts li:hover {
    background: #d7eaff;
    transform: translateX(5px);
}

.lista-posts a {
    text-decoration: none;
    color: #004a80;
    font-size: 20px;
    font-weight: bold;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #e9f3ff;
    color: #004a80;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        text-align: center;
    }

    .nav-btn {
        display: inline-block;
        margin-top: 20px;
    }

    .contenido {
        margin: 20px;
        padding: 20px;
    }

    .contenido h1 {
        text-align: center;
    }

    .contenido li {
        padding: 10px 0px;
        font-size: 20px;
    }
}
