/* ================================================================
   UP CHECK - SISTEMA DE CHECKLIST INTELIGENTE
   Arquivo de estilos principal
================================================================ */

:root {
  --primary-color: #16a34a;
  --primary-dark: #14532d;
  --primary-light: #22c55e;
  --secondary-color: #4ade80;
  --accent: #bbf7d0;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f0fdf4;
  --border-soft: rgba(15, 23, 42, 0.1);
  --font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-green: 0 10px 40px rgba(22,163,74,0.3);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(34, 197, 94, 0.45);
  outline-offset: 4px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 2000;
  padding: 10px 14px; background: #fff; color: var(--primary-dark);
  border-radius: 8px; font-weight: 800; text-decoration: none;
  box-shadow: var(--shadow-lg); transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(10px);
  box-shadow: rgba(15, 23, 42, 0.08) 0px 20px 45px -18px; z-index: 1000; transition: var(--transition);
  width: 100%; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center; height: 80px;
}
.navbar.scrolled { box-shadow: rgba(15, 23, 42, 0.14) 0px 22px 50px -22px; }
.logo-container {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-container .logo-image {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: top center;
}
.nav-logo-text {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text span {
  color: var(--primary-color);
}

.nav-menu { display: flex; list-style: none; gap: 1rem; align-items: center; }
.nav-link {
  text-decoration: none; color: var(--text-secondary); font-weight: 700; font-size: 0.88rem;
  transition: color 0.25s ease, transform 0.25s ease; position: relative; padding: 5px 0;
}
.nav-link::after {
  content: ""; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); transition: width 0.25s ease;
}
.nav-link:hover { color: var(--primary-dark); transform: translateY(-1px); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--primary-dark); }
.btn-login {
  padding: 12px 20px; background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); color: white;
  text-decoration: none; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.18);
}
.btn-login:hover { background: linear-gradient(135deg, #14532d 0%, #16a34a 100%); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(34, 197, 94, 0.24); }
.btn-trial {
  padding: 10px 18px; border: 2px solid var(--primary-color); color: var(--primary-dark);
  text-decoration: none; border-radius: 999px; font-weight: 800; font-size: 0.95rem;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn-trial:hover { background: var(--primary-color); color: #fff; transform: translateY(-2px); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0.4rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--border-soft);
}

.mobile-menu-toggle {
  display: none; flex-direction: column; background: #f8fafc; border: 1px solid var(--border-soft); cursor: pointer; padding: 8px;
  border-radius: 8px;
}
.mobile-menu-toggle span { width: 25px; height: 3px; background: var(--text-primary); margin: 3px 0; transition: var(--transition); border-radius: 2px; }

/* ================================================================
   HERO
================================================================ */
.hero {
  margin-top: 80px; padding: 0; position: relative;
  overflow: hidden; min-height: calc(100svh - 80px); display: flex; align-items: center; justify-content: center;
}
.hero-background {
  position: absolute; inset: 0; z-index: 0;
  background-color: #0b3920;
  background-image:
    linear-gradient(100deg, rgba(6,28,17,0.95) 0%, rgba(9,46,26,0.93) 38%, rgba(11,57,32,0.86) 54%, rgba(14,70,38,0.48) 68%, rgba(9,46,26,0.3) 100%),
    url('images/home_web.png');
  background-size: cover, auto 100%;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
}
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.12));
}

.hero-content {
  max-width: 1280px; width: 100%; margin: 0 auto; padding: 48px 40px 56px;
  text-align: left;
  position: relative; z-index: 10;
}
.hero-text { animation: heroFadeIn 1s cubic-bezier(0.16,1,0.3,1) backwards; max-width: 620px; width: 100%; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }

.hero-title { font-size: clamp(2.35rem, 4.7vw, 4.25rem); font-weight: 900; color: white; line-height: 1.03; margin-bottom: 20px; letter-spacing: 0; }
.title-line { display: block; }
.title-word { display: inline-block; opacity: 0; animation: wordFadeIn 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.title-word:nth-child(1) { animation-delay: 0.5s; }
.title-word.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #bbf7d0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation-delay: 0.7s;
}
@keyframes wordFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-description {
  font-size: 1.16rem; color: rgba(255,255,255,0.90); margin-bottom: 18px;
  line-height: 1.65; animation: fadeInUp 0.8s ease-out 0.9s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start;
  animation: fadeInUp 0.8s ease-out 1.1s both; margin-bottom: 28px;
}
.hero-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 780px);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 18px 0;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}
.hero-flow div {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  text-align: center;
}
.hero-flow-arrow {
  flex-shrink: 0;
  color: #4ade80;
  font-size: 1.5rem;
  opacity: 0.75;
  line-height: 1;
}
.hero-flow strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}
.hero-flow small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-product-preview {
  width: min(100%, 760px);
  margin: 0 auto 56px;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}
