/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #000;
  background-size: cover;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 80px;
  width: auto;
}

/* NAV BAR */
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  color: #002c80;              /* Azul corporativo */
  text-decoration: none;
  font-size: 22px;              /* Igual que en contacto */
  font-weight: normal;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.7;                 /* efecto suave */
}

nav a.activo {
  border-bottom: 3px solid #002c80; /* Subrayado */
  padding-bottom: 5px;
}

.boton-contacto {
  background-color: #002c80;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.boton-contacto:hover {
  background-color: #001a4d;
}

/* SECCIÓN UBICACIÓN */
.seccion-ubicacion {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 60px 50px;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff; /* Asegura fondo blanco */
}

.imagen-ubicacion img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 5px;
}

.texto-ubicacion {
  flex: 1;
  min-width: 300px;
}

.texto-ubicacion h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #002c80;
}

.texto-ubicacion h1 span {
  font-weight: bold;
  color: #000;
}

.sede {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.sede .bandera {
  width: 40px;
  height: auto;
}

.sede h3 {
  color: #002c80;
  margin-bottom: 5px;
}

.sede p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #555;
}

/* FOOTER */
footer {
  background: #201c4c;
  color: #fff;
  padding: 90px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social a img {
  width: 30px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  font-size: 0.9em;
}
.footer-container .social a img {
  width: 50px;   /* ancho deseado */
  height: 50px;  /* alto deseado */
  margin-right: 10px; /* separación entre iconos */
  vertical-align: middle; /* alinea con el texto si hay */
  transition: transform 0.3s; /* para efectos hover */
}

.footer-container .social a img:hover {
  transform: scale(1.1); /* efecto hover */
}