* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background: #001e3c;
  color: white;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-logo {
  width: 190px;
  margin-top: -90px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  flex-direction: row;  /* En fila horizontal */
  gap: 20px;            /* Espacio entre íconos */
}

.social-icons span {
  width: 70px;   /* Más grandes */
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons span img {
  width: 35px;   /* Ícono interno más grande */
  height: 35px;
}

.footer .row {
  display: flex;
  justify-content: space-between; /* Espacia las columnas */
  align-items: flex-start; /* Alinea arriba */
  flex-wrap: wrap; /* Para que en pantallas pequeñas se acomode */
}

.footer-left, .footer-center, .footer-right {
  flex: 1;                 /* Que cada columna tenga el mismo ancho */
  min-width: 250px;        /* Para que no se encojan demasiado */
  margin: 10px;
}

.footer-right iframe {
  border-radius: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between; /* Izquierda y derecha */
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
}

/*.footer-bottom a {
  color: #fcfcfc;
}
*/
.direccion, .mail, .telefono {
  margin: 5px 0;
  font-size: 14px;
}

.derecha {
  margin-left: 15px;
  margin-bottom: 25px;
}

.siguenos {
  margin-top: 15px;
  font-size: 14px;
  margin-bottom: 25px;
}

.mail{
  margin-bottom: 25px;
}