/* Footer: datos de contacto y línea legal */
.footer {
  background-color: hsl(var(--primary));
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  color: hsl(var(--primary-foreground));
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  padding-block: 3.5rem;
}

.footer__brand {
  align-items: center;
  display: inline-flex;
  margin-bottom: 1.25rem;
  transition: opacity 0.2s ease;
}

.footer__brand:hover {
  opacity: 0.85;
}

.footer__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__hours {
  color: hsl(var(--primary-foreground) / 0.55);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.footer__link {
  align-items: center;
  color: hsl(var(--primary-foreground));
  display: flex;
  font-size: 0.875rem;
  gap: 0.75rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: hsl(var(--accent-light));
}

.footer__icon {
  align-items: center;
  background-color: hsl(var(--accent) / 0.2);
  border-radius: 50%;
  color: hsl(var(--accent-light));
  display: flex;
  flex-shrink: 0;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.footer__icon svg {
  height: 1.05rem;
  width: 1.05rem;
}

.footer__cta-text {
  color: hsl(var(--primary-foreground) / 0.85);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  max-width: 20rem;
}

.footer__cta-text strong {
  color: hsl(var(--accent-light));
}

.footer__legal {
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.75rem;
  padding-block: 1.25rem;
  text-align: center;
}
