@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.clinic-footer {
  background: linear-gradient(135deg, #0a2540, #081a2f);
  color: #fff;
  padding: 60px 40px 30px;
  position: relative;
}

.footer-top {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.footer-box h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-box h3 i {
  margin-right: 6px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.footer-box li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #d1d5db;
}

.footer-image {
  border-radius: 16px;
  overflow: hidden;
}

.footer-image img {
  width: 100%;
  height: 230px;
  object-fit: fill;
}

/* BOTÕES */
.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-btn.map {
  background: #1f4fd8;
  color: #fff;
}

.footer-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.footer-btn.phone {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/* DIVISOR */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 40px 0 25px;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: #d1d5db;
}

.footer-logo img {
  height: 42px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
}

.footer-social a {
  color: #fff;
}

.dev {
  font-size: 13px;
  color: #d1d5db;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}