/* Footer Styles */

/* Footer - Modern Minimalist Design */
footer{
  padding: 50px 40px 30px;
  background: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom{
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand__logo{
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) brightness(1.2);
}

.footer-content{
  text-align: center;
}

.footer-content p{
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-content p:last-child{
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-content a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-content a:hover {
  color: #25D366;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

.footer-links{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contract-link{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.contract-link:hover{
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 1);
}

.contract-icon{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.8;
}

@media (max-width: 768px){
  footer{
    padding: 40px 20px 25px;
  }
  
  .bottom{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand{
    justify-content: center;
  }
  
  .footer-links{
    justify-content: center;
  }
  
  .footer-content{
    order: -1;
  }
}

@media (max-width: 480px){
  footer{
    padding: 30px 16px 20px;
  }
  
  .bottom{
    gap: 24px;
  }
  
  .footer-brand .brand__logo{
    height: 28px;
  }
  
  .contract-link{
    padding: 10px 16px;
    font-size: 13px;
  }
}
