/* ==========================================
   FOOTER
   ========================================== */

.main-footer {
  background: var(--theme-bg-main);
  color: var(--theme-text-alt);
  padding: 60px 0 30px;
  border-top: 6px solid var(--theme-border);
  margin-top: 40px;
  transition: all 0.5s ease;
}

.footer-header {
  text-align: center;
  margin-bottom: 40px;
}

.footer-header h2 {
  color: var(--theme-secondary);
  font-size: 36px;
  margin-bottom: 10px;
  transition: color 0.5s ease;
  border-bottom: none;
}

.footer-header .divider {
  width: 80px;
  height: 4px;
  background: var(--theme-primary);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--theme-primary);
  transition: all 0.5s ease;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-info h3, .footer-social h3 {
  color: var(--theme-text-alt);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  transition: color 0.5s ease;
}

.contact-info {
  margin: 20px 0;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
  color: #FFD700;
}

.contact-line {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-line a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-line a:hover {
  color: var(--theme-secondary);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #333;
  color: #fff;
}

.social-circle svg {
  width: 28px;
  height: 28px;
}

.social-circle:hover {
  transform: translateY(-5px) scale(1.1);
}

.social-circle.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
}

.social-circle.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.social-circle.gmail:hover {
  background: #EA4335;
  border-color: #EA4335;
  box-shadow: 0 0 20px rgba(234, 67, 53, 0.5);
}

.social-circle.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.social-circle.instagram:hover {
  background: #E1306C;
  border-color: #E1306C;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #666;
  font-size: 14px;
}

/* Desktop Footer */
@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }
  
  .contact-line {
    justify-content: flex-start;
  }
  
  .social-icons {
    justify-content: flex-start;
  }
}