:root {
  /* Paleta alinhada ao tema visual do AutoSITEduc */
  --bg: #07111f;
  --panel: #0b1728;
  --panel-2: #101f35;

  --brand-blue: #075a9c;
  --brand-blue-hover: #0b6fb8;
  --header-blue: #1f4e79;

  --accent: #f28c28;
  --accent-2: #1f86c7;

  --content-bg: #f5f7fb;
  --content-card: #ffffff;
  --content-border: #d9e2ec;

  --text: #333333;
  --text-dark: #000000;
  --muted: #666666;
  --muted-2: #777777;

  --text-on-dark: #ffffff;
  --text-soft-on-dark: #d6e4f0;

  --hero-border: #193654;
  --hero-inner-border: #102c48;
  --hero-grid-1: #0f2b45;
  --hero-grid-2: #0c263e;
  --hero-badge: #0c2037;

  --danger: #a00000;
  --logout: #d35400;

  --line-dark: rgba(214, 228, 240, 0.16);
  --line-light: #d9e2ec;

  --shadow-dark: 0 26px 70px rgba(0, 0, 0, 0.36);
  --shadow-card: 0 18px 45px rgba(7, 17, 31, 0.1);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --max: 1120px;
}

/* Reset básico */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--content-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 16% 6%,
      rgba(31, 134, 199, 0.22),
      transparent 28rem
    ),
    radial-gradient(
      circle at 88% 0%,
      rgba(242, 140, 40, 0.18),
      transparent 25rem
    ),
    linear-gradient(180deg, var(--bg) 0 760px, var(--content-bg) 760px 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(15, 43, 69, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 38, 62, 0.7) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0 620px, transparent 900px);
  pointer-events: none;
}

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

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  color: var(--text-on-dark);
  font-size: clamp(2.55rem, 11vw, 5.7rem);
}

h2 {
  color: var(--text-dark);
  font-size: clamp(1.95rem, 7vw, 3.7rem);
}

h3 {
  color: var(--text-dark);
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

/* Correção forte do contraste do hero */
.hero h1,
.hero h1 *,
.hero-title,
.hero-title * {
  color: var(--text-on-dark) !important;
  -webkit-text-fill-color: var(--text-on-dark) !important;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.hero .hero-lead,
.hero .hero-lead * {
  color: var(--text-soft-on-dark) !important;
  -webkit-text-fill-color: var(--text-soft-on-dark) !important;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 999;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 12px 16px;
  background: var(--content-card);
  color: var(--bg);
  border-radius: 999px;
  clip: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--hero-border);
  background: rgba(7, 17, 31, 0.92);
}

.nav {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--text-on-dark);
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-blue), var(--header-blue));
  border: 1px solid rgba(214, 228, 240, 0.2);
  box-shadow:
    0 12px 30px rgba(7, 90, 156, 0.34),
    inset 0 -8px 18px rgba(0, 0, 0, 0.16);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--text-on-dark);
  font-size: 1rem;
}

.brand-text small {
  color: var(--text-soft-on-dark);
  font-size: 0.74rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  color: var(--text-soft-on-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-menu a:hover {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu .nav-cta {
  color: var(--text-on-dark);
  background: var(--brand-blue);
  font-weight: 800;
}

.nav-menu .nav-cta:hover {
  color: var(--text-on-dark);
  background: var(--brand-blue-hover);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hero-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-on-dark);
  margin: 4px auto;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 80px;
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  background: rgba(12, 32, 55, 0.82);
  border: 1px solid var(--hero-border);
  border-radius: 999px;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero-lead {
  margin-top: 22px;
  color: var(--text-soft-on-dark);
  font-size: clamp(1.06rem, 4vw, 1.25rem);
  max-width: 680px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--text-on-dark);
  background: linear-gradient(
    135deg,
    var(--brand-blue),
    var(--brand-blue-hover)
  );
  box-shadow: 0 16px 34px rgba(7, 90, 156, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-blue-hover), var(--accent-2));
}

.button-disabled {
  color: var(--muted-2);
  border: 1px solid var(--content-border);
  background: #f1f1f1;
  box-shadow: none;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
}

.button-ghost {
  color: var(--text-on-dark);
  border: 1px solid var(--hero-border);
  background: rgba(255, 255, 255, 0.055);
}

.button-ghost:hover {
  border-color: rgba(242, 140, 40, 0.55);
  background: rgba(242, 140, 40, 0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  color: var(--text-soft-on-dark);
  border: 1px solid var(--hero-border);
  background: rgba(12, 32, 55, 0.72);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-one {
  width: 280px;
  height: 280px;
  background: rgba(31, 134, 199, 0.2);
  left: -90px;
  top: 110px;
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  background: rgba(242, 140, 40, 0.17);
  right: -110px;
  bottom: 60px;
}

/* Card do produto */
.product-card {
  border: 1px solid var(--hero-border);
  border-radius: var(--radius-xl);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(16, 31, 53, 0.96), rgba(11, 23, 40, 0.96)),
    linear-gradient(135deg, var(--hero-grid-1), var(--hero-grid-2));
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -42% -42% auto auto;
  width: 275px;
  height: 275px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.28),
    transparent 70%
  );
}