.dashboard-image-shell {
  position: relative;
}
.dashboard-screenshot {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  background: #fff;
}
.dashboard-image-shell.has-image .dashboard-screenshot {
  display: block;
}
.dashboard-image-shell.has-image .dashboard-preview {
  display: none;
}
.dashboard-preview {
  overflow: hidden;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  text-align: left;
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  background: #061a59;
  color: #fff;
  position: relative;
}
.dashboard-topbar strong {
  font-size: 0.98rem;
  font-weight: 900;
}
.dashboard-topbar span {
  position: absolute;
  right: 14px;
  top: 9px;
  padding: 6px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
  font-size: 0.76rem;
  font-weight: 800;
}
.dashboard-alert {
  margin: 14px;
  padding: 10px 14px;
  border: 1px solid #aeb8d0;
  border-radius: 8px;
  background: #e8ebf3;
  color: #061a59;
  font-size: 0.78rem;
  font-weight: 800;
}
.dashboard-alert span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 1px solid #061a59;
  border-radius: 50%;
  font-size: 0.7rem;
}
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 4px 18px 14px;
}
.dashboard-kpi {
  min-width: 0;
  padding: 13px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 22px rgba(15,23,42,0.08);
}
.dashboard-kpi small {
  display: block;
  margin-bottom: 3px;
  color: #061a59;
  font-size: 0.72rem;
  font-weight: 900;
}
.dashboard-kpi strong {
  display: block;
  color: #061a59;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}
.dashboard-kpi.approved { border-color: #86d889; }
.dashboard-kpi.approved strong, .dashboard-kpi.approved small { color: #3faf4b; }
.dashboard-kpi.review { border-color: #f4bf63; }
.dashboard-kpi.review strong, .dashboard-kpi.review small { color: #fb8c00; }
.dashboard-kpi.process { border-color: #a9b5f4; }
.dashboard-kpi.process strong, .dashboard-kpi.process small { color: #3f51b5; }
.dashboard-kpi.rejected { border-color: #ff8f89; }
.dashboard-kpi.rejected strong, .dashboard-kpi.rejected small { color: #f44336; }
.dashboard-kpi.total {
  background: #aeb6cc;
  border-color: #061a59;
  box-shadow: inset 0 0 0 2px #061a59, 0 12px 28px rgba(6,26,89,0.2);
}
.dashboard-kpi.total strong,
.dashboard-kpi.total small {
  color: #061a59;
}
.dashboard-charts {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 12px;
  padding: 4px 14px 16px;
}
.dashboard-card {
  min-width: 0;
  padding: 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15,23,42,0.08);
}
.dashboard-card-title {
  margin-bottom: 12px;
  color: #061a59;
  font-size: 0.78rem;
  font-weight: 900;
}
.donut-chart {
  width: 94px;
  height: 94px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: conic-gradient(#4caf50 0 78%, #ff9800 78% 80%, #f44336 80% 100%);
  position: relative;
}
.donut-chart::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: #fff;
}
.chart-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #475569;
  font-size: 0.68rem;
  font-weight: 700;
}
.chart-legend span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
}
.legend-approved::before { background: #4caf50; }
.legend-review::before { background: #ff9800; }
.legend-rejected::before { background: #f44336; }
.bar-chart {
  height: 112px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 10px 6px 0;
  border-left: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
  background-image: linear-gradient(#eef2f7 1px, transparent 1px);
  background-size: 100% 28px;
}
.bar-chart span {
  flex: 1;
  min-width: 4px;
  border-radius: 2px 2px 0 0;
  background: #061a59;
}

/* HERO STATS */
.hero-stats {
  display: flex; align-items: center; gap: 40px;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 20px;
  padding: 24px 42px; animation: fadeInUp 0.8s ease-out 1.3s both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-number { font-size: 2rem; font-weight: 900; color: white; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.70); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.22); }

/* BOTÕES */
.btn {
  padding: 16px 34px; border-radius: 10px; text-decoration: none;
  font-weight: 800; font-size: 1.05rem; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  display: inline-flex; align-items: center; position: relative; overflow: hidden; cursor: pointer;
}
.btn-content { display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
.btn-icon { font-size: 1.3rem; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.btn-primary { background: white; color: var(--primary-color); box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.btn-primary:hover .btn-icon { transform: translateX(5px); }
.btn-shimmer {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover .btn-shimmer { left: 100%; }
.btn-secondary {
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.5);
  color: white; backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); transform: translateY(-4px); }
.btn-large { padding: 20px 48px; font-size: 1.15rem; }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeInUp 1s cubic-bezier(0.16,1,0.3,1) 1.5s backwards; z-index: 20; cursor: pointer;
}
.scroll-icon { width: 30px; height: 50px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-wheel { width: 4px; height: 10px; background: rgba(255,255,255,0.8); border-radius: 4px; animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(20px); opacity: 0; } }
.scroll-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ================================================================
   SECTION HEADER
================================================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.6rem; font-weight: 900; color: var(--text-primary); margin-bottom: 20px; line-height: 1.25; letter-spacing: -0.03em; }
.section-description { font-size: 1.1rem; color: var(--text-secondary); max-width: 800px; margin: 0 auto; line-height: 1.8; }

/* ================================================================
   DIFERENCIAIS
================================================================ */
.differentials { padding: 140px 0; position: relative; overflow: hidden; background: #0d1f13; }
.differentials-bg { position: absolute; inset: 0; z-index: 0; }
.differentials-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(22,163,74,0.35) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 100% 50%, rgba(74,222,128,0.1) 0%, transparent 50%);
}
.differentials-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}
.differentials .container { position: relative; z-index: 1; }
.differentials .section-header { margin-bottom: 80px; }
.differentials .section-title { color: white; font-size: 3rem; }
.differentials .section-description { color: rgba(255,255,255,0.7); font-size: 1.15rem; }

.differentials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.three-cols { margin-top: 10px; }

.differential-card {
  position: relative;
  min-height: 255px;
  padding: 34px 30px;
  background: rgba(22, 163, 74, 0.11);
  border: 1px solid rgba(187, 247, 208, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.differential-header { display: flex; align-items: flex-start; justify-content: flex-start; margin-bottom: 22px; }
.differential-icon {
  width: 62px; height: 62px; display: flex; align-items: center; justify-content: center;
  background: rgba(187, 247, 208, 0.13); border-radius: 12px; color: #bbf7d0;
  position: relative; border: 1px solid rgba(187, 247, 208, 0.28);
}
.differential-icon-small {
  width: 62px; height: 62px; display: flex; align-items: center; justify-content: center;
  background: rgba(187, 247, 208, 0.13); border-radius: 12px; color: #bbf7d0; margin-bottom: 22px;
  border: 1px solid rgba(187, 247, 208, 0.28);
}
.differential-card h3 { font-size: 1.24rem; font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: 0; line-height: 1.3; }
.differential-card p { font-size: 0.98rem; color: rgba(255,255,255,0.68); line-height: 1.68; }

/* ================================================================
   DORES DO PITCH
================================================================ */
.pitch-pain {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.pitch-pain-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 54px;
  align-items: center;
}
.pitch-pain-copy .section-title,
.pitch-pain-copy .section-description {
  text-align: left;
  margin-left: 0;
}
.pain-stack {
  display: grid;
  gap: 16px;
}
.pain-card {
  position: relative;
  padding: 26px 28px 26px 78px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,197,94,0.36);
  box-shadow: var(--shadow-xl);
}
.pain-number {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #dcfce7;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.78rem;
}
.pain-card h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
}
.pain-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ================================================================
   SOBRE NÓS
================================================================ */
.about { padding: 120px 0; background: var(--bg-secondary); }
.about-content { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about-content-stacked {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.about-content-stacked .about-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.about-content-stacked .about-features {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.about-text { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.feature-item {
  text-align: center; padding: 28px 20px; background: white; border-radius: 10px;
  box-shadow: var(--shadow-md); transition: var(--transition); border: 2px solid transparent;
}
.feature-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.feature-icon { color: var(--primary-color); margin-bottom: 16px; display: flex; justify-content: center; }
.feature-item h3 { font-size: 1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.feature-item p { font-size: 0.88rem; color: var(--text-secondary); }

.about-image { display: flex; justify-content: center; align-items: center; position: relative; }
.management-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 58px;
}
.image-decoration {
  position: absolute; width: 120%; height: 120%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
  border-radius: 24px; opacity: 0.1; z-index: 0; animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.management-panel-image {
  width: 100%;
  max-width: 1180px;
  margin: 0;
  position: relative;
  z-index: 1;
}
.management-panel-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: var(--shadow-2xl);
}

/* ================================================================
   PROBLEMAS
================================================================ */
.workflow {
  padding: 120px 0;
  background: #ffffff;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.workflow-step {
  position: relative;
  min-height: 250px;
  padding: 28px 22px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.workflow-step::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -24px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
}
.workflow-step:last-child::after {
  display: none;
}
.workflow-step:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.38);
  box-shadow: var(--shadow-lg);
}
.workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(22,163,74,0.2);
}
.workflow-step h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.3;
}
.workflow-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.evidence-hub {
  padding: 120px 0;
  background: #0d1f13;
  color: #fff;
  overflow: hidden;
}
.evidence-header {
  text-align: center;
  margin-bottom: 48px;
}
.evidence-header .section-title {
  color: #fff;
}
.evidence-header .section-description {
  color: rgba(255,255,255,0.72);
  margin: 0 auto;
}
/* Evidence image */
.ev-image {
  margin: 0 0 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.ev-image img {
  width: 100%;
  height: auto;
  display: block;
}
.evidence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.evidence-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.evidence-card:hover {
  background: rgba(255,255,255,0.08);
}
.evidence-card svg {
  color: #4ade80;
  flex-shrink: 0;
}
.evidence-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.evidence-card span {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Phone mockup */
.ev-phone {
  position: relative;
  display: flex;
  justify-content: center;
}
.ev-phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: rgba(34,197,94,0.25);
  filter: blur(32px);
  border-radius: 50%;
  pointer-events: none;
}
.ev-phone-frame {
  position: relative;
  width: 280px;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 0 0 10px #1a1a2e, 0 40px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  padding-bottom: 16px;
}
.ev-phone-notch {
  width: 90px;
  height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 0;
}
.ev-app-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
  background: #16a34a;
  color: #fff;
}
.ev-app-bar strong {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 800;
}
.ev-app-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255,255,255,0.22);
  padding: 2px 8px;
  border-radius: 20px;
}
.ev-app-progress-wrap {
  height: 5px;
  background: #dcfce7;
}
.ev-app-progress-bar {
  height: 100%;
  width: 75%;
  background: #16a34a;
}
.ev-check-list {
  display: grid;
  gap: 0;
  padding: 10px 0 4px;
}
.ev-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.84rem;
  color: var(--text-primary);
  font-weight: 600;
}
.ev-check-row:last-child { border-bottom: 0; }
.ev-check-row--done { color: #64748b; }
.ev-check-row--pending { color: #94a3b8; }
.ev-check-circle {
  flex-shrink: 0;
  margin-top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex; align-items: center; justify-content: center;
}
.ev-check-circle--done {
  background: #16a34a;
  border-color: #16a34a;
}
.ev-photo-thumb {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 0.72rem;
  color: #16a34a;
  background: #dcfce7;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
}
.ev-app-footer {
  padding: 12px 16px 4px;
}
.ev-submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: default;
  font-family: var(--font-family);
}
.evidence-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.evidence-list div {
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.evidence-list strong {
  display: block;
  margin-bottom: 6px;
  color: #bbf7d0;
  font-size: 1rem;
}
.evidence-list span {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ================================================================
   CONFORMIDADE
================================================================ */
.compliance {
  padding: 120px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}
.compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 60px;
  align-items: center;
}
.compliance-copy .section-title,
.compliance-copy .section-description {
  text-align: left;
  margin-left: 0;
}
.compliance-points {
  list-style: none;
  display: grid;
  gap: 22px;
  margin-top: 34px;
}
.compliance-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.compliance-point-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.compliance-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
  font-size: 1.02rem;
  font-weight: 900;
}
.compliance-point p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

.compliance-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.compliance-visual::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background:
    radial-gradient(circle at 28% 28%, rgba(34,197,94,0.20), transparent 55%),
    radial-gradient(circle at 76% 72%, rgba(220,38,38,0.14), transparent 55%);
  filter: blur(12px);
  z-index: 0;
}
.compliance-card-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.compliance-card-mock:hover { transform: translateY(-6px); }
.cm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 20px 17px;
  background: #fff;
  border-bottom: 2px solid var(--primary-color);
}
.cm-header strong { font-size: 1rem; font-weight: 900; color: var(--primary-color); }
.cm-header-icon { display: flex; color: #94a3b8; }

/* Cards de estatística (espelham "NCs abertas" / "NCs atrasadas") */
.cm-stat-row {
  display: flex;
  gap: 12px;
  padding: 18px 20px 6px;
}
.cm-stat-box {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid;
}
.cm-stat-box svg { flex-shrink: 0; }
.cm-stat-box span { display: block; font-size: 0.72rem; font-weight: 800; }
.cm-stat-box strong { display: block; font-size: 1.3rem; font-weight: 900; line-height: 1.15; }
.cm-stat-box--warn { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }
.cm-stat-box--danger { background: #fef2f2; border-color: #fecaca; color: #dc2626; }

/* Tabela (espelha a lista de Não Conformidades: item, criticidade, status) */
.cm-table {
  padding: 10px 20px 20px;
}
.cm-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}
.cm-table-row:last-child { border-bottom: none; }
.cm-table-row:hover { background: #fafafa; }
.cm-table-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.cm-table-main strong {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cm-table-main span { font-size: 0.74rem; color: var(--text-secondary); font-weight: 600; }
.cm-badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}
.cm-badge--baixa { background: #f1f5f9; color: #64748b; }
.cm-badge--media { background: #ffedd5; color: #c2410c; }
.cm-badge--alta { background: #fee2e2; color: #dc2626; }
.cm-badge--tratativa { background: #fef3c7; color: #b45309; }
.cm-badge--resolvida { background: #dcfce7; color: #15803d; }

.problems { padding: 120px 0; background: white; }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 32px; margin-top: 60px; }
.problem-card {
  padding: 40px 32px; background: var(--bg-secondary); border-radius: 12px;
  transition: var(--transition); border: 2px solid transparent; text-align: center; position: relative; overflow: hidden;
}
.problem-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: scaleX(0); transition: var(--transition);
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); background: white; }
.problem-icon {
  width: 90px; height: 90px; margin: 0 auto 24px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); color: var(--primary-color); transition: var(--transition);
}
.problem-card:hover .problem-icon { transform: scale(1.1); }
.problem-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.problem-card p { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

/* ================================================================
   ECONOMIA DE PAPEL
================================================================ */
.paper-savings {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}
.paper-savings-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}
.paper-savings-text .section-title,
.paper-savings-text .section-description {
  text-align: left;
  margin-left: 0;
}
.paper-savings-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: #0d1f13;
  box-shadow: var(--shadow-xl);
}
.paper-impact-card {
  padding: 22px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.paper-impact-card strong {
  display: block;
  margin-bottom: 8px;
  color: #bbf7d0;
  font-size: 1rem;
  font-weight: 900;
}
.paper-impact-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}
.paper-practices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.practice-card {
  padding: 26px 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.practice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.36);
  box-shadow: var(--shadow-lg);
}
.practice-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 900;
}
.practice-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.3;
}
.practice-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ================================================================
   TESTE GRÁTIS
================================================================ */
.trial {
  position: relative;
  padding: 130px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
  overflow: hidden;
}
.trial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 45% at 10% 12%, rgba(34,197,94,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 94% 88%, rgba(22,163,74,0.09) 0%, transparent 60%);
}
.trial .container { position: relative; z-index: 1; }
.trial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 64px;
  align-items: center;
}
.trial-copy .section-title,
.trial-copy .section-description {
  text-align: left;
  margin-left: 0;
}
.trial-benefits {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
}
.trial-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.trial-benefits .icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
}
.trial-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.trial-actions .btn-primary {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(22,163,74,0.32);
}
.trial-actions .btn-primary:hover {
  box-shadow: 0 22px 55px rgba(22,163,74,0.4);
}
.trial-login-link {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.trial-login-link:hover { border-color: var(--primary-color); }
.trial-microcopy { color: var(--text-light); font-size: 0.88rem; font-weight: 600; }

.trial-visual { display: flex; justify-content: center; }
.trial-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-2xl);
  padding: 34px 30px 30px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.trial-card:hover { transform: translateY(-6px); }
