/* ===== FOOTER ===== */
.footer {
  padding: 40px 6vw 80px; /* padding lateral adaptativo */
  color: #bfbfbf;
  font-family: "Inter", sans-serif;
  background: transparent;
}

.footer-title {
  color: var(--principalColor);
  font-family: "Cinzel", serif;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-about {
  flex: 1 1 300px;
  max-width: 480px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 300px;
}

.small-txt {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

.footer-contacts a {
  color: var(--principalColor);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contacts a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--principalColor);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 60px;
    text-align: center;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer-about,
  .footer-contacts {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ---------------------- FLOATING BUTTON ---------------------- */
#floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background:linear-gradient(90deg,var(--principalColor),var(--secundaryColor));
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);}

#floating-button a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;}