.rodape {
  background-color: #314856; /* azul petróleo */
  padding: 50px 80px;
  font-family: Arial, Helvetica, sans-serif;
  color: #f5f0e6; /* bege claro */
}

.rodape-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.rodape-bloco ul {
  list-style: none;  
  padding: 0;        
  margin: 0;         
}

.rodape-bloco h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #f5f0e6;
}

.rodape-bloco p,
.rodape-bloco a {
  font-size: 15px;
  line-height: 1.6;
  color: #f5f0e6;
  text-decoration: none;
}

.rodape-bloco a:hover {
  color: #c1beb9;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 0.7;
}

/* Responsivo */
@media (max-width: 1024px) {
  .rodape-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .rodape {
    padding: 30px 20px;
    text-align: center;
  }

  .rodape-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .social-icons {
    justify-content: center;
  }

  .rodape-bloco h4 {
    font-size: 16px;
  }

  .rodape-bloco p,
  .rodape-bloco a {
    font-size: 14px;
  }
}
