/* =====================================================================
   SCS ROAD LIFE — Sistema de gestão rodoviária para o universo ETS2
   style.css  —  Design System / Componentes / Páginas
   Paleta: #050505 #0d0d0d #151515 #FFD000 #E6BD00 #FFFFFF #BDBDBD
   ===================================================================== */

/* ----------------------------- 1. TOKENS ----------------------------- */
:root {
  --black: #050505;
  --graphite-900: #0d0d0d;
  --graphite-800: #151515;
  --graphite-700: #1c1c1c;
  --graphite-600: #242424;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --yellow: #ffd000;
  --yellow-deep: #e6bd00;
  --yellow-soft: rgba(255, 208, 0, 0.12);
  --yellow-glow: rgba(255, 208, 0, 0.35);

  --white: #ffffff;
  --grey: #bdbdbd;
  --grey-dim: #8a8a8a;

  --danger: #ff5d5d;
  --success: #4ade80;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 12px 40px rgba(255, 208, 0, 0.18);

  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------- 2. RESET ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

::selection { background: var(--yellow); color: #000; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--graphite-600), var(--graphite-800));
  border-radius: 99px;
  border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover { background: var(--yellow-deep); }

/* --------------------------- 3. UTILITÁRIOS -------------------------- */
.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 78px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  margin-bottom: 18px;
}
.section-title .accent { color: var(--yellow); }

.section-lead {
  color: var(--grey);
  max-width: 640px;
  font-size: 1.05rem;
}
.section-head { margin-bottom: 58px; }
.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head--center .section-lead { margin-inline: auto; }

.text-yellow { color: var(--yellow); }
.muted { color: var(--grey); }

/* Divisor diagonal decorativo */
.diagonal-band {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.diagonal-band span {
  position: absolute;
  top: -20%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, var(--line-strong), transparent);
  transform: rotate(18deg);
}

/* ----------------------------- 4. BOTÕES ----------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  --btn-fg: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(255, 208, 0, 0.22);
}
.btn--primary:hover {
  box-shadow: 0 16px 38px rgba(255, 208, 0, 0.34);
}

.btn--ghost { --btn-bg: rgba(255, 255, 255, 0.03); }
.btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-soft);
}

.btn--dark {
  --btn-bg: var(--graphite-800);
  border-color: var(--line);
}
.btn--dark:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--sm { padding: 11px 20px; font-size: 0.86rem; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

.btn .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----------------------------- 5. HEADER ----------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header__inner {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.08rem;
  flex-shrink: 0;
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--yellow), var(--yellow-deep));
  color: #0a0a0a;
  box-shadow: 0 8px 22px rgba(255, 208, 0, 0.28);
  flex-shrink: 0;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--grey-dim);
  text-transform: uppercase;
  font-weight: 500;
}
.brand__text span { line-height: 1.15; }

.brand__logo-icon {
    width: 42px;
    height: 42px;

    object-fit: contain;
    flex-shrink: 0;
}


.brand__logo-name {
    width: 165px;
    height: auto;

    object-fit: contain;
    flex-shrink: 0;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  color: var(--grey);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255, 255, 255, 0.05); }
.nav a.active { color: var(--yellow); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ------------------------------ 6. HERO ------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 620px at 78% 18%, rgba(255, 208, 0, 0.16), transparent 62%),
    radial-gradient(900px 700px at 8% 92%, rgba(255, 208, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #070707 0%, #050505 45%, #0a0a0a 100%);
}
.hero__road {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("../img/background-interno.webp");
  background-size: cover;
  background-position: bottom center;
  mask-image: linear-gradient(to top, #000 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 85%);
}
.hero__beams {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 120px,
    rgba(255, 208, 0, 0.045) 120px 122px
  );
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
}
.hero__glow {
  position: absolute;
  right: -6%;
  top: 34%;
  width: 46vw;
  height: 46vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.18), transparent 64%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--black));
}

.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 780px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 28px;
}
.hero__badge b {
  background: var(--yellow);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.hero__brand {
    margin-bottom: 28px;
}


.hero__brand-logo {
    width: min(100%, 620px);
    height: auto;

    object-fit: contain;
    object-position: left center;
}


.hero__title {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}
.hero__title .accent {
  color: var(--yellow);
  position: relative;
  white-space: nowrap;
}

.hero__sub {
  color: var(--grey);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 620px;
  margin-bottom: 38px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 620px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label { font-size: 0.82rem; color: var(--grey-dim); letter-spacing: 0.02em; }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-dim);
}
.hero__scroll i {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}

/* ------------------------- 7. TICKER / MARQUEE ----------------------- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--graphite-900);
  overflow: hidden;
  padding: 18px 0;
}
.ticker__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker__item {
  display: flex;
  align-items: center;
  gap: 60px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-dim);
  white-space: nowrap;
}
.ticker__item::after {
  content: "◆";
  color: var(--yellow);
  font-size: 0.6rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------- 8. CARDS ------------------------------ */
.grid {
  display: grid;
  gap: 20px;
}
.grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  position: relative;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--graphite-800), var(--graphite-900) 70%);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  transition: width 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.card:hover::before { width: 100%; }

