* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.container h1 {
    font-size: 3rem;
    padding: 2rem 0;
    color: #C483DA;
}

.rotulo {
    display: flex;
    justify-content: center;
    background-color: #1D1D1D;
}

.rotulo p {
    color: #f5f5f5;
    font-size: 0.6rem;
    padding: 0.2rem;
}

/* Barra de navegación */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo img {
    width: 8rem;
}

.nav-links {
    background-color: #463CE1;
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 10px 35px;
    border-radius: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #D2D0F1;
    padding: 0px 20px;
    font-weight: 500;
}

.seleccion a {
    color: #ffffff
}

.boton-prototipo {
    background-color: #E9D9F7;
    color: #C483DA;
    padding: 10px 24px;
    border-radius: 24px;
    border: 1px solid #C483DA;
    text-decoration: none;
    font-weight: 500;
}

/* Inicio */

.inicio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #D2D0F1 0%, #ffffff 100%);
    border-radius: 24px;
    margin-top: 20px;
}

.inicio-content {
    max-width: 430px;
    padding: 20px 40px;
}

.inicio h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.inicio p {
    color: #818183;
    margin-bottom: 32px;
    line-height: 1.6;
}

.ver-plan {
    background-color: #F6EEC9;
    color: #1D1D1D;
    padding: 12px 32px;
    border-radius: 24px;
    border: 1px solid #FAD21B;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inicio-image {
    width: 50%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    padding: 1rem;
}
.inicio-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

/* Inicio App */

.subtitulo-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inicio-app ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.inicio-app li {
    list-style: none;
}

.inicio-app img {
    width: 80%;
    border-radius: 10%;
    border: 2px solid #C483DA;
}

.subtitulo-app {
    text-align: center;
    font-size: 2rem;
    padding: 3rem;
    color: #463CE1;
}

h3 {
    padding: 1rem 0;
    font-size: 1.5rem;
    color: #818183;

}



/* Grupo */

.inicio-grupo {
    display: flex;
    margin-top: 5rem;
    margin-bottom: 5rem;
    background-color: #D2D0F1;
    border: 1px solid #463CE1;
    border-radius: 24px;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
}

.subtitulo-grupo {
    width: 32ch;
    font-size: 2rem;
    padding: 3rem;
    color: #463CE1;
}

.integrantes img {
    max-width: 65%;
    border-radius: 10%;
    border: 1px solid #463CE1;
}

.integrantes {
    display: flex;
    list-style: none;
    
}

.estudiante {
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.estudiante img {
    width: 280px;
    height: auto;
}

.estudiante a {
    font-size: 1.5rem;
    padding: 0.5rem;
    text-decoration: none;
    color: #463CE1;
}

.estudiante p {
    color: #818183;
    font-size: 18px;
}

.datos-obligatorios {
    padding: 1rem;
}

/* Mapa */

.link_figma {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Footer */

footer {
    background-color: #1D1D1D;
    padding: 1rem;
}

.text-footer {
    display: flex;
    padding: 3rem;
    justify-content: space-between;
    color: #f5f5f5;
    font-size: small;
}

.footer-2 {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}