* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

.site-footer {
  background-color: #212455ec;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 18rem;       /* tamaño más grande */
  max-width: 100%;    /* responsivo en móviles */
  height: auto;       /* mantiene proporción */
  margin-bottom: 15px;
  display: block;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 5px;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #cce4f2;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a {
  color: #cce4f2;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-social a {
  font-size: 1.2rem;
  color: #fff;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #01c4d4;
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #ccc;
}
