footer {
  background: var(--beige-2);
  color: #3a2e1f;
  padding: 32px 24px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
  justify-content: center;
}

footer .foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

footer .foot-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

footer .foot-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 6px;
}

footer .foot-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c1e10;
}

footer .muted {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
}

footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #2c1e10;
  margin-bottom: 4px;
}

.direitos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.direitos p{
    margin: 5px;
}

footer .address{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer .address p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

footer .social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .social-links a {
  color: #2c1e10;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

footer .social-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

footer .social-links i {
  font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 900px) {
  footer .foot-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer .foot-logo {
    margin: 0 auto 8px;
  }

  footer .social-links {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}




    /* Botão flutuante */
#floating-button {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    display: flex;
    align-items: center;
}

#floating-button:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

#floating-button a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1.5px;
}

#floating-button i {
    margin-right: 8px;
    font-size: 22px;
}

.button-text{
    font-size: 16px;
}

/* Responsividade: Oculta o texto em telas menores */
@media (max-width: 768px) {
    #floating-button {
        padding: 10px; /* Ajusta o padding para manter o botão circular */
        border-radius: 50%; /* Torna o botão completamente redondo */
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    #floating-button i {
        margin-right: 0; /* Remove o espaçamento entre o ícone e o texto */
    }

    #floating-button .button-text {
        display: none; /* Oculta o texto "Fale conosco" */
    }
}