/* Footer Elegante - Grupo Vel */
.elegant-footer {
  position: relative;
  background-image: url("../../../assets/images/16800-1500x1125.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #ffffff;
  overflow: hidden;
}

.elegant-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #03A9F4 0%, #E91E63 50%, rgb(47 72 118 / 60%) 100%);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 30px;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand-section {
  padding-right: 30px;
}

.footer-brand {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff 0%, #03A9F4 50%, #E91E63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, #03A9F4, #E91E63);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
  color: #ffffff;
}

.social-link .socicon {
  font-size: 20px;
  line-height: 1;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #03A9F4, #E91E63);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  font-weight: 400;
  padding-left: 18px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: #03A9F4;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 24px;
  transform: translateX(3px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 35px;
  padding-bottom: 35px;
}

.copyright-text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.btn-footer-cta {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #03A9F4, #E91E63);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-footer-cta:hover {
  background: linear-gradient(135deg, #E91E63, #03A9F4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.5);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-footer-cta:active {
  transform: translateY(-1px) scale(0.98);
}

/* Responsividade */
@media (max-width: 991px) {
  .footer-brand-section {
    padding-right: 15px;
    margin-bottom: 20px;
  }
  
  .footer-content {
    padding: 60px 0 20px;
  }
  
  .footer-wave svg {
    height: 60px;
  }
}

@media (max-width: 767px) {
  .footer-brand {
    font-size: 1.75rem;
  }
  
  .footer-title {
    margin-top: 20px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .btn-footer-cta {
    margin-top: 15px;
  }
}
