/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 12 2025 | 09:58:12 */
/* ===== FOOTER PROFESIONAL CON PÁGINAS LEGALES ===== */

/* Footer principal */
.site-footer {
  background: linear-gradient(135deg, #2c3e50, #34495e) !important;
  color: white !important;
  padding: 4rem 0 0 !important;
  margin-top: 4rem !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Contenedor del footer */
.site-footer .ast-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
}

/* Grid del footer */
.footer-content {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 3rem !important;
  margin-bottom: 3rem !important;
}

/* Secciones del footer */
.footer-section {
  text-align: left !important;
}

.footer-section h3 {
  color: #ecf0f1 !important;
  font-size: 1.3rem !important;
  margin-bottom: 1.5rem !important;
  font-weight: bold !important;
  position: relative !important;
}

.footer-section h3::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 3px !important;
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  margin-top: 0.5rem !important;
  border-radius: 2px !important;
}

/* Enlaces del footer */
.footer-section a {
  color: #bdc3c7 !important;
  text-decoration: none !important;
  display: block !important;
  margin-bottom: 0.8rem !important;
  transition: all 0.3s ease !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.footer-section a:hover {
  color: white !important;
  padding-left: 5px !important;
  border-left: 3px solid #667eea !important;
}

/* Párrafos del footer */
.footer-section p {
  color: #bdc3c7 !important;
  margin-bottom: 1rem !important;
  line-height: 1.6 !important;
  font-size: 0.95rem !important;
}

/* Copyright */
.footer-bottom {
  background: rgba(0,0,0,0.2) !important;
  padding: 2rem 0 !important;
  text-align: center !important;
  border-top: 1px solid #34495e !important;
  color: #bdc3c7 !important;
}

.footer-bottom p {
  margin: 0 !important;
  font-size: 0.9rem !important;
}

/* Enlaces del copyright */
.footer-bottom a {
  color: #667eea !important;
  text-decoration: none !important;
  margin: 0 0.5rem !important;
}

.footer-bottom a:hover {
  color: white !important;
  text-decoration: underline !important;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .footer-section {
    text-align: center !important;
  }
  
  .site-footer {
    padding: 3rem 0 0 !important;
  }
}