* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background: linear-gradient(
    90deg,
    #061F2A 0%,
    #0A2F3F 50%,
    #061F2A 100%
  );
  color: #fff;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
    text-transform:initial;
  font-size: 1rem;
}

.footer-column h4 {
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #0e4861;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 30px;

}

.logo {
  font-weight: bold;
  font-size: 20px;
  justify-content: center;
}

.social a {
  margin-left: 15px;
  color: #bdbdbd;
  text-decoration: none;
  font-size: 14px;
}

.social a:hover {
  color: #fff;
}

.footer-info {
  text-align: center;
  padding: 24px 16px;
  margin-top: 32px;
}

.footer-info p {
  margin: 6px 0;
  font-size: 0.9rem;
  color: #d0d0d0;
}

.footer-info a {
  color: #ffffff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}



/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-info{
    text-align: center;
    align-items: center ;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .social a {
    margin: 0 10px;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 64px;
}

/* bloco logo + redes */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 32px;
}

/* info direita */
.footer-info {
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-info a {
  color: inherit;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