.card__icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 208, 0, 0.22);
  color: var(--yellow);
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease);
}
.card:hover .card__icon {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #0a0a0a;
  transform: translateY(-2px) rotate(-4deg);
}
.card__icon svg { width: 24px; height: 24px; }

.card__title {
  font-size: 1.14rem;
  margin-bottom: 10px;
}
.card__text { color: var(--grey); font-size: 0.94rem; }

.card__meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--grey);
}

/* ------------------------- 9. MODO / SPLIT --------------------------- */
.mode-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }

.mode-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--graphite-800), var(--graphite-900));
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mode-card::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.14), transparent 68%);
  transition: transform 0.5s var(--ease);
}
.mode-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 208, 0, 0.3);
  box-shadow: var(--shadow);
}
.mode-card:hover::after { transform: scale(1.25); }

.mode-card--featured {
  background: linear-gradient(160deg, #1a1608, var(--graphite-900) 65%);
  border-color: rgba(255, 208, 0, 0.28);
}

.mode-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.mode-card h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 12px; }
.mode-card > p { color: var(--grey); margin-bottom: 26px; max-width: 46ch; }

.check-list { display: grid; gap: 13px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: #e6e6e6;
}
.check-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--yellow);
}

.note-strip {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 208, 0, 0.32);
  background: var(--yellow-soft);
  font-size: 0.93rem;
  color: #f0e6c0;
}
.note-strip svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--yellow); margin-top: 2px; }

/* ----------------------------- 10. CTA ------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 66px 56px;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 84% 20%, rgba(255, 208, 0, 0.2), transparent 66%),
    linear-gradient(150deg, var(--graphite-800), var(--graphite-900));
  border: 1px solid rgba(255, 208, 0, 0.22);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -70deg,
    transparent 0 60px,
    rgba(255, 208, 0, 0.05) 60px 61px
  );
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 36px; align-items: center; justify-content: space-between; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 12px; max-width: 20ch; }
.cta-band p { color: var(--grey); max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------- 11. FOOTER ------------------------------ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--graphite-900);
  padding: 66px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--grey); margin-top: 18px; max-width: 34ch; font-size: 0.93rem; }
.footer-col h4 {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--grey); font-size: 0.93rem; transition: color 0.2s, padding-left 0.2s; }
.footer-col a:hover { color: var(--yellow); padding-left: 5px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  color: var(--grey-dim);
  font-size: 0.85rem;
}
.footer-bottom .guidevbot { color: var(--yellow); font-weight: 600; }

/* ----------------------- 12. AUTH (login/cadastro) ------------------- */
.auth-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.auth-page__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 82% 12%, rgba(255, 208, 0, 0.14), transparent 62%),
    radial-gradient(700px 500px at 6% 96%, rgba(255, 208, 0, 0.06), transparent 62%),
    linear-gradient(180deg, #070707, #050505);
}
.auth-page__road {
  position: absolute; inset: 0;
  background-image: url("../img/background-interno.webp");
  background-size: cover;
  background-position: bottom center;
  opacity: 0.35;
  mask-image: linear-gradient(to top, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(to top, #000, transparent 78%);
}

.auth-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(0, 460px);
  gap: 64px;
  align-items: center;
}
.auth-intro h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.auth-intro p { color: var(--grey); max-width: 42ch; margin-bottom: 28px; }
.auth-intro ul { display: grid; gap: 14px; max-width: 44ch; }

.auth-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: rgba(21, 21, 21, 0.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: var(--shadow);
}
.auth-card__head { margin-bottom: 28px; }
.auth-card__head h2 { font-size: 1.7rem; margin-bottom: 8px; }
.auth-card__head p { color: var(--grey); font-size: 0.93rem; }

.auth-card--wide { padding: 42px 40px; }

.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: grid; gap: 8px; position: relative; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}
.field .control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.45);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field .control svg { width: 18px; height: 18px; color: var(--grey-dim); flex-shrink: 0; }
.field input,
.field select {
  flex: 1;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 0;
  font-size: 0.95rem;
  outline: none;
}
.field input::placeholder { color: #5c5c5c; }
.field .control:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.14);
  background: rgba(0, 0, 0, 0.7);
}
.field .toggle-pass {
  border: 0; background: transparent; cursor: pointer;
  color: var(--grey-dim); padding: 4px; display: grid; place-items: center;
}
.field .toggle-pass:hover { color: var(--yellow); }

