@charset "utf-8";
* body { box-sizing: border-box;
}
img {
    max-width: 100%;
}

header {
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: #324839;
}

footer {
  justify-items: center;
  text-align: center;
  padding: 20px 30px;
  background-color: #324839;
  color: #fff;
}

/*tipogradfia para todoss*/
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #324839;
  background-color: #fff8dc;
  margin: 0;
  padding: 0;
}

#logo img {
  padding: none;
  max-width: 20%;
    height: auto;
    margin: 0;
    padding-bottom: 20px;
    padding-top: 20px;
}

header nav ul {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: flex-start;
}

header nav ul li a {
  text-decoration: none;
  font-size: large;
  font-weight: bold;
  color: #eba148;
  background-color: #324839;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

header nav ul li a:hover,
header nav ul li a:focus {
  background-color: #eba148;
  color: #324839;
}
.fotos-tema {
  text-align: center;
}

.fotos-tema img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

/*essto son para lso margenes generales*/
section {
  margin: 40px 20px;
  padding: 20px;
}

h1,
h2,
h3,
h4 {
  margin-top: 20px;
  margin-bottom: 15px;
}

p {
  margin: 10px 0;
  line-height: 1.6;
  max-width: 65ch;
}

.titulo-parrafo.tema {
  text-align: center;
}

.titulo-tema {
  margin-bottom: 20px;
  text-align: center;
}

.parrafo-tema {
  margin: 0 auto;
  font-size: larger;
  max-width: 65ch;
  text-align: center;
  line-height: 1.4;
}

.titulo-equipo {
  text-align: center;
  margin-bottom: 30px;
}

.equipo {
  margin: 40px 20px;
  padding: 20px;
}

/*se modifica columnas y fila columns o rows*/
.articulos-equipo {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));;
  margin-block-end: 30px;
}

/* Estilo de cada artículo */
.articulos-equipo article {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column; /* Imagen arriba, texto abajo */
  align-items: center;
  text-align: justify;
}

/* Imagen de nosotros */
.articulos-equipo article img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.texto-equipo h3 {
  margin-bottom: 10px;
  text-align: center;
}

.texto-equipo p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Enlace link pefil */
.texto-equipo a {
  text-decoration: none;
  color: #eba148;
  font-weight: bold;
}

.texto-equipo a:hover {
  text-decoration: underline;
  background-color: transparent;
    color: #324839;
    font-weight: bold;
    border: 2px solid #324839;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 0.5rem;
}
