/* GENERAL */

* {
  box-sizing: border-box;
 }

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  background-color: #fafafa;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1{
  font-family: Montserrat, Helvetica, sans-serif;
  padding: .5rem;
  background-color: #000;
  font-size: 4.5rem;
  color: #fff;
  text-align: center;

}

h2 {
  font-family: Montserrat, Helvetica, sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 1.875rem;
}

h3 {
  font-family: Montserrat, Helvetica, sans-serif;
  font-weight: 800;
  text-align: center;
  font-size: 2.5rem;
}



p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.2rem;
}

.contenedor {
  width: min(75rem, clamp(100vw - 40px, 100vw - 20vw, 100vw - 400px));
  margin-inline: auto;
}

ul,
  ol {
    list-style: none;
    padding: 0;
  }

/* Header */

header {
  background: #000000;
  padding-block: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  height: 2.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

header .logo img {
  height: 100%;
  width: auto;
  display: block;
}

header nav a {
  display: inline-block;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding-block: 1rem;
  padding-inline: 1rem;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #000;
  background-color: #fff;  
}

header nav ul {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
/* ---------- Sección ---------- */
.mapanav {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border: 1px solid #000;
  border-radius: 20px;
  object-fit: cover;
}

.escenario {
  text-align: center;
  padding: 40px 20px;
}

.titulo-escenario {
  background: #000;
  color: #fff;
  padding: 8px 16px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 24px;
}

/* ---------- Contenedor de imágenes ---------- */
.contenedor-imagenes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

/* ---------- Imágenes ---------- */
.img-escenario {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 1px solid #000;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.img-escenario.alto {
  height: 100%;          /* se estira al alto del contenedor */
  object-fit: contain;   /* 👈 NO recorta, no deforma */
}



/* Footer */
footer {
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 3rem;
  padding: 1rem;
  text-align: center;
  background: #000000;
  color: #fff;
  font-size: 0.9rem;
}

footer p {
  width: 80%;
  justify-content: center;

}


@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  #integrantes {
    flex-direction: column;
    align-items: center;
  }
}

footer {
  background-color: #000;
  color: #fff;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: .875rem;
  text-align: center;
}
.footerp {
  text-align: center;
}