.footer {
  background-color: #0a1f33;
  color: var(--color-blanco);
}

/* CONTENIDO PRINCIPAL */
.footer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* COLUMNAS */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

/* PARTE INFERIOR */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}