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

body {
    font-family: 'Archivo', sans-serif;
    margin: 0;
    background-color: #f3f3f4;
    color: #000;
}

h1 {
    color: #0D3BE9;
    padding: 1rem;
    font-weight: 700;
    /* Negrita */
}

h2 {
    color: #606060;
    min-width: 20rem;
    font-weight: 500;
    /* Negrita */
}

h3 {
    color: #606060;
    font-weight: 500;
    /* Negrita */
}

/* NAVBAR */
.navbar {
    background-color: #0057ff;
    /* color de fondo del header */
    color: white;
    /* color de texto */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    z-index: 1000;
    padding: 1rem 2rem;
    /* relleno superior e inferior */
}

.menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
}


.navbar ul li a:hover {
    color: #000000;
    /* Cambiamos el color del texto al pasar el mouse */
    font-weight: bold
}

.year ul li a:hover {
    color: #000000;
    /* Cambiamos el color del texto al pasar el mouse */
    font-weight: bold
}

p {
    color: rgb(0, 0, 0);
    font-size: 1, 5rem;
    font-weight: 400;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* CONTAINER */
.container {
    padding: 2rem;
}

.presentacion h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* PROFILE SECTION */
.profile {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-main-info {
    text-align: center;
    padding: 6rem 8rem;
}

.profile-img {
    width: 160px;
    height: 160px;
    background-color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.profile-info{
    padding: 6rem 8rem;
}

.profile-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding: 0;
}

.team-photos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.team-img {
    width: 60px;
    height: 60px;
    background-color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.titulo-integrantes{
    color: #000000;
    padding: 2rem 0;
}

/* SUMMARY */
.summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
}

.highlight span {
    color: #0057ff;
    font-weight: bold;
    font-family: monospace;
}

/* TIMELINE */
.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.year {
    background: white;
    padding: 1rem;
    width: 15%;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.year.current {
    border: 2px solid #0057ff;
}

/* FOOTER */
.footer {
    background-color: #222;
    color: white;
    padding: 2rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer p {
    margin-bottom: 0.5rem;
    color: white;
}