.footer {
  background: url("../img/Bkgr-footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: var(--verde);
  color: #fff;
  padding: 90px 20px 24px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;

  align-items: start;
}

/* COLUNAS */
.footer-col {
  width: 100%;
  max-width: 340px;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  transition: 0.25s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  opacity: 1;
}

/* CTA (Agendamento) */
.footer-col.newsletter p {
  margin-bottom: 14px;
}

.btn-footer {
  width: 100%;
  max-width: 320px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 10px;

  background: var(--white);
  color: var(--verde);
  border: 2px solid rgba(255, 255, 255, 0.85);

  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;

  /* garante que não “quebre” dentro do grid */
  box-sizing: border-box;
}

.btn-footer:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* FOOTER BOTTOM (tava faltando) */
.footer-bottom {
  max-width: 1100px;
  margin: 26px auto 0;
  padding-top: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* SOCIAIS */
.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials a {
  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  transition: 0.25s ease;
  text-decoration: none;
}

.socials a i {
  font-size: 18px;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

/* TABLET */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .footer-col {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .footer {
    padding: 70px 15px 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
    justify-items: center;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col p,
  .footer-col ul {
    text-align: center;
  }

  .btn-footer {
    max-width: 100%;
  }

  .socials {
    justify-content: center;
  }
}
