.footer {
  background-color: rgb(0, 15, 29);
  color: rgb(247, 247, 247);
  padding: 2rem 1rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; /* centrado horizontal */
  gap: 10px; /* espacio entre logo y texto */
  margin-top: .6em;
  margin-bottom: 1.6rem; /* 🔹 igual que el margin-top del divider */
} 

.icon-footer {
  height: 1.6em;
}

.text-logo-footer {
  color: rgb(247, 247, 247);
  font-size: 1.6em;
  font-weight: 600;
  margin: 0;           /* 🔹 elimina espacio por defecto abajo del texto */
  line-height: 1;      /* 🔹 hace el bloque más compacto */
}

.footer-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 0.5rem auto; /* 🔹 igual separación arriba y abajo */
  max-width: 300px;
}

.footer-social {
  margin-top: 1.6em;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social a {
  color: rgb(247, 247, 247);
  font-size: 1.7rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: rgb(254, 215, 48); /* color al pasar el mouse */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo img {
    height: 1.4em;
  }

  .text-logo-footer{
    font-size: 1.4em;
  }

  .footer-social a {
    font-size: 1.4rem;
  }
}