.field.invalid .control { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255, 93, 93, 0.12); }
.field .hint { font-size: 0.78rem; color: var(--grey-dim); }
.field .error {
  font-size: 0.78rem;
  color: var(--danger);
  display: none;
  align-items: center;
  gap: 5px;
}
.field.invalid .error { display: flex; }

/* Força da senha */
.strength { display: grid; gap: 7px; margin-top: 4px; }
.strength__bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.strength__bars i {
  height: 4px;
  border-radius: 99px;
  background: var(--graphite-600);
  transition: background 0.3s;
}
.strength__label { font-size: 0.74rem; color: var(--grey-dim); }
.strength[data-level="1"] i:nth-child(-n+1) { background: var(--danger); }
.strength[data-level="2"] i:nth-child(-n+2) { background: #f0a020; }
.strength[data-level="3"] i:nth-child(-n+3) { background: var(--yellow); }
.strength[data-level="4"] i { background: var(--success); }

/* Checkbox custom */
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--grey);
  cursor: pointer;
  user-select: none;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.check__box svg { width: 13px; height: 13px; color: #0a0a0a; opacity: 0; transition: opacity 0.2s; }
.check input:checked + .check__box {
  background: var(--yellow);
  border-color: var(--yellow);
}
.check input:checked + .check__box svg { opacity: 1; }
.check input:focus-visible + .check__box { box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.2); }
.check a { color: var(--yellow); }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}
.form-foot a { color: var(--grey); transition: color 0.2s; }
.form-foot a:hover { color: var(--yellow); }

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--grey-dim);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Alerts */
.alert {
  display: none;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 17px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
  animation: alertIn 0.35s var(--ease);
}
.alert.show { display: flex; }
.alert svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; }
.alert--error { background: rgba(255, 93, 93, 0.1); border-color: rgba(255, 93, 93, 0.35); color: #ffc9c9; }
.alert--error svg { color: var(--danger); }
.alert--success { background: rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.32); color: #c8f7d8; }
.alert--success svg { color: var(--success); }
.alert--info { background: var(--yellow-soft); border-color: rgba(255, 208, 0, 0.32); color: #f4e7b8; }
.alert--info svg { color: var(--yellow); }
@keyframes alertIn { from { opacity: 0; transform: translateY(-6px); } }

/* --------------------------- 13. PLANOS ------------------------------ */
.page-hero {
  padding: calc(var(--header-h) + 90px) 0 70px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 70% 0%, rgba(255, 208, 0, 0.14), transparent 62%),
    linear-gradient(180deg, #070707, var(--black));
  border-bottom: 1px solid var(--line);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.page-hero p { color: var(--grey); font-size: 1.05rem; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  align-items: start;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--graphite-800), var(--graphite-900));
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.plan--featured {
  border-color: rgba(255, 208, 0, 0.4);
  background: linear-gradient(165deg, #1c1707, var(--graphite-900) 60%);
  box-shadow: var(--shadow-glow);
}
.plan__flag {
  position: absolute;
  top: -13px;
  left: 34px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.plan__head { padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.plan__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 14px;
}
.plan__name { font-size: 1.6rem; margin-bottom: 6px; }
.plan__desc { color: var(--grey); font-size: 0.92rem; min-height: 44px; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
}
.plan__price b {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}
.plan__price span { color: var(--grey-dim); font-size: 0.92rem; }
.plan__price .currency { color: var(--yellow); font-weight: 700; align-self: center; font-size: 1.1rem; }

.plan__features { display: grid; gap: 13px; margin-bottom: 30px; }
.plan__features li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; color: #e2e2e2; }
.plan__features li svg { width: 17px; height: 17px; color: var(--yellow); flex-shrink: 0; margin-top: 4px; }
.plan__features li.off { color: var(--grey-dim); }
.plan__features li.off svg { color: var(--grey-dim); }

.plan .btn { margin-top: auto; }

.plan-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--graphite-900);
  color: var(--grey);
  font-size: 0.9rem;
}
.plan-note svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }

/* Comparação */
.compare { width: 100%; border-collapse: collapse; margin-top: 10px; }
.compare th, .compare td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.compare thead th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; }
.compare tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.compare .yes { color: var(--yellow); }
.compare .no { color: var(--grey-dim); }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--graphite-900); }

