/* Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
	background-color: #669acc;
}

:root {
  --azul-oscuro: #015a8c;
}

.header {
  text-align: center;
  padding: 20px 0px;
  background-color: transparent;
}
.logo-header {
  max-width: 500px;
  height: auto;
}

.zona-superior {
  background: url('img/Imagen3.jpg') center/cover no-repeat;
  padding: 20px 20px 200px;
  color: white;
  text-align: center;
  position: relative;
}
.contenido-zona-superior h1 {
  font-size: 2em;
  margin-bottom: 0.3em;
}
.contenido-zona-superior p {
  font-size: 1.2em;
}

.zona-imagenes-superpuestas {
  margin-top: -250px;
  position: relative;
  z-index: 10;
}
.contenedor-imagenes {
	
  background: transparent;
  padding: 80px 0px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.columna-imagen {
	max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.imagen-con-boton {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.imagen-con-boton img {
  width: 100%;
  height: auto;
  display: block;
}
.boton-superpuesto {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 15px;
  white-space: nowrap;
  text-align: center;
  background-color: #669acc;
  color: white;
  border: 1px solid white;
  border-radius: 6px;
  text-decoration: none;
}
.boton-superpuesto:hover {
  background-color: #003f63;
}

.footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 80px;
  font-size: 0.9em;
}
.footer-contenedor {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  max-width: 400px;
  flex: 1 1 300px;
}

.footer-col.izquierda {
  text-align: right;
}

.footer-col.derecha {
  text-align: left;
}
.footer-col {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

/* Esto asegura que cada columna puede tener alineación independiente */
.footer-col.izquierda {
  align-items: flex-end;
  text-align: right;
}
.footer-col.derecha {
  align-items: flex-start;
  text-align: left;
}
.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;

}
.footer-redes a {
  margin: 0 10px;

}
.footer-redes img {
  width: 30px;
  height: 30px;
}
.footer-texto {
  font-size: 0.85em;
  line-height: 1.5em;
  margin-top: 10px;
}
.alineado-derecha {
  text-align: right;
}
.alineado-izquierda {
  text-align: left;
}
@media (max-width: 700px) {
  .contenedor-imagenes {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-col {
    align-items: center;
  }
  .alineado-derecha,
  .alineado-izquierda {
    text-align: center;
  }
}
/* Redes sociales en fila (icono + texto) */
.footer-col.derecha .red-social {
  display: flex;
  align-items: center;
  margin: 5px 0;
  text-decoration: none;
  color: white;
}

.footer-col.derecha .red-social img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.footer-col.derecha .red-social span {
  font-size: 14px;
}

.footer-col.derecha .red-social:hover {
  opacity: 0.8; /* efecto opcional al pasar el ratón */
}
/* Responsive: centrar en móvil */
@media (max-width: 700px) {
  .footer-col.izquierda {
    align-items: center;
  }

  .footer-col.derecha {
    align-items: center;
  }

  .footer-col.izquierda .footer-texto {
    text-align: center;
  }

  .footer-col.derecha .red-social span {
    text-align: left;
  }
}