.window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
  position: relative;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line-dark);
}

.window-bar span:nth-child(1) {
  background: var(--danger);
}

.window-bar span:nth-child(2) {
  background: var(--accent);
}

.window-bar span:nth-child(3) {
  background: var(--brand-blue-hover);
}

.dashboard-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--hero-inner-border);
  padding-bottom: 18px;
}

.dashboard-top p {
  font-size: 0.85rem;
  color: var(--text-soft-on-dark);
}

.dashboard-top strong {
  display: block;
  margin-top: 5px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  color: var(--text-on-dark);
}

.status-pill {
  color: var(--text-on-dark);
  background: var(--accent);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.automation-flow {
  margin-top: 18px;
  position: relative;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hero-inner-border);
}

.flow-step.active {
  background: rgba(7, 90, 156, 0.22);
  border-color: rgba(31, 134, 199, 0.56);
}

.flow-step strong {
  color: var(--text-on-dark);
}

.flow-step span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--hero-badge);
  color: var(--accent);
  font-weight: 900;
}

.flow-step small {
  display: block;
  color: var(--text-soft-on-dark);
  margin-top: 4px;
}

.flow-line {
  width: 1px;
  height: 18px;
  background: var(--hero-inner-border);
  margin-left: 32px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
  position: relative;
}

.metric-grid div {
  padding: 14px;
  border: 1px solid var(--hero-inner-border);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.14);
}

.metric-grid strong {
  display: block;
  font-size: 1.28rem;
  color: var(--text-on-dark);
}

.metric-grid span {
  display: block;
  color: var(--text-soft-on-dark);
  font-size: 0.76rem;
  margin-top: 6px;
}

/* Seções */
.section {
  padding: 72px 0;
}

.section-tight {
  padding-top: 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--content-border);
  border-radius: var(--radius-lg);
  background: var(--content-card);
  min-height: 220px;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(7, 90, 156, 0.1);
  color: var(--brand-blue);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.feature-card p {
  margin-top: 12px;
}

.split-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--content-bg) 100%);
}

.split-grid {
  display: grid;
  gap: 30px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--content-border);
  background: var(--content-card);
  box-shadow: var(--shadow-card);
}

.timeline-item span {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand-blue), var(--header-blue));
  color: var(--text-on-dark);
  font-weight: 900;
}

.timeline-item p {
  margin-top: 8px;
}

/* Segurança, empresa e contato */
.security-grid {
  display: grid;
  gap: 16px;
}

.security-card,
.check-list,
.company-card,
.contact-card {
  border: 1px solid var(--content-border);
  border-radius: var(--radius-xl);
  background: var(--content-card);
  box-shadow: var(--shadow-card);
}

.security-card,
.contact-card {
  padding: 28px;
}

.security-card p:not(.eyebrow),
.company-card p,
.contact-card p:not(.eyebrow) {
  margin-top: 18px;
}

.check-list {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.check-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: var(--content-bg);
  border: 1px solid var(--content-border);
}

.check-list span {
  color: var(--brand-blue);
  font-weight: 900;
}

.company-section {
  background: linear-gradient(180deg, var(--content-bg), #ffffff);
}

.company-card {
  padding: 28px;
  display: grid;
  gap: 22px;
  align-items: center;
}

.company-card .button-ghost,
.contact-card .button-ghost {
  color: var(--brand-blue);
  border-color: var(--content-border);
  background: #ffffff;
}

.company-card .button-ghost:hover,
.contact-card .button-ghost:hover {
  color: var(--text-on-dark);
  background: var(--accent);
  border-color: var(--accent);
}

.contact-section {
  padding-top: 36px;
  background: #ffffff;
}

.contact-card {
  text-align: left;
}

.contact-note {
  font-size: 0.86rem;
  color: var(--muted-2);
}

code {
  color: var(--brand-blue);
  background: var(--content-bg);
  border: 1px solid var(--content-border);
  border-radius: 8px;
  padding: 2px 6px;
}

/* Footer */
.footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--content-border);
  background: #ffffff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--brand-blue);
  font-weight: 800;
}

