/* ---------- ESTILOS GENERALES ---------- */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* ---------- HEADER (navbar, logo, menú, sociales) ---------- */

/* Menú responsive */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0484cb;
    padding: 10px 20px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container img {
    height: 50px;   
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff9800;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Sociales en header */
.social-icons {
    display: flex;
    gap: 15px;
    margin-left: auto;
    padding: 0 20px;
}

.social-icons a {
    color: white; /* En el header, mejor blancos */
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff9800;
}

/* Responsive: menú hamburguesa */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        background: #222;
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
}
