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

body {
    background-color: #1a1a1a; /* negro grisáceo */
    font-family: Arial, sans-serif;
    color: white;
    line-height: 1.6;
    padding: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header, main, footer {
    background-color: white;
    color: black;
    width: 90%;
    max-width: 800px;
    margin-bottom: 2em;
    padding: 2em;
    border-radius: 0.3em;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.contenedor-imagen{
    display: flex;
    justify-content: center;
}

h1, h2, h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

p, li, a {
    font-family: Arial, sans-serif;
    font-size: 1em;
    color: black;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin-bottom: 1em;
}

li {
    list-style: none;
}

ul{
    margin-bottom: 1rem;
}

.ficha-equipo img{
    width: 100px;
    height: auto;
}

.ficha-equipo{
    border: 0.1rem solid black;
    padding-left: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.6rem;
}

nav li a {
    background-color: #1a1a1a;
    color: white;
    padding: 0.5em 1em;
    border-radius: 0.3em;
}

nav li a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em 0;
}

footer {
    font-size: 0.8em;
    text-align: center;
}

/* Bloque del equipo */
section:nth-of-type(2) .equipo-contenedor {
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* para móviles */
}

section:nth-of-type(2) .equipo-contenedor div {
    text-align: center;
}

section:nth-of-type(2) .equipo-contenedor img {
    width: 100px;
    height: auto;
    border-radius: 0.3em;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* Estilos generales para imágenes destacadas */
.imagen-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-contenedor img {
    max-width: 90%;
    height: auto;
    margin: 1em auto;
    border-radius: 0.3em;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Texto y títulos en secciones */
section {
    padding:1rem;
    border: 0.1rem solid black;
    border-radius: 0.8rem;
    text-align: left;
    margin-bottom: 2em;
}

section h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

section p {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6em;
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
}
