/* ===== ProntoTEC+ — Estilos Globais ===== */
:root {
  --azul:    #1A3A5C;
  --azul-md: #2563A8;
  --laranja: #F59E0B;
  --laranja-vivo: #EA580C;
  --branco:  #FFFFFF;
  --cinza-bg:#F8FAFC;
  --cinza-bd:#E2E8F0;
  --texto:   #1E293B;
  --muted:   #64748B;
  --radius:  12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
}

/* ── Navbar ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--azul);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-brand span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: -0.3px;
}

.nav-brand span em {
  color: var(--laranja);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--laranja); }

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--laranja);
  color: var(--azul);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover { border-color: var(--branco); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--azul) 0%, #0F2540 60%, #1A3A5C 100%);
  color: var(--branco);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(245,158,11,0.12) 0%, transparent 60%);
}

.hero-content { position: relative; max-width: 680px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.18);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--laranja);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--laranja); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 24px rgba(245,158,11,0.4));
}

/* ── Seções ── */
section { padding: 72px 24px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--laranja-vivo);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Cards de funcionalidade ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--cinza-bg);
  border: 1px solid var(--cinza-bd);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(26,58,92,0.1);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Como funciona ── */
.steps { background: var(--cinza-bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--branco);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 8px;
}

.step p { font-size: 0.88rem; color: var(--muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-vivo) 100%);
  text-align: center;
  padding: 72px 24px;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(26,58,92,0.75);
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: var(--azul);
  color: var(--branco);
}

/* ── Footer ── */
footer {
  background: var(--azul);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
  text-align: center;
}

.footer-inner { max-width: 800px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand img { width: 32px; height: 32px; object-fit: contain; }

.footer-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--branco);
}

.footer-brand span em { color: var(--laranja); font-style: normal; }

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--laranja); }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── Páginas internas (Termos / Privacidade) ── */
.page-hero {
  background: linear-gradient(135deg, var(--azul) 0%, #0F2540 100%);
  color: var(--branco);
  padding: 60px 24px 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-hero p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--azul);
  margin: 36px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--cinza-bd);
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  margin: 20px 0 6px;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 12px;
  line-height: 1.75;
}

.legal-body ul {
  margin: 8px 0 16px 20px;
}

.legal-body ul li {
  font-size: 0.95rem;
  color: var(--texto);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-meta {
  display: inline-block;
  background: var(--cinza-bg);
  border: 1px solid var(--cinza-bd);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── Responsivo ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 60px 20px 80px; }
  section { padding: 52px 20px; }
}