.trial-card-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22,163,74,0.35);
}
.trial-card-header { margin-bottom: 22px; }
.trial-card-header strong { display: block; font-size: 1.2rem; font-weight: 900; color: var(--text-primary); margin-bottom: 4px; }
.trial-card-header span { color: var(--text-secondary); font-size: 0.9rem; font-weight: 600; }
.trial-card-features {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #f1f5f9;
}
.trial-card-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 700; color: var(--text-primary); }
.trial-card-features svg { flex-shrink: 0; color: var(--primary-color); }
.trial-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  background: var(--bg-secondary);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.98rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.trial-card-cta:hover { background: var(--primary-color); color: #fff; }
.trial-card-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.trial-card-help svg { color: var(--primary-color); flex-shrink: 0; }
.trial-card-help:hover { color: var(--primary-dark); }

/* ================================================================
   FAQ
================================================================ */
.faq { padding: 90px 0; background: var(--bg-primary); }
.faq-title { text-align: center; font-size: clamp(1.9rem,2.4vw,2.5rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 28px; color: var(--text-primary); }
.faq-accordion { max-width: 920px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { border: 1px solid var(--border-soft); background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; background: transparent; border: 0; cursor: pointer; padding: 20px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-weight: 800; font-size: 1.05rem; color: #111; text-align: left; font-family: var(--font-family);
}
.faq-question:focus-visible { outline: 3px solid rgba(22,163,74,0.35); outline-offset: 3px; }
.faq-icon { width: 22px; height: 22px; flex: 0 0 22px; position: relative; display: inline-block; transition: transform .25s ease; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: #111; transform: translate(-50%,-50%); border-radius: 2px; }
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); transition: opacity .2s ease; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-item.is-open .faq-icon::after { opacity: 0; }
.faq-answer { height: 0; overflow: hidden; transition: height .32s cubic-bezier(.2,.9,.2,1); border-top: 1px solid #e5e7eb; }
.faq-answer-inner { padding: 16px 18px 20px; color: var(--text-secondary); font-size: 1.02rem; line-height: 1.7; }
.faq-cta { margin-top: 70px; text-align: center; }
.faq-cta-title { font-size: 1.6rem; font-weight: 900; color: var(--text-primary); margin-bottom: 10px; }
.faq-cta-subtitle { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 22px; }
.faq-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 10px; text-decoration: none; font-weight: 800; font-size: 1rem;
  color: #fff; background: var(--primary-color); transition: transform .18s ease, background-color .18s ease;
}
.faq-cta-btn:hover { transform: translateY(-2px); background: var(--primary-dark); }

/* ================================================================
   CTA
================================================================ */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #14532d 0%, #16a34a 50%, #22c55e 100%);
  text-align: center; color: white; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%); opacity: 0.5;
}
.cta-content { position: relative; z-index: 1; }
.cta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100px; height: 100px; background: rgba(255,255,255,0.2); border-radius: 50%;
  margin-bottom: 32px; backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.3);
  animation: iconPulse 2s ease-in-out infinite;
}
@keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.cta-content h2 { font-size: 2rem; font-weight: 900; margin-bottom: 20px; line-height: 1.3; letter-spacing: -0.02em; }
.cta-text { font-size: 1.2rem; margin-bottom: 48px; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ================================================================
   CONTATO
================================================================ */
.contact { padding: 120px 0; background: var(--bg-secondary); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
}
.contact-card {
  padding: 48px 36px; background: white; border-radius: 12px; text-align: center;
  transition: var(--transition); box-shadow: var(--shadow-lg); border: 2px solid transparent; cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-2xl); border-color: var(--primary-light); }