/* Animação */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--hero-border);
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.97);
    box-shadow: var(--shadow-dark);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }
}

/* Desktop/tablet */
@media (min-width: 761px) {
  .hero {
    padding: 88px 0 108px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-grid,
  .security-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .company-card {
    grid-template-columns: 1fr auto;
    padding: 34px;
  }

  .contact-card {
    text-align: center;
    padding: 44px;
  }

  .contact-actions {
    justify-content: center;
  }
}

/* Garantia final de contraste no hero */
.hero,
.hero * {
  text-rendering: geometricPrecision;
}

.hero h1,
.hero h1 span,
.hero h1 strong,
.hero-title,
.hero-title span,
.hero-title strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero p.hero-lead,
.hero .hero-lead,
.hero .hero-lead span {
  color: #d6e4f0 !important;
  -webkit-text-fill-color: #d6e4f0 !important;
}

/* Correção final do título principal */
.hero-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  color: #d6e4f0 !important;
  -webkit-text-fill-color: #d6e4f0 !important;
}
/* Correção de contraste para título em seção escura */
.section-title-on-dark {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

/* Logo AutoSITEduc */
.brand-logo-wrap {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(214, 228, 240, 0.28);
  box-shadow:
    0 12px 30px rgba(7, 90, 156, 0.28),
    inset 0 -8px 18px rgba(7, 17, 31, 0.06);
  overflow: hidden;
}

.brand-logo {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Ajustes de marketing AutoSITEduc */
.app-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hero-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(16, 31, 53, 0.96), rgba(11, 23, 40, 0.96)),
    linear-gradient(135deg, var(--hero-grid-1), var(--hero-grid-2));
  box-shadow: var(--shadow-dark);
  padding: 14px;
}

.app-preview::before {
  content: "";
  position: absolute;
  inset: -40% -35% auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.24), transparent 70%);
  pointer-events: none;
}

.preview-window-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.preview-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line-dark);
}

.preview-window-bar span:nth-child(1) {
  background: var(--danger);
}

.preview-window-bar span:nth-child(2) {
  background: var(--accent);
}

.preview-window-bar span:nth-child(3) {
  background: var(--brand-blue-hover);
}

.app-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  border: 1px solid var(--hero-inner-border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.preview-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--hero-inner-border);
  background: rgba(255, 255, 255, 0.055);
}

.preview-caption strong {
  color: var(--text-on-dark);
  font-size: 1rem;
}

.preview-caption span {
  color: var(--text-soft-on-dark);
  font-size: 0.9rem;
  line-height: 1.5;
}

.benefits-section {
  background: linear-gradient(180deg, var(--content-bg), #ffffff);
}

.benefit-grid {
  display: grid;
  gap: 14px;
}

.benefit-card {
  padding: 24px;
  min-height: 230px;
  border: 1px solid var(--content-border);
  border-radius: var(--radius-lg);
  background: var(--content-card);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 90, 156, 0.28);
  box-shadow: 0 22px 52px rgba(7, 17, 31, 0.14);
}

.benefit-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.16), transparent 42%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  border-color: rgba(242, 140, 40, 0.4);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(7, 90, 156, 0.1);
  color: var(--brand-blue);
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.benefit-card-highlight .benefit-icon {
  color: var(--text-on-dark);
  background: linear-gradient(135deg, var(--accent), var(--logout));
}

.benefit-card p {
  margin-top: 12px;
}

.proof-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 140, 40, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--bg), var(--panel));
}

.proof-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--hero-border);
  border-radius: var(--radius-xl);
  background: rgba(11, 23, 40, 0.86);
  box-shadow: var(--shadow-dark);
}

.proof-card h2 {
  color: var(--text-on-dark);
}

.proof-card p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--text-soft-on-dark);
}

.proof-metrics {
  display: grid;
  gap: 12px;
}

