.site-footer {
  position: relative;
  margin-top: 72px;
  padding: 0 16px 28px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 90, 90, 0.22),
      transparent 34%
    ),
    radial-gradient(circle at top right, rgba(140, 0, 0, 0.3), transparent 28%),
    linear-gradient(180deg, #b31217 0%, #730b0f 100%);
  overflow: hidden;
}

.tecnofacil {
  font-family: "Roboto";
  text-decoration: none;
  color: rgb(156, 108, 156);
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.site-footer-copy {
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.03) 0%, transparent 24%);
  pointer-events: none;
}

.site-footer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 34px 0 0;
}

.site-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.site-footer-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-footer-brand-copy,
.site-footer-card,
.site-footer-hours {
  min-width: 0;
}

.site-footer-kicker,
.site-footer-card-label {
  margin: 0 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-kicker {
  color: white;
}

.site-footer-title,
.site-footer-card-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #ffffff;
}

.site-footer-title {
  max-width: 640px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.site-footer-text,
.site-footer-card-text,
.site-footer-bottom-copy,
.site-footer-hours-row span,
.site-footer-hours-row strong,
.site-footer-link {
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer-text {
  max-width: 620px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.65;
}

.site-footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.site-footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.site-footer-actions {
  display: grid;
  gap: 12px;
  justify-content: center;
}

.site-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5a3d 0%, #ff3131 100%);
  box-shadow: 0 16px 30px rgba(255, 49, 49, 0.24);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.site-footer-button:hover,
.site-footer-link:hover {
  transform: translateY(-2px);
}

.site-footer-button-secondary {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0 22px;
}

.site-footer-card {
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.site-footer-card-label {
  color: #ffd4ba;
}

.site-footer-card-title {
  font-size: 22px;
  line-height: 1.2;
}

.site-footer-card-text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
}

.site-footer-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-footer-link:hover {
  opacity: 0.85;
}

.site-footer-hours {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.site-footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.06);
}

.site-footer-hours-row span,
.site-footer-hours-row strong {
  font-size: 14px;
  line-height: 1.4;
}

.site-footer-hours-row strong {
  color: #ffffff;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-bottom-copy {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .site-footer-top {
    grid-template-columns: 1fr;
  }

  .site-footer-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 56px;
    padding: 0 14px 24px;
  }

  .site-footer-shell {
    padding-top: 28px;
  }

  .site-footer-brand {
    grid-template-columns: 1fr;
  }

  .site-footer-logo {
    width: 82px;
    height: 82px;
  }

  .site-footer-title {
    font-size: 30px;
  }

  .site-footer-actions {
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }

  .site-footer-button {
    width: min(100%, 320px);
    max-width: 320px;
    min-width: 0;
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .site-footer-card {
    padding: 20px 18px;
  }

  .site-footer-hours-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-copy {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .tecnofacil {
    font-family: "Roboto";
    text-decoration: none;
    color: rgb(156, 108, 156);
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .site-footer-button {
    max-width: 300px;
  }
}

/* @media (min-width: 412px) {
  .site-footer-button {
    max-width: 400px;
  }
} */