/* -------------------- 14. CONTA / EMPRESA (dashboard) ---------------- */
.dash {
  padding: calc(var(--header-h) + 60px) 0 100px;
  min-height: 100svh;
  background:
    radial-gradient(900px 480px at 88% -6%, rgba(255, 208, 0, 0.1), transparent 60%),
    var(--black);
}
.dash__head {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 42px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.dash__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 8px; }
.dash__sub { color: var(--grey); }
.dash__id {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--graphite-900);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(140deg, var(--yellow), var(--yellow-deep));
  color: #0a0a0a;
  flex-shrink: 0;
}
.dash__id b { display: block; font-family: var(--font-display); }
.dash__id small { color: var(--grey-dim); font-size: 0.8rem; }

.empresa-user-actions {
  display: grid;
  gap: 10px;
  width: min(100%, 430px);
}

.empresa-user-actions[hidden],
.empresa-senha-box[hidden] {
  display: none !important;
}

.empresa-user-actions .dash__id {
  width: 100%;
}

.empresa-senha-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.empresa-senha-toggle svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.empresa-senha-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite-900);
}

.empresa-senha-box > strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.empresa-senha-box > .muted {
  margin: 0 0 20px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.dash-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.dash-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--graphite-800), var(--graphite-900));
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}
.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.panel__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 9px;
}
.panel__title svg { width: 17px; height: 17px; color: var(--yellow); }

.info-list { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  background: var(--graphite-900);
}
.info-row dt { color: var(--grey-dim); font-size: 0.86rem; }
.info-row dd { font-weight: 500; font-size: 0.94rem; text-align: right; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge--ok { background: rgba(74, 222, 128, 0.12); color: #6ee7a0; border-color: rgba(74, 222, 128, 0.3); }
.badge--warn { background: rgba(255, 208, 0, 0.12); color: var(--yellow); border-color: rgba(255, 208, 0, 0.3); }
.badge--off { background: rgba(255, 255, 255, 0.06); color: var(--grey); border-color: var(--line-strong); }

/* Barra de progresso de vagas */
.progress { display: grid; gap: 10px; }
.progress__top { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--grey); }
.progress__top b { color: var(--white); font-family: var(--font-display); }
.progress__track {
  height: 9px;
  border-radius: 99px;
  background: var(--graphite-700);
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--yellow-deep), var(--yellow));
  width: 0;
  transition: width 1s var(--ease);
  box-shadow: 0 0 14px rgba(255, 208, 0, 0.4);
}

.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; }
.metric {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.metric b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 7px;
}
.metric span { font-size: 0.8rem; color: var(--grey-dim); }

.download-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 12px;
  transition: border-color 0.25s, background 0.25s;
}
.download-row:hover { border-color: var(--yellow); background: var(--yellow-soft); }
.download-row__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--yellow-soft);
  color: var(--yellow);
  flex-shrink: 0;
}
.download-row__icon svg { width: 19px; height: 19px; }
.download-row__meta { flex: 1; min-width: 0; }
.download-row__meta b { display: block; font-size: 0.94rem; }
.download-row__meta small { color: var(--grey-dim); font-size: 0.8rem; }

.empty-state {
  text-align: center;
  padding: 44px 26px;
  border-radius: var(--radius);
  border: 1px dashed var(--line-strong);
  background: rgba(255, 255, 255, 0.015);
}
.empty-state__icon {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--yellow-soft);
  color: var(--yellow);
  border: 1px solid rgba(255, 208, 0, 0.22);
}
.empty-state__icon svg { width: 27px; height: 27px; }
.empty-state h3 { font-size: 1.15rem; margin-bottom: 10px; }
.empty-state p { color: var(--grey); font-size: 0.93rem; max-width: 44ch; margin: 0 auto 22px; }

.stack { display: grid; gap: 20px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-display);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------- 15. REVEAL ------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* --------------------------- 16. RESPONSIVO -------------------------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .dash-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .auth-shell { grid-template-columns: 1fr; gap: 42px; }
  .auth-intro { text-align: left; }
}