.contact-icon {
  width: 90px; height: 90px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green); transition: var(--transition);
}
.contact-card:hover .contact-icon { transform: scale(1.1) rotate(5deg); }
.contact-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.contact-link { font-size: 1.1rem; color: var(--primary-color); text-decoration: none; font-weight: 700; transition: var(--transition); display: block; margin-bottom: 12px; }
.contact-link:hover { color: var(--primary-dark); }
.contact-hint { font-size: 0.95rem; color: var(--text-light); }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #0d1f13; color: white; padding: 80px 0 30px; }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; margin-bottom: 50px; }
.footer-logo-image { height: 120px; width: auto; object-fit: contain; display: block; margin-bottom: 20px; }
.footer-text { color: var(--text-light); font-size: 1rem; line-height: 1.7; max-width: 450px; margin-bottom: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.footer-column h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 24px; color: white; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 14px; }
.footer-column ul li a { color: var(--text-light); text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.footer-column ul li a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-bottom p { color: var(--text-light); font-size: 0.9rem; }

/* ================================================================
   SCROLL TO TOP
================================================================ */
.whatsapp-float {
  position: fixed;
  right: 44px;
  bottom: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.whatsapp-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.36);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.whatsapp-icon::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.16);
  z-index: -1;
}
.whatsapp-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}
.whatsapp-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 14px 0 18px;
  border-radius: 10px;
  background: #fff;
  color: #1f2937;
  font-size: 0.96rem;
  font-weight: 500;
  box-shadow: 0 16px 42px rgba(15,23,42,0.16);
  white-space: nowrap;
}
.whatsapp-tooltip-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: 1.3rem;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.15s;
}
.whatsapp-tooltip-close:hover { color: #475569; }
.whatsapp-float:hover .whatsapp-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.44);
}
.scroll-to-top {
  position: fixed; bottom: 108px; right: 54px; width: 50px; height: 50px;
  background: var(--primary-color); color: white; border: none; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; opacity: 0; visibility: hidden;
  transition: var(--transition); box-shadow: var(--shadow-green); z-index: 998;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: var(--primary-dark); transform: translateY(-5px); }

