.footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 0.95em;
}

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

.footer-logo {
  flex: 1 1 250px;
}

.logo-footer {
  width: 80px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-style: italic;
  color: #bbb;
}

.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 160px;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
  font-size: 1.1em;
  margin-bottom: 12px;
  color: #e60023; /* rojo corporativo */
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 6px;
}

.footer-links a,
.footer-social a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover,
.footer-contact a:hover {
  color: #e60023;
}

.btn-contacto-footer {
  display: inline-block;
  margin-top: 5px;
  padding: 8px 16px;
  background-color: #e60023;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-contacto-footer:hover {
  background-color: #c4001d;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #aaa;
  font-size: 0.85em;
}
