/* ============================================================
   footer.css — Seção 8 (Localização/Horários) + Rodapé
   ============================================================ */

/* ---------- Seção 8: Localização e horários ---------- */
.location {
  background-color: var(--paper);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

/* Mapa da clínica (Google Maps embed) */
.location__map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--teal-tint);
}

.location__map img,
.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  object-fit: cover;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.location__info h2 {
  margin-bottom: var(--space-1);
}

.info-block {
  display: flex;
  gap: 14px;
}

.info-block__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal-base);
}

.info-block__icon svg {
  width: 22px;
  height: 22px;
}

.info-block__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.info-block__content,
.info-block__content a {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.info-block__content a:hover {
  color: var(--action-deep);
}

/* Tabela de horários */
.hours {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hours tr {
  border-bottom: 1px solid var(--line);
}

.hours tr:last-child {
  border-bottom: none;
}

.hours th,
.hours td {
  padding: 12px 18px;
  font-size: 15px;
  text-align: left;
}

.hours th {
  font-weight: 500;
  color: var(--ink);
}

.hours td {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-soft);
}

.hours tr.is-closed td {
  color: var(--action-deep);
}

.location__badge {
  margin-top: var(--space-1);
}

/* =========================================================
   RODAPÉ
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding-block: var(--space-10) var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-3);
}

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  object-fit: cover;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.footer__about {
  font-size: 15px;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: var(--space-3);
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--dur-base) var(--ease-out);
}

.footer__links a:hover {
  color: var(--action-base);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom a:hover {
  color: var(--action-base);
}
