.footer {
    background: #0A2C5D;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 5%;
    margin-top: 40px;
    border-top: 4px solid #B02126; /* vermelho secundário */
    text-align: center;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
  }
  
  .footer-contact {
    display: flex;
    align-items: center; 
    font-size: 14px;
    flex: 1 1 300px;
  }

  .footer-location{
    display: flex;
    align-items: center;
    font-size: 14px;
    flex: 1 1 300px;
    gap: 5px;
    
  }
  
  .footer-contact i {
    font-size: 28px;
    margin-right: 10px;
    color: #ffffff;
  }
  
  .footer-socials {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1 1 200px;
    justify-content: flex-end;
  }
  
  .footer-socials a {
    font-size: 20px;
    color: #ffffff;
    transition: 0.3s;
  }
  
  .footer-socials a:hover {
    color: #007bff;
  }
  
  .footer-separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
  }
  
  .footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-col {
    flex: 1 1 200px;
  }
  
  .footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-col ul li a:hover {
    color: #007bff;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
    color: #ffffff;
    padding-top: 10px;
    border-top: 1px solid #ccc;
  }
  
.footer__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer__button {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer__button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.footer-bottom a {
    color: inherit; 
    text-decoration: none; 
    transition: text-decoration 0.3s ease; 
}

.footer-bottom a:hover {
    text-decoration: underline; 
    color: #007bff;
}

 