/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.modern-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.brand-section {
  text-align: center;
  width: 100%;
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 10px 0;
  background: linear-gradient(135deg, #d4af37, #f4e4a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.brand-tagline {
  font-size: 1rem;
  color: #cccccc;
  margin: 0;
  font-style: italic;
  opacity: 0.9;
}

.social-section {
  text-align: center;
  width: 100%;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #ffffff;
  letter-spacing: 1px;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link svg {
  width: 24px;
  height: 24px;
  z-index: 1;
  position: relative;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.5);
}

.social-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(255, 220, 128, 0.2));
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
  color: #cccccc;
  text-align: center;
}

.footer-decoration {
  display: flex;
  align-items: center;
  gap: 15px;
}

.decoration-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.decoration-diamond {
  color: #d4af37;
  font-size: 12px;
  opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
  .modern-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 30px;
    text-align: center;
    justify-items: center;
  }
  
  .brand-section,
  .social-section {
    text-align: center;
    width: 100%;
    max-width: 400px;
  }
  
  .brand-name {
    font-size: 2rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.8rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  
  .social-links {
    gap: 15px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-footer {
  animation: fadeInUp 0.6s ease-out;
}

.social-link {
  animation: fadeInUp 0.6s ease-out;
}

.social-link:nth-child(1) {
  animation-delay: 0.1s;
}

.social-link:nth-child(2) {
  animation-delay: 0.2s;
}
