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

:root {
    --color-principal: #1a3c8c;
    --color-secundario: #00c8be;
    --color-fondo: #dcdfe5;
    --espacio-chico: 0.5rem;
    --espacio-medio: 1rem;
    --borde-redondeado: 0.5rem;
    --sombra-suave: 0 4px 0.5rem rgb(0,0,0,0.5);
}

body{
    font-family: sans-serif;
    background-color: #e0c3d9;
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header{
    background-color: #95e0ea;
    padding: 1.5625rem;
    border-radius: 1.5625rem;
    margin: 0 auto 1.5625rem auto; /* <-- esto centra */
    box-shadow: 0.625rem 0.25rem 0.9375rem rgba(0,0,0,0.1);
    backdrop-filter: blur(0.625rem);

    display: flex;
    flex-direction: column;
    align-items: center;
    }
    nav ul{
    display: flex;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
}

nav a{
    display: block;
    background-color: rgb(54, 61, 151);
    color: rgb(176, 226, 233);
    text-decoration: none;

    padding: 0.9rem 1.5625rem;
    font-weight: bold;
    letter-spacing: 0.125rem;

    transition: 0.3s;
}

nav a:hover{
    background-color: #e0c3d9;
}

img{
    border: 0.5rem solid #e8e2d2;
    border-radius: 0.75rem;
}

.mockups{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mockups img{
    width: 40rem;
    height: auto;
}

h1{
    color: #153268;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.875rem;
    margin-bottom: 0.9375rem;
    font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 1rem;
}


p{
    margin-top: 1rem;
    }

section{
    background-color: #95e0ea;
    padding: 1.5625rem;
    border-radius: 1.5625rem;
    margin: 0 auto 1.5625rem auto; /* <-- esto centra */
    box-shadow: 0.625rem 0.25rem 0.9375rem rgba(0,0,0,0.1);
    backdrop-filter: blur(0.625rem);
    border: 0.25rem rgba(0, 0, 0, 5);

    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

h2{
    color: #153268;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.875rem;
    margin-bottom: 0.9375rem;
    font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 1rem;
}

img {
    max-width: 100%;
    }

.equipo{
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card{
    background-color: #95e0ea;
    width: 18rem;
    padding: 1.5rem;

    border-radius: 1rem;
    box-shadow: 0.3rem 0.3rem 1rem rgba(0,0,0,0.2);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.card h3{
    margin-bottom: 1rem;
}

.card img{
    width: 12rem;
    height: 12rem;
    object-fit: cover;

    border-radius: 50%;
    margin-bottom: 1rem;
}

.card a{
    text-decoration: none;
    background-color: white;
    color: #153268;

    padding: 0.7rem 1.5rem;
    border-radius: 2rem;

    border: 2px solid #95e0ea;
    font-weight: bold;
}

.card a:hover{
    background-color: #e0c3d9;
    color: #153268;
    cursor: pointer;
}