* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Galderglynn Regular', sans-serif;
  }
  
  body {
    line-height: 1.5;
    background-color: #fff;
    color: #2c2c2c;
  }
  
  /* Header */
  header {
    background-color: #344429;
    color: #ccc8a9;
    padding: 1rem 1%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-bottom: 1px solid #344429;
  }
  
  header div img {
    width: 80px;
    background-color: #fff;
    padding: 3px;
    border-radius: 5px;
    height: 50px;
  }
  
/*mvp, persona y mapa*/

.mapadeempatia{
  padding-top: 20px;
  width: 100vw;
  height: auto;
  object-fit: cover;
}
.contenedor-imagenes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.persona,
.mvp {
  padding-top: 110px;
  width: 48%;
  height: auto;
  display: block;
}

.mapa {
  padding-top: 20px;
  width: 100vw;
  height: auto;
  object-fit: cover;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  color: #ccc8a9;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #4C5F41 (--color-hover);
}

  /* Navegación */
  nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  nav ul li a {
    color: #ccc8a9;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #fff;
  }
  
  /* HERO Section */
  .texto-superpuesto {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background: linear-gradient(#34442900, #344429),
    url(foto-fondo2.jpg) center / cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    text-align: center;
    color: #f4f4f4;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: darken;
  }
  
  .texto-superpuesto h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px #00000088;
  }
  
  /* Propuesta del proyecto */
  .propuesta-proyecto {
    background-color: #344429;
    color: #fdfcf9;
    text-align: center;
    padding: 4rem 2rem;
  }

  .propuesta-proyecto h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f4f4f4;
    font-family: 'Playfair Display', serif;
  }
  
  .propuesta-proyecto p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #f4f4f4;
  }

  /* SECCIÓN INTEGRANTES VM33 */

/* Caja de cada integrante tipo tarjeta */
.integrantes {
    background-color: #fdfcf9;
    padding: 0;
}

.integrantes article {
    background-color: #344429;
    border-radius: 15px;
    overflow: hidden;
    width: 250px;
    padding: 1rem;
    border: 2px solid #344429;
    transition: all 0.3s ease; /* aplica transición a todo: sombra + movimiento */

}

.integrantes article:hover {  /* efecto de hover luminoso para que resalten los integrantes al pasar el mouse */
    transform: translateY(-5px);
    border: 1px solid #344429;
}

/* Imagen dentro del artículo */
.integrantes article img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.integrantes h2 {
    font-size: 28px;
    color: #344429;
    text-align: center;
}

/* Texto dentro del artículo */

.integrante_texto {
    text-align: center;
}

.integrante_texto h3 {
    font-size: 16px;
    margin-top: 0.8rem;
    font-weight: bold;
    color: #ededed;
}

.integrante_texto p {
    font-size: 14px;
    color: #ccc8a9;
    margin: 0.2rem 0;
}

.integrante_texto a {
    background-color: #4C5F41;
    font-size: 14px;
    color: #ededed;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease;
}

.integrantes .contenedora {
    display: flex;
    flex-direction: row;         /* Asegura disposición horizontal */
    justify-content: center;     /* Centra horizontalmente */
    align-items: flex-start;
    flex-wrap: wrap;             /* Permite que se acomoden en varias filas si no entra */
    gap: 2rem;                   /* Espacio entre tarjetas */
    max-width: 1200px;
    margin: 0 auto;              /* Centrado del contenedor */
    padding: 1rem;
}

/* DATOS ACADÉMICOS */

.datos.academicos {
    background-color: #fdfcf9;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .academicos h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4C5F41;
    font-family: 'Playfair Display', serif;
  }
  
  .contenedora_2 ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  /* Tarjeta individual */
  .tarjeta-academica {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .tarjeta-academica img {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
  }
  
  .tarjeta-academica h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4C5F41;
    margin-bottom: 1rem;
  }
  
  .tarjeta-academica p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
  }
  
  .tarjeta-academica a {
    display: inline-block;
    margin-top: 1rem;
    color: #4C5F41;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .tarjeta-academica a:hover {
    color: #2c2c2c;
  }

/* PIE DE PÁGINA */

footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
  padding: 1.5rem;
  background-color: #344429;
  color: #ccc8a9;
  padding: 2rem 1rem;
  border-top: 1px solid #344432;
}
  
  .footer-contenido {
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 1rem;
  }