/* ================================================================
   RESPONSIVO
================================================================ */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .nav-menu { gap: 0.7rem; }
  .nav-link { font-size: 0.8rem; }
  .btn-login { padding: 10px 14px; font-size: 0.86rem; }
  .btn-trial { padding: 8px 14px; font-size: 0.8rem; }
  .hero-content { padding: 42px 24px 48px; }
  .hero-title { font-size: 3rem; }
  .dashboard-kpis { grid-template-columns: repeat(3, 1fr); }
  .dashboard-charts { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; padding: 22px 32px; }
  .stat-number { font-size: 1.6rem; }
  .about-content { grid-template-columns: 1fr; gap: 48px; }
  .about-features { grid-template-columns: 1fr; }
  .paper-savings-content { grid-template-columns: 1fr; }
  .paper-practices { grid-template-columns: repeat(2, 1fr); }
  .pitch-pain-layout { grid-template-columns: 1fr; gap: 42px; }
  .compliance-layout { grid-template-columns: 1fr; gap: 42px; }
  .evidence-cards { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-step::after { display: none; }
  .differentials-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .trial-layout { grid-template-columns: 1fr; gap: 44px; }
  .footer-content { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; z-index: 1001; }
  .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px,8px); }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }
  .nav-menu {
    position: fixed; top: 80px; left: 0; right: 0; height: calc(100svh - 80px);
    background: white; flex-direction: column; padding: 40px 20px;
    box-shadow: var(--shadow-xl); transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link, .btn-login { font-size: 1.05rem; }
  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 1px solid var(--border-soft);
  }
  .hero { min-height: calc(100svh - 80px); align-items: center; }
  .hero-content { padding: 34px 18px 38px; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-title { font-size: 2.25rem; margin-bottom: 16px; }
  .hero-description { font-size: 0.98rem; line-height: 1.55; margin-bottom: 16px; }
  .hero-buttons { justify-content: center; }
  .hero-buttons { gap: 10px; margin-bottom: 20px; }
  .hero-flow {
    width: min(100%, 520px);
    padding: 14px 0;
  }
  .hero-flow div { padding: 0 10px; }
  .hero-flow small { display: none; }
  .hero-product-preview { margin-bottom: 32px; }
  .dashboard-topbar { min-height: 42px; }
  .dashboard-topbar strong { font-size: 0.88rem; }
  .dashboard-alert { margin: 10px; font-size: 0.72rem; }
  .dashboard-kpis { grid-template-columns: repeat(2, 1fr); padding: 4px 12px 12px; }
  .dashboard-kpi { padding: 12px; }
  .dashboard-charts { padding: 2px 10px 12px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 20px 24px; justify-content: center; }
  .stat-divider { display: none; }
  .scroll-indicator { display: none; }
  .section-title { font-size: 2rem; }
  .about, .problems, .paper-savings, .differentials, .cta-section, .contact, .pitch-pain, .workflow, .evidence-hub, .compliance, .trial { padding: 80px 0; }
  .pitch-pain-copy .section-title,
  .pitch-pain-copy .section-description {
    text-align: center;
    margin-left: auto;
  }
  .compliance-copy .section-title,
  .compliance-copy .section-description {
    text-align: center;
    margin-left: auto;
  }
  .trial-copy .section-title,
  .trial-copy .section-description {
    text-align: center;
    margin-left: auto;
  }
  .trial-benefits { max-width: 420px; margin-left: auto; margin-right: auto; }
  .trial-actions { justify-content: center; }
  .trial-microcopy { text-align: center; }
  .problems-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .paper-practices { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .differentials-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .whatsapp-float { right: 18px; bottom: 18px; }
  .whatsapp-tooltip { display: none; }
  .whatsapp-icon { width: 60px; height: 60px; }
  .whatsapp-icon svg { width: 36px; height: 36px; }
  .scroll-to-top { right: 23px; bottom: 92px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.78rem; }
  .hero-content { padding: 26px 16px 30px; }
  .hero-description { margin-bottom: 14px; }
  .hero-buttons { margin-bottom: 16px; }
  .hero-flow-arrow { font-size: 1.1rem; }
  .hero-flow strong { font-size: 0.92rem; }
  .dashboard-topbar span { display: none; }
  .dashboard-kpis { grid-template-columns: 1fr; }
  .dashboard-charts { grid-template-columns: 1fr; }
  .bar-chart { height: 86px; gap: 4px; }
  .hero-stats { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .paper-savings-content { gap: 32px; }
  .paper-savings-panel { padding: 14px; }
  .pain-card { padding: 24px 22px; }
  .pain-number { position: static; margin-bottom: 16px; }
  .evidence-cards { grid-template-columns: repeat(2, 1fr); }
  .cm-stat-row { flex-direction: column; gap: 8px; }
  .cm-table-row { flex-wrap: wrap; }
  .cm-table-main { flex-basis: 100%; }
  .section-title { font-size: 1.7rem; }
  .cta-content h2 { font-size: 1.7rem; }
}

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

.noscript-warning {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 2000;
  padding: 14px 18px; background: #14532d; color: #fff; border-radius: 10px;
  text-align: center; font-weight: 700; box-shadow: var(--shadow-xl);
}

/* ================================================================
   CADASTRO — TESTE GRÁTIS
================================================================ */
.cadastro-body {
  position: relative;
  margin: 0;
  min-height: 100vh;
}
.cadastro-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(150deg, #0b3920 0%, #125b2d 48%, #072316 100%);
  overflow: hidden;
}
.cadastro-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 140vw);
  height: min(900px, 140vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(74, 222, 128, 0.2), transparent 70%);
  pointer-events: none;
}
.cadastro-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 85%);
}

