﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.menu-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #002147; /* Azul oscuro */
    padding: 10px 20px;
    color: white;
    flex-wrap: wrap;
}

.menu-logo {
    height: 150px;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
}

    .menu-items a {
        margin-left: 20px;
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
    }

        .menu-items a:hover {
            color: #66ccff;
        }

@media (max-width: 600px) {
    .menu-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-items {
        flex-direction: column;
        margin-top: 10px;
    }

        .menu-items a {
            margin-left: 0;
            margin-bottom: 10px;
        }
}

.integrante-container {
    display: flex;
    flex-wrap: nowrap; /* No permite que los elementos pasen a otra línea */
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    margin-top: 24px;
    width: 100%;
    overflow-x: auto; /* Permite desplazamiento horizontal */
    padding-bottom: 16px; /* Espacio para que no se corte el scroll */
}

.integrante {
    flex: 0 0 220px; /* Ancho fijo, no se encoge ni crece */
    text-align: center;
    margin-bottom: 24px;
    box-sizing: border-box;
}


    .integrante img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

    .integrante .nombre {
        font-weight: bold;
        margin-top: 8px;
    }

    .integrante .rol {
        color: #555;
        margin-top: 4px;
    }

    .integrante .correo {
        color: #0074d9;
        font-size: 0.95em;
        margin-top: 4px;
        word-break: break-all;
    }
