/**
 * Footer Links Styles
 * Layout para os links do footer com dois lados
 */

.footer-links {
  padding: 30px 0px 25px; 
  background-color: #004D98;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.footer-links__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links__side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.footer-links__side--left {
  text-align: left;
}

.footer-links__side--right {
  text-align: right;
}

.footer-links__title p {
  font-size: 23px;
  line-height: 25px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 12px;
}

.footer-links__link-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links__side--left .footer-links__link-group {
  justify-content: flex-start;
}

.footer-links__side--right .footer-links__link-group {
  justify-content: flex-end;
}

.footer-links__link-icon {
  flex-shrink: 0;
}

.footer-links__link-icon a {
  display: block;
  transition: transform 0.2s ease;
}

.footer-links__link-icon a:hover {
  transform: scale(1.1);
}

.footer-links__link-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-links__link {
  font-size: 1rem;
  font-weight: 500;
}

.footer-links__link a {
  color: #FFF;
  background-color: #F4343F;
  transition: color 0.2s ease;
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  max-width: 100%;
}

.footer-links__link a:hover {
  color: #FFF;
  background-color: #ee1c26;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-links__container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-links__side--right {
    text-align: left;
  }
  
  .footer-links__side--right .footer-links__link-group {
    justify-content: flex-start;
  }
  
  .footer-links__title {
    font-size: 1.1rem;
  }
  
 
}

@media (max-width: 480px) {
  .footer-links {
    padding: 30px 0;
  }
  
  .footer-links__container {
    padding: 0 15px;
    gap: 25px;
  }
  
  .footer-links__title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer-links__link-group {
    gap: 8px;
  }
  

} 