.cadastro-back {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cadastro-back:hover { background: rgba(255, 255, 255, 0.2); transform: translateX(-2px); }

.cadastro-center {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 52px 20px 6px;
}
.cadastro-main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 1400px) {
  .cadastro-main { padding-right: min(20vw, 420px); justify-content: flex-end; gap: 96px; }
  .cadastro-center { padding-bottom: 100px; }
}
@media (min-width: 1800px) {
  .cadastro-main { padding-right: min(24vw, 520px); gap: 130px; }
}
.cadastro-visual {
  display: none;
}
.cadastro-text-col {
  display: none;
}
@media (min-width: 1400px) {
  .cadastro-card { order: 1; flex-shrink: 0; }
  .cadastro-text-col { order: 2; }
  .cadastro-visual { order: 3; }
  .cadastro-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    gap: 16px;
    width: min(22.5vw, 360px);
    text-align: center;
  }
  .cadastro-visual-title {
    width: 100%;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .cadastro-visual-text {
    width: 100%;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .cadastro-visual {
    display: block;
    width: 0;
    flex-shrink: 0;
    pointer-events: none;
  }
  .cadastro-visual img {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: auto;
    height: 100vh;
    max-width: min(39vw, 832px);
    object-fit: contain;
    object-position: right bottom;
  }
  .cadastro-features {
    list-style: none;
    display: grid;
    gap: 12px;
    width: 100%;
  }
  .cadastro-features li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
  }
  .cadastro-features li span {
    margin-top: 2px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #4ade80;
    font-weight: 900;
    font-size: 0.72rem;
  }
}
@media (min-width: 1800px) {
  .cadastro-text-col {
    width: min(27vw, 440px);
    gap: 20px;
  }
  .cadastro-visual-title {
    font-size: clamp(2rem, 2.6vw, 2.4rem);
  }
  .cadastro-visual-text {
    font-size: 1.05rem;
  }
  .cadastro-features {
    gap: 16px;
  }
  .cadastro-features li {
    font-size: 1rem;
  }
  .cadastro-visual img {
    max-width: min(46vw, 1060px);
  }
}

