/* Footer Styles */
.footer {
  background: linear-gradient(-110deg, #4b5da0 30%, #3c4a80 80%);
  color: white;
  padding: 0.4rem 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
  width: 100%;
  transition: all 0.3s ease;
}

/* Footer adjustments when menu is open */
.main-content.with-menu .footer {
  margin-left: 0;
  width: 100%;
}

/* Footer adjustments for desktop with menu */
@media (min-width: 1025px) {
  .footer {
    margin-left: 250px;
    width: calc(100% - 250px);
    transition: all 0.3s ease;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  font-size: 1.2rem;
}

/* Social media specific colors on hover */
.social-icon.youtube:hover {
  background: rgba(255, 0, 0, 0.8);
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.twitter:hover {
  background: rgba(29, 161, 242, 0.8);
}

.social-icon.linkedin:hover {
  background: rgba(0, 119, 181, 0.8);
}

.social-icon.facebook:hover {
  background: rgba(66, 103, 178, 0.8);
}

.social-icon.whatsapp:hover {
  background: rgba(37, 211, 102, 0.8);
}

/* Responsive design */
@media (max-width: 768px) {
  .footer {
    margin-top: auto;
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
  
  .footer-social {
    gap: 0.8rem;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
  
  .social-icon i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 0.4rem 0;
    margin-top: auto;
    width: 100%;
  }
  
  .footer-content {
    padding: 0 0.8rem;
    gap: 0.8rem;
  }
  
  .footer-copyright {
    font-size: 0.75rem;
  }
  
  .footer-social {
    gap: 0.6rem;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
  }
  
  .social-icon i {
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .footer {
    margin-top: auto;
    width: 100%;
  }
  
  .footer-content {
    padding: 0 0.6rem;
    gap: 0.6rem;
  }
  
  .footer-copyright {
    font-size: 0.7rem;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
  }
  
  .social-icon i {
    font-size: 0.8rem;
  }
} 