.proof-metrics div {
  padding: 18px;
  border: 1px solid var(--hero-inner-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.proof-metrics strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-metrics span {
  display: block;
  color: var(--text-soft-on-dark);
  margin-top: 8px;
  line-height: 1.45;
}

.download-section {
  background: linear-gradient(180deg, #ffffff, var(--content-bg));
}

.download-card {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--content-border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(7, 90, 156, 0.1), transparent 26rem),
    var(--content-card);
  box-shadow: var(--shadow-card);
}

.download-card p:not(.eyebrow) {
  margin-top: 18px;
}

.download-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.download-note {
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-placeholder {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 24px;
  border: 1px dashed rgba(7, 90, 156, 0.38);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(7, 90, 156, 0.06), rgba(242, 140, 40, 0.05)),
    #ffffff;
}

.form-placeholder strong {
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.form-placeholder span {
  color: var(--muted);
  line-height: 1.55;
}

@media (min-width: 761px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-card,
  .download-card {
    grid-template-columns: 1fr 0.85fr;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .download-actions {
    justify-items: end;
    text-align: right;
  }
}

.tally-embed {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--content-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.08);
}

.tally-embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  background: transparent;
}

.pricing-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 90, 156, 0.1), transparent 24rem),
    linear-gradient(180deg, var(--content-bg), #ffffff);
}

.pricing-grid {
  display: grid;
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--content-border);
  border-radius: var(--radius-xl);
  background: var(--content-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 90, 156, 0.3);
  box-shadow: 0 24px 58px rgba(7, 17, 31, 0.14);
}

.pricing-card-featured {
  border-color: rgba(242, 140, 40, 0.46);
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.17), transparent 22rem),
    linear-gradient(180deg, #ffffff, #fffaf4);
}

.pricing-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-on-dark);
  background: linear-gradient(135deg, var(--accent), var(--logout));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: clamp(1.35rem, 5vw, 2rem);
  letter-spacing: -0.035em;
}

.pricing-description {
  color: var(--muted);
}

.price-block {
  display: grid;
  gap: 5px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--content-border);
  background:
    linear-gradient(180deg, rgba(7, 90, 156, 0.055), rgba(242, 140, 40, 0.045)),
    #ffffff;
}

.old-price {
  width: fit-content;
  color: var(--muted-2);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--logout);
}

.price-block strong {
  color: var(--brand-blue);
  font-size: clamp(2.3rem, 12vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-block small {
  color: var(--muted);
  font-weight: 800;
}

.pricing-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-blue);
  font-weight: 900;
}

.pricing-card .button {
  width: fit-content;
}

.pricing-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted-2);
  text-align: center;
  font-size: 0.92rem;
}

@media (min-width: 1181px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .pricing-card {
    gap: 12px;
    padding: 22px;
    grid-template-rows: auto 64px 52px auto auto auto;
    align-content: start;
  }

  .pricing-badge {
    width: fit-content;
    min-height: unset;
    padding: 7px 11px;
    display: block;
    line-height: 1.2;
  }

  .pricing-card h3 {
    min-height: 0;
    font-size: clamp(1.3rem, 1.7vw, 1.55rem);
    line-height: 1.1;
  }

  .pricing-description {
    min-height: 0;
    align-self: start;
    line-height: 1.45;
  }

  .price-block {
    margin-top: 0;
    padding: 16px;
  }

  .price-block strong {
    font-size: clamp(2.25rem, 4vw, 3.35rem);
  }

  .pricing-list {
    gap: 8px;
  }

  .pricing-list li {
    line-height: 1.45;
  }

  .pricing-card-note {
    padding: 10px 12px;
    line-height: 1.45;
  }
}

.pricing-card-unavailable {
  background:
    linear-gradient(180deg, #ffffff, #f7f7f7);
}

.pricing-card-unavailable::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: grayscale(0.75);
}

.pricing-card-unavailable > * {
  position: relative;
  z-index: 1;
}

.pricing-card-unavailable:hover {
  transform: none;
  border-color: var(--content-border);
  box-shadow: var(--shadow-card);
}

.pricing-badge-unavailable {
  color: var(--muted-2);
  background: #eeeeee;
}

.pricing-card-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(242, 140, 40, 0.3);
  background: rgba(242, 140, 40, 0.08);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.tutorials-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(7, 90, 156, 0.1), transparent 24rem),
    linear-gradient(180deg, #ffffff, var(--content-bg));
}

.tutorial-carousel {
  display: grid;
  gap: 16px;
}

.tutorial-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tutorial-carousel-head span {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.tutorial-controls {
  display: inline-flex;
  gap: 8px;
}

.tutorial-control {
  width: 42px;
  height: 42px;
  border: 1px solid var(--content-border);
  border-radius: 999px;
  color: var(--brand-blue);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.tutorial-control:hover {
  transform: translateY(-2px);
  color: var(--text-on-dark);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.tutorial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
}

.tutorial-track .tutorial-card {
  flex: 0 0 min(88vw, 390px);
  scroll-snap-align: start;
}

.tutorial-card {
  overflow: hidden;
  border: 1px solid var(--content-border);
  border-radius: var(--radius-xl);
  background: var(--content-card);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.tutorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 90, 156, 0.28);
  box-shadow: 0 24px 58px rgba(7, 17, 31, 0.14);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at center, rgba(242, 140, 40, 0.16), transparent 42%),
    var(--panel);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-coming-soon {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.video-coming-soon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-on-dark);
  background: linear-gradient(135deg, var(--brand-blue), var(--accent-2));
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(7, 90, 156, 0.26);
}