/* ---- Card do formulário ---- */
.cadastro-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-2xl);
  padding: 26px 36px 22px;
}
.cadastro-card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 90%;
  margin: 20px auto 0;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.4);
  white-space: nowrap;
  animation:
    cadastroBadgeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    cadastroBadgePulse 2.2s ease-in-out 0.6s infinite;
}
.cadastro-card-badge svg {
  flex-shrink: 0;
  color: #fff;
}
@media (min-width: 1400px) {
  .cadastro-card-badge--center { display: none; }
}
@keyframes cadastroBadgeIn {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes cadastroBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.4), 0 0 0 10px rgba(74, 222, 128, 0.25);
  }
}
.cadastro-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}
.cadastro-logo {
  height: 66px;
  width: auto;
  object-fit: contain;
}
.cadastro-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-align: center;
}
.cadastro-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
.cadastro-step {
  display: none;
}
.cadastro-step.is-active {
  display: block;
  animation: cadastroStepIn 0.3s ease both;
}
@keyframes cadastroStepIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.cadastro-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.cadastro-steps-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.cadastro-steps-item.is-active,
.cadastro-steps-item.is-complete {
  opacity: 1;
}
.cadastro-steps-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-soft);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}
.cadastro-steps-item.is-active .cadastro-steps-circle,
.cadastro-steps-item.is-complete .cadastro-steps-circle {
  background: var(--primary-color);
  color: #fff;
}
.cadastro-steps-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.cadastro-steps-line {
  width: 32px;
  height: 2px;
  background: var(--border-soft);
  flex-shrink: 0;
}
.cadastro-step-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.cadastro-step-actions .cadastro-submit {
  flex: 1;
}
.cadastro-step-back {
  flex-shrink: 0;
  padding: 12px 20px;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  background: #fff;
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cadastro-step-back:hover {
  border-color: var(--primary-color);
  color: var(--primary-dark);
}
.cadastro-confirm-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.cadastro-confirm-text strong {
  color: var(--text-primary);
}
.cadastro-codigo-input {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5em;
  padding-left: 0.5em !important;
}
.cadastro-resend-hint {
  margin-top: 14px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.cadastro-resend-link {
  border: none;
  background: none;
  padding: 0;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}
.cadastro-resend-link:hover {
  color: var(--primary-color);
}
.cadastro-resend-link:disabled {
  color: var(--text-light);
  cursor: default;
  text-decoration: none;
}
.cadastro-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 6px;
}
.cadastro-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.cadastro-field input {
  width: 100%;
  padding: 7px 14px;
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--text-primary);
  background: #f8fafc;
  border: 1.5px solid var(--border-soft);
  border-radius: 9px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cadastro-field input::placeholder {
  color: var(--text-light);
}
.cadastro-field input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.cadastro-field input.has-error {
  border-color: #dc2626;
  background: #fef2f2;
}
.cadastro-error {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #dc2626;
}
.cadastro-password-wrap {
  position: relative;
}
.cadastro-password-wrap input { padding-right: 40px; }
.cadastro-toggle-senha {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: none;
  background: none;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 6px;
}
.cadastro-toggle-senha:hover { color: var(--primary-color); }
.cadastro-toggle-senha svg { width: 17px; height: 17px; }

.cadastro-password-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
}
.cadastro-password-rules {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 14px;
  margin: 0 0 8px;
}
.cadastro-password-rules li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.2s ease;
}
.cadastro-password-rules li::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  content: "";
  font-size: 0.6rem;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cadastro-password-rules li.is-valid {
  color: var(--primary-dark);
}
.cadastro-password-rules li.is-valid::before {
  content: "✓";
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  font-weight: 900;
}

