.footer {
  background: linear-gradient(to bottom, #600000, #400000);
  padding: 60px 20px;
  padding-bottom: 150px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.footer-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  width: 200px;
}

.footer-titulo {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-linea {
  width: 40px;
  height: 4px;
  background-color: #c40000;
  border-radius: 4px;
  margin: 0 auto 15px auto; 
  margin-bottom: 15px;
}

.footer p {
  margin: 8px 0;
  color: #ccc;
  font-size: 16px;
}

.footer-copy {
  background-color: #5c0000;
  text-align: left;
  padding: 10px 150px;
  color: #fff;
  font-size: 14px;
}