.tutorial-content {
  padding: 22px;
}

.tutorial-content span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(7, 90, 156, 0.09);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tutorial-content p {
  margin-top: 10px;
}

@media (min-width: 761px) {
  .tutorial-track .tutorial-card {
    flex-basis: calc((100% - 36px) / 3);
  }
}

/* Ajustes para notebooks menores, como telas de 13" */
@media (min-width: 761px) and (max-width: 1180px) {
  .container {
    width: min(100% - 36px, 1040px);
  }

  .hero {
    padding-top: 124px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
  }

  .hero-copy > p {
    max-width: 720px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .app-preview {
    max-height: 520px;
  }

  .benefit-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .pricing-card {
    gap: 12px;
    padding: 22px;
  }

  .pricing-card h3 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.12;
  }

  .pricing-description {
    line-height: 1.45;
  }

  .price-block {
    padding: 16px;
  }

  .price-block strong {
    font-size: clamp(2.25rem, 7vw, 3.35rem);
  }

  .pricing-list {
    gap: 8px;
  }

  .pricing-list li {
    line-height: 1.45;
  }

  .pricing-card-note {
    padding: 10px 12px;
    line-height: 1.45;
  }

  .tutorial-track .tutorial-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .download-card,
  .contact-card,
  .company-card {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-menu a {
    font-size: 0.92rem;
  }
}

.tally-embed.tally-embed-blocked {
  border-color: rgba(242, 140, 40, 0.42);
  background:
    linear-gradient(180deg, rgba(242, 140, 40, 0.1), rgba(7, 90, 156, 0.05)),
    #ffffff;
}

.saturday-form-block {
  display: grid;
  gap: 10px;
  padding: 28px;
  text-align: left;
}

.saturday-form-block strong {
  color: var(--brand-blue);
  font-size: 1.2rem;
}

.saturday-form-block p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.saturday-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 17, 31, 0.62);
}

.saturday-dialog {
  width: min(100%, 460px);
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.28);
}

.saturday-dialog strong {
  color: var(--brand-blue);
  font-size: 1.35rem;
}

.saturday-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.saturday-dialog-button {
  justify-self: start;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--brand-blue);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.saturday-dialog-button:hover,
.saturday-dialog-button:focus {
  background: var(--brand-orange);
  outline: none;
}

/* Contagem regressiva dos preços promocionais */
.launch-countdown {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: center;
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid rgba(242, 140, 40, 0.42);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(7, 90, 156, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-card);
}

.launch-countdown[hidden] {
  display: none;
}

.launch-countdown-content {
  display: grid;
  gap: 10px;
}

.launch-countdown-eyebrow {
  margin: 0;
  color: var(--logout);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-countdown-content h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.launch-countdown-content > p:last-child {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  line-height: 1.6;
}

.launch-countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 1fr));
  gap: 10px;
}

.launch-countdown-unit {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 0;
  padding: 16px 8px;
  border: 1px solid rgba(7, 90, 156, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(7, 17, 31, 0.08);
  text-align: center;
}

.launch-countdown-unit strong {
  color: var(--brand-blue);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.launch-countdown-unit span {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-countdown-status {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: var(--muted-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.launch-countdown-action {
  grid-column: 1 / -1;
  width: fit-content;
}

@media (max-width: 900px) {
  .launch-countdown {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .launch-countdown {
    gap: 20px;
    padding: 22px 16px;
  }

  .launch-countdown-clock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-countdown-unit {
    padding: 14px 8px;
  }

  .launch-countdown-action {
    width: 100%;
    text-align: center;
  }
}

/* Aviso exibido durante a janela de indisponibilidade dos preços */
.pricing-restricted-message {
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid rgba(242, 140, 40, 0.42);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(7, 90, 156, 0.07), #ffffff);
  box-shadow: var(--shadow-card);
}

.pricing-restricted-message[hidden] {
  display: none;
}

.pricing-restricted-message strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.pricing-restricted-message p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 560px) {
  .pricing-restricted-message {
    padding: 22px 16px;
  }
}

.pricing-grid[hidden],
.pricing-note[hidden] {
  display: none;
}
