/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
  padding-bottom: 50px;
}

/* Encabezado */
header {
  background-color: #003366; /* Azul institucional */
  color: white;
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header .slogan {
  font-size: 1.1rem;
  font-style: italic;
  color: #e0e0e0;
}

/* Navegación */
.nav {
  margin-top: 20px;
}

.nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  color: #cc0000; /* Rojo como acento */
  text-decoration: underline;
}

/* Secciones */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: white;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

section h2 {
  color: #000000; /* Verde institucional */
  margin-bottom: 20px;
  font-size: 1.8rem;
}

section ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Galería */
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.galeria img {
  width: 300px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* Contacto */
#contacto p {
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #003366; /* Azul institucional */
  color: white;
  position: relative;
  margin-top: 40px;
}
h2.titulo-equipo {
  color: rgb(255, 255, 255) !important;
  text-align:center;
  font-size: 3.0rem; /* o ajusta el tamaño a tu gusto */
  font-weight: 900;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-transform: none; /* esto quita las mayúsculas forzadas */
}
