

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #f1f1f1;
  font-family: Arial, sans-serif;
  font-size: 14px;
  
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 40px 60px;
}

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

.footer-column h3 {
  color: #d4af37;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  line-height: 1.5;
  color: #f1f1f1;
}

/* Estilo para el icono de Facebook */
.footer-column i.fa-facebook-f {
  background-color: #d4af37;
  color: #1a1a1a;
  border-radius: 50%;
  padding: 4px 7px;
  margin-left: 5px;
  font-size: 14px;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.footer-column i.fa-facebook-f:hover {
  background-color: #f4d03f;
  transform: scale(1.1);
}

/* Segunda columna h3 adicional */
.footer-column h3:nth-of-type(2) {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  padding: 25px 20px;
  color: #b0b0b0;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #f4d03f, #d4af37, transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
 
  
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-column {
    flex: 1 1 100%;
    min-width: auto;
  }
}