/*
 * Landing TRUSTCOMEX — mesmo universo visual do login (auth.css)
 * Escopo: body.auth-page
 */

body.auth-page .auth-trustcomex--full {
  align-items: flex-start;
  padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
  padding-bottom: 2.75rem;
}

body.auth-page .auth-trustcomex__inner--wide {
  width: 100%;
  max-width: min(1100px, 100%);
  margin: 0 auto;
}

/* Hero */
body.auth-page .tc-site-hero {
  text-align: center;
  margin-bottom: 2.25rem;
  animation: authFadeUp 0.75s ease backwards;
}

body.auth-page .tc-site-hero__kicker {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7f72;
  margin: 0 0 0.75rem;
}

body.auth-page .tc-site-hero__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.12;
  color: #f4efe6;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}

body.auth-page .tc-site-hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, #f0d78c 0%, #d4af37 40%, #c9a24a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.auth-page .tc-site-hero__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
  line-height: 1.65;
  color: #a8a29a;
  max-width: 40rem;
  margin: 0.75rem auto 0;
}

body.auth-page .tc-site-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
  animation: authFadeUp 0.8s ease 0.08s backwards;
}

body.auth-page .auth-btn--gold.tc-site-cta__primary {
  width: auto;
  min-width: 14rem;
  min-height: 50px;
  margin-top: 0;
  padding: 0 1.5rem;
  text-decoration: none;
}

body.auth-page .auth-btn--ghost {
  min-height: 50px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d4c4a8;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 184, 140, 0.35);
  border-radius: 12px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

body.auth-page .auth-btn--ghost:hover {
  color: #f4efe6;
  border-color: rgba(212, 175, 80, 0.55);
  background: rgba(20, 18, 12, 0.65);
  text-decoration: none;
}

/* Section */
body.auth-page .tc-site-section {
  margin-top: 2.5rem;
  animation: authFadeUp 0.8s ease 0.1s backwards;
}

body.auth-page .tc-site-section__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

body.auth-page .tc-site-section__k {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a7f72;
  margin: 0 0 0.4rem;
}

body.auth-page .tc-site-section__h {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e8e2d8;
  margin: 0 0 0.4rem;
}

body.auth-page .tc-site-section__p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #8a8580;
  margin: 0;
}

/* Cards grid */
body.auth-page .tc-site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 991.98px) {
  body.auth-page .tc-site-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  body.auth-page .tc-site-grid {
    grid-template-columns: 1fr;
  }
}

body.auth-page .tc-site-card {
  position: relative;
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.35rem;
  background: linear-gradient(160deg, rgba(22, 20, 18, 0.9) 0%, rgba(6, 6, 6, 0.86) 100%);
  border: 1px solid rgba(201, 184, 140, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 20px 48px -28px rgba(0, 0, 0, 0.75);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

body.auth-page .tc-site-card:hover {
  border-color: rgba(201, 162, 55, 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 24px 56px -24px rgba(0, 0, 0, 0.85),
    0 0 48px -20px rgba(201, 162, 55, 0.08);
  transform: translateY(-2px);
}

body.auth-page .tc-site-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 11px;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  color: #b8953a;
  background: linear-gradient(145deg, rgba(201, 162, 55, 0.18) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(201, 184, 140, 0.22);
}

body.auth-page .tc-site-card__h {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ece8e0;
  margin: 0 0 0.45rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

body.auth-page .tc-site-card__d {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #8a8580;
  margin: 0;
}

/* Integrations */
body.auth-page .tc-site-int {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

body.auth-page .tc-site-int__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #a39e96;
  padding: 0.7rem 1rem;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  border: 1px solid rgba(201, 184, 140, 0.1);
}

body.auth-page .tc-site-int__item i {
  color: #c9a24a;
  margin-top: 0.1rem;
  flex-shrink: 0;
  opacity: 0.9;
}

/* Rodapé landing */
body.auth-page .tc-site-foot {
  margin-top: 2.5rem;
  text-align: center;
}

body.auth-page .tc-site-foot__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #8a7f72;
  margin: 0 0 0.5rem;
}

body.auth-page .tc-site-foot__login a {
  color: #c9a24a;
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.35rem;
  border-bottom: 1px solid rgba(201, 162, 55, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

body.auth-page .tc-site-foot__login a:hover {
  color: #e8d5a0;
  border-color: rgba(201, 162, 55, 0.55);
}

body.auth-page .auth-trustcomex--full .auth-trustcomex__foot {
  margin-top: 1.75rem;
}
