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

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
}
/*
header {
  background-color:  #1A75BB;
  color: white;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 50%;
}
*/

.encabezado {
  display: flex;
  align-items: center;
  justify-content: space-between; /* separa logo y texto */
  padding: 0 50px;
  background-color:  #1A75BB;
  height: 150px;
}

/* Logo alineado a la izquierda */
.logo {
  width: 145px;
  height: auto;
  margin-bottom: 4px;
  border-radius: 50%;
}

/* Texto centrado visualmente */
.titulo {
  flex: 1; 
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin: 0;
  font-family: serif;
}

.eslogan{
  flex: 1; /* ocupa el espacio disponible */
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.galeria {
  margin: 30px 0;
}

.contenedor-imagenes {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.contenedor-imagenes img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.contenedor-imagenes img:hover {
  transform: scale(1.05);
}

.redes {
  background-color: #ffffff;
  padding: 10px;
  border-top: 2px solid #0d6efd;
}

.iconos a {
  margin: 0 35px;
  text-decoration: none;
  color: #0d6efd;
  font-weight: bold;
  transition: color 0.3s;
}

.iconos a:hover {
  color: #0056b3;
}

footer {
  background-color: #1A75BB;
  color: white;
  padding: 10px;
  margin-top: 10px;
}



.iconos a {
  text-decoration: none;
  color: #1A75BB; /* color azul */
  font-size: 40px;
  transition: color 0.3s;
}

.iconos a:hover {
  color: #3DBBA8; /* cambia a verde al pasar el mouse */
}