



/* === FOOTER RESPONSIVO === */
.footer-container {
  animation: slideUpFooter 0.8s ease-out;
}

@keyframes slideUpFooter {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === COMPANY SECTION === */
.company-section {
  animation: slideUpStagger 0.6s ease-out 0.2s both;
}

@keyframes slideUpStagger {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === COMPANY HEADER (TRANSFORMER STYLE) === */
.company-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.company-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(59, 130, 246, 0.5) 50%, 
    transparent 100%);
}

.company-header:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* === LOGO CONTAINER === */
.logo-container {
  animation: slideUpLogo 0.6s ease-out 0.4s both;
}

@keyframes slideUpLogo {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.company-logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
  border-color: rgba(59, 130, 246, 0.3);
}

/* === TITLE CONTAINER === */
.title-container {
  flex: 1;
  animation: slideUpTitle 0.6s ease-out 0.6s both;
}

@keyframes slideUpTitle {
  from {
    opacity: 0;
    transform: translateY(30px) translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.company-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.verified-badge {
  width: 1.25rem;
  height: 1.25rem;
  animation: verifiedPulse 2s ease-in-out infinite;
}

@keyframes verifiedPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.1);
  }
}

/* === STATUS CONTAINER === */
.status-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  width: fit-content;
  animation: slideUpStatus 0.6s ease-out 0.8s both;
}

@keyframes slideUpStatus {
  from {
    opacity: 0;
    transform: translateY(20px) translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.status-indicator {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* === COMPANY INFO === */
.company-info {
  animation: slideUpStagger 0.6s ease-out 0.4s both;
}

.company-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.company-cnpj,
.company-email {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.company-cnpj strong,
.company-email strong {
  color: rgba(255, 255, 255, 0.8);
}

/* === SOCIAL MEDIA === */
.social-media {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideUpStagger 0.6s ease-out 0.6s both;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  animation: slideUpSocial 0.6s ease-out both;
}

@keyframes slideUpSocial {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px) scale(1.1);
}

.social-link i {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover i {
  color: rgba(59, 130, 246, 0.9);
}

/* === NAVIGATION === */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  animation: slideUpStagger 0.6s ease-out 0.8s both;
}

.nav-section {
  animation: slideUpNav 0.6s ease-out both;
}

@keyframes slideUpNav {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(59, 130, 246, 0.8), 
    rgba(147, 51, 234, 0.8));
  border-radius: 1px;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
  border-left-color: rgba(59, 130, 246, 0.6);
  transform: translateX(0.25rem);
}

/* === FOOTER DIVIDER === */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 20%, 
    rgba(59, 130, 246, 0.3) 50%, 
    rgba(255, 255, 255, 0.2) 80%, 
    transparent 100%);
  margin: 2rem 0;
  animation: slideUpStagger 0.6s ease-out 1s both;
}

/* === COPYRIGHT === */
.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: slideUpStagger 0.6s ease-out 1.2s both;
}

.copyright-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.made-by {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.xandyn-link {
  color: rgba(59, 130, 246, 0.8);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: rgba(59, 130, 246, 0.1);
}

.xandyn-link:hover {
  color: rgba(59, 130, 246, 1);
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
}

/* === RESPONSIVIDADE MOBILE === */
@media (max-width: 768px) {
  .footer-container {
    padding: 2rem 0;
  }
  
  .company-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.25rem;
  }
  
  .title-wrapper {
    justify-content: center;
  }
  
  .company-logo {
    width: 4rem;
    height: 4rem;
  }
  
  .company-title {
    font-size: 1.5rem;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .nav-section {
    text-align: center;
  }
  
  .nav-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-media {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .social-link i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .company-header {
    padding: 1rem;
  }
  
  .company-logo {
    width: 3rem;
    height: 3rem;
  }
  
  .company-title {
    font-size: 1.25rem;
  }
  
  .verified-badge {
    width: 1rem;
    height: 1rem;
  }
  
  .footer-nav {
    gap: 1rem;
  }
  
  .copyright {
    padding: 0 1rem;
  }
  
  .copyright-text,
  .made-by {
    font-size: 0.75rem;
  }
}