.cadastro-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}
.cadastro-terms input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary-color);
  width: 15px;
  height: 15px;
}
.cadastro-terms a {
  color: var(--primary-dark);
  font-weight: 700;
}

.cadastro-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cadastro-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(22, 163, 74, 0.34);
}
.cadastro-submit:disabled {
  opacity: 0.75;
  cursor: default;
}
.cadastro-submit-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: cadastroSpin 0.8s linear infinite;
}
@keyframes cadastroSpin {
  to { transform: rotate(360deg); }
}

.cadastro-login-hint {
  margin-top: 10px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.cadastro-login-hint a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.cadastro-login-hint a:hover { border-color: var(--primary-color); }

.cadastro-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cadastro-help svg { color: var(--primary-color); flex-shrink: 0; }
.cadastro-help:hover { color: var(--primary-dark); }

/* ---- Toast ---- */
.cadastro-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 2000;
  max-width: 90vw;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cadastro-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cadastro-toast--success { background: var(--primary-dark); }
.cadastro-toast--error { background: #dc2626; }

@media (max-width: 900px) {
  .cadastro-center { padding: 88px 16px 48px; }
  .cadastro-card { padding: 40px 26px 30px; }
}
@media (max-width: 480px) {
  .cadastro-back { top: 16px; left: 16px; padding: 8px 14px; font-size: 0.8rem; }
  .cadastro-center { padding: 76px 12px 40px; }
  .cadastro-card { padding: 34px 20px 26px; border-radius: 20px; }
  .cadastro-row { grid-template-columns: 1fr; gap: 10px; }
  .cadastro-title { font-size: 1.35rem; }
}

/* ================================================================
   Páginas legais (Termos de Uso / Política de Privacidade)
================================================================ */
.legal-body {
  background: var(--bg-secondary);
  min-height: 100vh;
}
.legal-body .cadastro-back {
  background: #fff;
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  box-shadow: var(--shadow-2xl);
}
.legal-body .cadastro-back:hover {
  background: var(--bg-secondary);
  color: var(--primary-dark);
  border-color: var(--primary-color);
}
.legal-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.legal-header {
  text-align: center;
  margin-bottom: 32px;
}
.legal-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}
.legal-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
}
.legal-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-2xl);
  padding: 48px;
}
.legal-disclaimer {
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #92400e;
}
.legal-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 32px 0 12px;
}
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.legal-card ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.legal-card li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.legal-card strong { color: var(--text-primary); }
.legal-card a { color: var(--primary-dark); font-weight: 700; }
.legal-footer {
  text-align: center;
  padding: 28px 24px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.legal-footer a { color: var(--primary-dark); font-weight: 700; text-decoration: none; }
@media (max-width: 600px) {
  .legal-wrapper { padding: 88px 16px 60px; }
  .legal-card { padding: 32px 22px; }
  .legal-title { font-size: 1.5rem; }
}