@media (max-width: 960px) {
  :root { --header-h: 70px; }
  .nav-toggle { display: grid; }
  .header-actions .btn--login { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 20px 28px;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.3s, visibility 0.3s;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: 15px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav a:hover, .nav a.active { background: rgba(255, 255, 255, 0.05); }
  .nav__mobile { display: grid; gap: 10px; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--line); }

  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mode-grid { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
  .cta-band { padding: 48px 34px; }
}
.nav__mobile { display: none; }

@media (max-width: 760px) {
  .hero { min-height: auto; padding: calc(var(--header-h) + 70px) 0 90px; }
  .hero__stats { grid-template-columns: 1fr; gap: 22px; }
  .hero__scroll { display: none; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .dash-grid, .dash-grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .auth-card { padding: 30px 22px; }
  .plan { padding: 32px 24px; }
  .panel { padding: 24px 20px; }
  .dash__head { flex-direction: column; align-items: flex-start; }
  .info-row dd { text-align: left; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .grid--4 { grid-template-columns: 1fr; }
  .hero__cta .btn, .cta-band__actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .compare th, .compare td { padding: 13px 12px; font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 600px) {

    .brand__logo-icon {
        width: 36px;
        height: 36px;
    }


    .brand__logo-name {
        width: 135px;
    }


    .hero__brand-logo {
        width: min(100%, 430px);
    }

}

/* Acessibilidade: skip link e foco */
.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--yellow);
  color: #0a0a0a;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }




/* =========================================================
   CONTRATAÇÃO
========================================================= */

.contratar-page {
    padding-top: 48px;
    padding-bottom: 72px;
}


.contratar-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}


.contratar-header h1 {
    margin: 6px 0 8px;
}


.contratar-eyebrow,
.contratar-section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}


.contratar-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 380px);

    gap: 24px;
    align-items: start;
}


.contratar-main {
    display: grid;
    gap: 20px;
}


.contratar-section-title {
    margin: 4px 0 0;
    font-size: 22px;
}


.contratar-descricao {
    margin-top: 20px;
    line-height: 1.6;
}


.contratar-divider {
    height: 1px;
    margin: 28px 0;
    background: rgba(255, 255, 255, 0.08);
}


.contratar-form-header {
    margin-bottom: 22px;
}


.contratar-form-header h3 {
    margin: 0 0 6px;
}


.contratar-form-header p {
    margin: 0;
}


.contratar-form-section small {
    display: block;
    margin-top: 8px;
    line-height: 1.5;
}


.contratar-summary {
    position: sticky;
    top: 100px;
}


.contratar-summary__header {
    margin-bottom: 26px;
}


.contratar-summary__header h2 {
    margin: 4px 0 0;
}


.contratar-summary__plan {
    display: flex;
    flex-direction: column;
    gap: 7px;

    padding: 20px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.contratar-summary__plan strong {
    font-size: 20px;
}


.contratar-summary__info {
    margin-top: 18px;
}


.contratar-summary__total {
    margin: 24px 0;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}


.contratar-summary__total div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.contratar-summary__total strong {
    font-size: 28px;
}


.contratar-summary__note {
    margin: 14px 0 0;

    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}


.contratar-next {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}


.contratar-next__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex-shrink: 0;

    border-radius: 50%;

    font-weight: 700;

    background:
        rgba(255, 255, 255, 0.06);
}


.contratar-next strong {
    display: block;
    margin-bottom: 5px;
}


.contratar-next p {
    margin: 0;
    line-height: 1.5;
}


.contratar-loading {
    text-align: center;
}


@media (max-width: 900px) {

    .contratar-header {
        align-items: flex-start;
        flex-direction: column;
    }


    .contratar-grid {
        grid-template-columns: 1fr;
    }


    .contratar-summary {
        position: static;
    }

}


@media (max-width: 600px) {

    .contratar-page {
        padding-top: 28px;
        padding-bottom: 48px;
    }


    .contratar-header {
        margin-bottom: 22px;
    }


    .contratar-header .btn {
        width: 100%;
    }


    .contratar-summary__total strong {
        font-size: 24px;
    }

}





/* =========================================================
   ASSINATURAS
========================================================= */


.assinaturas-lista {
    display: grid;
    gap: 16px;
}


.assinatura-conta {
    padding: 18px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.assinatura-conta__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;

    margin-bottom: 14px;
}


.assinatura-conta__header > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.assinatura-conta__header strong {
    font-size: 16px;
}


/* =========================================================
   CONVITES DE EMPRESAS
========================================================= */

#conta-convites {
    margin-bottom: 40px;
}


.convites-lista {
    display: grid;
    gap: 16px;
}


