body {
  font-family: "Outfit", "Outfit Fallback", system-ui, -apple-system, sans-serif;
  background-color: #f8f4ed;
  color: var(--color-text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
a:hover { color: inherit; text-decoration: none; }
ul { list-style: none; }

/*  header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(231, 226, 216, 0.6);
  background: var(--color-text-white);
  backdrop-filter: blur(12px);
}
.header__inner {
  padding: 1rem 1.25rem;
}
.header__logo { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.header__logo span { color: var(--color-primary); }


/* botões*/
.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-family: inherit;
  transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.btn-back:hover {
  background-color: #374151;
  color: var(--color-text-white);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-black);
  color: var(--color-text-white);
  font-size: 1rem;
}
.btn--primary:hover { opacity: 0.9;  color: var(--color-text-white); }

.btn--outline {
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--color-text-dark);
  font-size: 1rem;
}
.btn--outline:hover { background: #efeae0; color: var(--color-text-dark); }

.icon { width: 1rem; height: 1rem; flex: none; }

.main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f8f4ed, var(--color-text-white));
  padding-top: 20px;
}

.content { position: relative; z-index: 10; }

/* container */
.card-erro-container {
  background-color: var(--color-text-white);
  border-radius: var(--border-button);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge circular customizada */
.badge-error {
  margin: 0 auto;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  background: var(--color-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-error__icon { width: 2rem; height: 2rem; color: var(--color-primary); }

.title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.25rem); 
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-dark);
}
.subtitle {
  margin-top: 1rem;
  max-width: 28rem;
  color: var(--color-text-gray);
  line-height: 1.65;
}

.actions {
  margin-top: 2.25rem;
  gap: 0.75rem;
}

/* Footer */
.footer-new-powered {
    font-size: 12px;
    color: var(--color-text-gray);
}

.footer-new-powered a {
    color: var(--color-text-white);
    font-weight: 500;
    text-decoration: none;
}

.footer-new-powered a:hover {
    text-decoration: underline;
}
.footer-new-promo-inner img {
    max-width: 100%

}
@media (min-width: 768px) {
    .footer-new-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}