/* Fuente base */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #eee;
    margin: 0;
    padding: 0;
}

/* Barra superior */
.topbar {
    display: grid;
    grid-template-columns: auto 1fr; /* Logo + nav */
    align-items: center;
    background-color: #000;
    padding: 0.5rem 1rem;
    gap: 1rem;
}

.topbar img {
    height: 50px;
    width: 50px;
}

.topbar nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.topbar nav ul li {
    color: #000;
    font-weight: bold;
}

/* Título principal */
header h1 {
    color: #f9d547; /* amarillo */
    text-align: center;
    margin: 2rem 0 1rem;
    font-size: 2rem;
}

/* Imagen de portada */
header > img {
    display: block;
    margin: 0 auto 2rem;
    max-width: 90%;
    border-radius: 12px;
}

/* Secciones generales */
section {
    background-color: #111;
    color: #fff;
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
}

/* Subtítulos */
h2 {
    color:  #ecab0d;
    font-weight: 600;
    margin-top: 0;
}

/* Sub-subtítulos (por ejemplo “Prototipo”) */
h3 {
    color: #f9d547;
    text-decoration: underline;
    margin-top: 1rem;
    font-weight: 500;
}

/* Lista de integrantes */
.integrantes {
    list-style-type: none;
    padding-left: 0;
}

.integrantes li {
    font-weight: bold;
    color: #fff;
}

.integrantes p {
    font-size: 0.9rem;
    margin: 0 0 1rem 0.5rem;
    color: #ccc;
}

/* Footer */
footer {
    background-color: #000;
    color: #777;
    font-size: 0.85rem;
    padding: 2rem 1rem;
    text-align: center;
    line-height: 1.4;
}