.convite-empresa {
    padding: 20px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.convite-empresa__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}


.convite-empresa__head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}


.convite-empresa__head > div > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.convite-empresa__logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
}


.convite-empresa .alert:not(.show) {
    display: none;
}


@media (max-width: 600px) {

    .convite-empresa__head {
        align-items: flex-start;
        flex-direction: column;
    }

}




/* =========================================================
   EMPRESA LOGO
========================================================= */






.empresa-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}


.empresa-title-row .dash__title {
    margin: 0;
}


.empresa-title-logo {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);
}


@media (max-width: 600px) {

    .empresa-title-logo {
        width: 48px;
        height: 48px;
    }

}




/* =========================================================
   PAGAMENTO
========================================================= */

.pagamento-page {
    min-height: calc(
        100vh - var(--header-h)
    );

    padding:
        calc(
            var(--header-h)
            + 64px
        )
        0
        90px;
}


.pagamento-page > .wrap {
    display: flex;
    justify-content: center;
}


.pagamento-card {
    width: min(
        100%,
        680px
    );

    padding: 48px;

    text-align: center;

    border:
        1px solid
        var(--line);

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.045
            ),
            rgba(
                255,
                255,
                255,
                0.015
            )
        );

    box-shadow:
        var(--shadow);
}


.pagamento-status-icon {
    width: 76px;
    height: 76px;

    margin:
        0 auto
        24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--yellow-soft);

    color:
        var(--yellow);

    border:
        1px solid
        rgba(
            255,
            208,
            0,
            0.25
        );
}


.pagamento-status-icon svg {
    width: 34px;
    height: 34px;
}


.pagamento-status-icon.is-success {
    color:
        var(--success);

    background:
        rgba(
            74,
            222,
            128,
            0.1
        );

    border-color:
        rgba(
            74,
            222,
            128,
            0.25
        );
}


.pagamento-status-icon.is-error {
    color:
        var(--danger);

    background:
        rgba(
            255,
            93,
            93,
            0.1
        );

    border-color:
        rgba(
            255,
            93,
            93,
            0.25
        );
}


.pagamento-spinner {
    width: 30px;
    height: 30px;

    border:
        3px solid
        rgba(
            255,
            208,
            0,
            0.18
        );

    border-top-color:
        var(--yellow);

    border-radius:
        50%;

    animation:
        pagamento-spin
        0.8s
        linear
        infinite;
}


@keyframes pagamento-spin {

    to {
        transform:
            rotate(
                360deg
            );
    }
}


.pagamento-eyebrow {
    justify-content:
        center;
}


.pagamento-card h1 {
    margin:
        0 0
        14px;

    font-size:
        clamp(
            1.8rem,
            4vw,
            2.6rem
        );
}


.pagamento-sub {
    max-width:
        500px;

    margin:
        0 auto;

    color:
        var(--grey);

    line-height:
        1.7;
}


.pagamento-resumo {
    margin-top:
        34px;

    padding:
        6px
        22px;

    border-radius:
        14px;

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    border:
        1px solid
        var(--line);
}


.pagamento-resumo__row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding:
        16px
        0;

    text-align:
        left;
}


.pagamento-resumo__row
+
.pagamento-resumo__row {
    border-top:
        1px solid
        var(--line);
}


.pagamento-resumo__row span {
    color:
        var(--grey);
}


.pagamento-resumo__row strong {
    text-align:
        right;
}


.pagamento-senha {
    margin-top:
        32px;

    padding-top:
        30px;

    text-align:
        left;

    border-top:
        1px solid
        var(--line);
}


.pagamento-senha__head {
    margin-bottom:
        24px;
}


.pagamento-senha__head h2 {
    margin:
        5px 0
        8px;

    font-size:
        1.4rem;
}


.pagamento-senha__campos {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        16px;

    margin-bottom:
        22px;
}


.pagamento-senha input {
    text-align:
        center;

    font-size:
        1.25rem;

    letter-spacing:
        0.3em;
}


.pagamento-acoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top:
        32px;
}


@media (
    max-width: 600px
) {

    .pagamento-page {
        padding:
            calc(
                var(--header-h)
                + 32px
            )
            0
            50px;
    }


    .pagamento-card {
        padding:
            32px
            20px;
    }


    .pagamento-senha__campos {
        grid-template-columns:
            1fr;
    }


    .pagamento-acoes {
        flex-direction:
            column;
    }


    .pagamento-acoes .btn {
        width:
            100%;
    }

}
