/* GDI Sistemas – style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #3B5BFF;
  --blue-mid:  #2d4de0;
  --blue-dark: #1a2f99;
  --green:     #10B981;
  --purple:    #7C3AED;
  --dark:      #0D1117;
  --dark2:     #141B2D;
  --dark3:     #1C2541;
  --text:      #1A2035;
  --muted:     #6B7A99;
  --border:    #E4E9F4;
  --bg:        #F5F7FF;
  --white:     #ffffff;
  --radius:    16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59,91,255,0.08);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(59,91,255,0.10); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.3rem; letter-spacing: -.01em;
  color: var(--blue); text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: .925rem; font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-logo-img { height: 36px !important; width: 36px !important; max-height: 36px; max-width: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle-icon {
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  display: block;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
}
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after  { top:  6px; }

.nav-mobile {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 14px 30px rgba(15,23,42,0.18);
  z-index: 120;
}
.nav-mobile.open {
  display: block;
}
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 10px 5%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile a {
  display: block;
  padding: 8px 0;
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}

.btn-ghost {
  background: none; border: none; cursor: pointer;
  color: var(--text); font-family: inherit; font-size: .925rem;
  font-weight: 600; padding: 8px 16px; border-radius: 8px;
  transition: color .2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { color: var(--blue); }

.btn-primary {
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  font-family: inherit; font-size: .925rem; font-weight: 700;
  padding: 10px 22px; border-radius: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(59,91,255,0.35);
}
.btn-primary:hover {
  background: var(--blue-mid); transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(59,91,255,0.45);
}

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 5% 60px;
  background: linear-gradient(140deg, #f0f3ff 0%, #fff 55%, #edf9f4 100%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,91,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; bottom: -150px; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,91,255,0.08); color: var(--blue);
  font-size: .82rem; font-weight: 600; padding: 6px 14px;
  border-radius: 50px; margin-bottom: 24px;
  border: 1px solid rgba(59,91,255,0.15);
}
.hero-badge::before { content: '●'; font-size: .6rem; }

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.15; color: var(--text); margin-bottom: 20px;
  letter-spacing: -.02em;
}
.accent-blue { color: var(--blue); }
.accent-green { color: var(--green); }

.hero-desc {
  color: var(--muted); font-size: 1.05rem; line-height: 1.7;
  max-width: 480px; margin-bottom: 28px;
}

.hero-checks { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-bottom: 36px; list-style: none; }
.hero-checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--text);
}
.hero-checks li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: #D1FAE5; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; flex-shrink: 0;
}

.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: 12px; }

.btn-outline {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--border); background: none;
  color: var(--text); font-family: inherit; font-size: 1rem;
  font-weight: 600; padding: 12px 24px; border-radius: 12px;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.play-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
}
.play-icon svg { margin-left: 2px; }

/* Dashboard mock */
.hero-visual { position: relative; }
.dash-card {
  background: #fff; border-radius: 18px;
  box-shadow: 0 24px 80px rgba(59,91,255,0.15), 0 4px 16px rgba(0,0,0,0.06);
  padding: 20px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.dash-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FFBD2E; }
.dash-dots span:nth-child(3) { background: #28C840; }

.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.kpi { padding: 14px; border-radius: 12px; color: #fff; }
.kpi-1 { background: linear-gradient(135deg,#3B5BFF,#6B8AFF); }
.kpi-2 { background: linear-gradient(135deg,#10B981,#34D399); }
.kpi-3 { background: linear-gradient(135deg,#7C3AED,#A855F7); }
.kpi-label { font-size: .72rem; opacity: .85; margin-bottom: 4px; }
.kpi-value { font-size: 1.35rem; font-weight: 800; }

.dash-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.dash-badge {
  background: #fff; border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
}
.dash-badge-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: #D1FAE5; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.dash-badge-text .t1 { font-size: .7rem; color: var(--muted); }
.dash-badge-text .t2 { font-size: .9rem; font-weight: 700; color: var(--text); }

.growth-badge {
  background: #fff; border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 8px 14px; text-align: right; margin-bottom: 6px;
}
.growth-badge .pct { color: var(--green); font-size: .95rem; font-weight: 800; }
.growth-badge .lbl { font-size: .7rem; color: var(--muted); }

.bar-chart { display: flex; align-items: flex-end; gap: 5px; height: 70px; }
.bar {
  width: 18px; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #6B8AFF, #3B5BFF);
  animation: grow 1s ease both;
}
@keyframes grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); }
}
.bar.h-38 { height: 38%; animation-delay: .10s; }
.bar.h-55a { height: 55%; animation-delay: .15s; }
.bar.h-45 { height: 45%; animation-delay: .20s; }
.bar.h-70 { height: 70%; animation-delay: .25s; }
.bar.h-60 { height: 60%; animation-delay: .30s; }
.bar.h-80 { height: 80%; animation-delay: .35s; }
.bar.h-65 { height: 65%; animation-delay: .40s; }
.bar.h-90 { height: 90%; animation-delay: .45s; }
.bar.h-75 { height: 75%; animation-delay: .50s; }
.bar.h-55b { height: 55%; animation-delay: .55s; }
.bar.h-40 { height: 40%; animation-delay: .60s; }

/* ── SECTION HELPERS ── */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(59,91,255,0.08); color: var(--blue);
  font-size: .8rem; font-weight: 700; padding: 5px 14px;
  border-radius: 50px; border: 1px solid rgba(59,91,255,0.15);
  margin-bottom: 14px; letter-spacing: .04em;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  line-height: 1.2; color: var(--text); margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-title .hl { color: var(--blue); }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 540px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.color-white { color: #fff; }
.color-muted-dark { color: #8899BB; }

/* ── FUNCIONALIDADES ── */
#funcionalidades { background: var(--bg); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; margin-top: 50px;
}
.feat-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 22px; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s; cursor: default;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59,91,255,0.12);
  border-color: rgba(59,91,255,0.25);
}
.feat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.fi-blue   { background: #EEF2FF; }
.fi-green  { background: #F0FDF4; }
.fi-mint   { background: #ECFDF5; }
.fi-orange { background: #FFF7ED; }
.fi-purple { background: #F5F3FF; }
.fi-pink   { background: #FFF1F2; }
.fi-sky    { background: #EFF6FF; }
.fi-teal   { background: #F0FFF4; }
.fi-indigo { background: #EEF2FF; }
.fi-rose   { background: #FFF0F0; }

.feat-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.feat-card p  { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ── BENEFÍCIOS ── */
#beneficios {
  background: var(--dark2); position: relative; overflow: hidden;
}
#beneficios::before {
  content: ''; position: absolute; top: -300px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,91,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
#beneficios .section-tag {
  background: rgba(59,91,255,0.2); color: #7BA7FF;
  border-color: rgba(59,91,255,0.3);
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 50px;
}
.ben-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 30px 26px;
  transition: background .2s, transform .2s;
}
.ben-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.ben-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.ben-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(59,91,255,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.ben-stat { text-align: right; }
.ben-stat .num { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; }
.ben-stat .unit { font-size: .72rem; color: #7BA7FF; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.ben-card h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.ben-card p  { color: #8899BB; font-size: .88rem; line-height: 1.6; }

/* ── DEPOIMENTOS ── */
#depoimentos { background: var(--bg); }
.test-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 50px; }
.test-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 26px; border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.test-card:hover { box-shadow: 0 12px 40px rgba(59,91,255,0.10); }
.quote-icon {
  font-family: Georgia, serif; font-size: 4rem;
  color: rgba(59,91,255,0.12); line-height: .6;
  margin-bottom: 16px; display: block;
}
.test-text { font-size: .95rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; font-style: italic; }
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.ta-blue-green { background: linear-gradient(135deg, #3B5BFF, #10B981); }
.ta-purple-pink { background: linear-gradient(135deg, #7C3AED, #EC4899); }
.ta-teal-blue   { background: linear-gradient(135deg, #10B981, #3B82F6); }
.ta-amber-red   { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.test-info .name { font-weight: 700; font-size: .95rem; }
.test-info .role { font-size: .82rem; color: var(--muted); }

/* ── PLANOS ── */
#planos { background: #fff; }
.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 50px; align-items: start;
}
.plan-card {
  border: 2px solid var(--border); border-radius: 20px;
  padding: 32px 28px; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.popular {
  background: var(--blue); border-color: var(--blue); color: #fff;
  box-shadow: 0 24px 64px rgba(59,91,255,0.35);
  transform: translateY(-8px);
}
.plan-card.popular:hover { transform: translateY(-12px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #F59E0B; color: #fff;
  font-size: .8rem; font-weight: 800; padding: 5px 16px;
  border-radius: 50px; white-space: nowrap;
}
.plan-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -.01em; }
.plan-desc { font-size: .85rem; opacity: .7; margin-bottom: 24px; }
.plan-price { margin-bottom: 28px; }
.plan-price .currency { font-size: 1rem; font-weight: 700; vertical-align: super; }
.plan-price .amount  { font-size: 3rem; font-weight: 800; line-height: 1; }
.plan-price .period  { font-size: .9rem; opacity: .7; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.plan-card:not(.popular) .plan-features li { border-bottom-color: var(--border); }
.plan-features li::before { content: '✓'; font-size: .8rem; font-weight: 800; color: var(--green); flex-shrink: 0; }
.plan-card.popular .plan-features li::before { color: #86efac; }
.btn-plan { width: 100%; padding: 14px; border-radius: 12px; font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .2s; }
.btn-plan-dark  { background: var(--dark); color: #fff; border: none; }
.btn-plan-dark:hover  { background: var(--dark3); }
.btn-plan-white { background: #fff; color: var(--blue); border: none; }
.btn-plan-white:hover { background: #EEF2FF; }
.plans-footer { text-align: center; margin-top: 32px; font-size: .9rem; color: var(--muted); }
.plans-footer a { color: var(--blue); font-weight: 600; text-decoration: none; }

/* ── CONTATO ── */
#contato { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 50px; align-items: start; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.contact-info p  { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.ci-blue   { background: #EEF2FF; }
.ci-green  { background: #ECFDF5; }
.ci-sky    { background: #EFF6FF; }
.ci-purple { background: #F5F3FF; }
.contact-item-text .label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.contact-item-text .value { font-size: .95rem; font-weight: 600; color: var(--text); }

.contact-form {
  background: #fff; border-radius: 20px;
  padding: 36px; border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(59,91,255,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-family: inherit; font-size: .95rem;
  color: var(--text); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,91,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; padding: 15px;
  background: var(--blue); color: #fff; border: none;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(59,91,255,0.35);
}
.btn-submit:hover {
  background: var(--blue-mid); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(59,91,255,0.45);
}
.form-success {
  background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0;
  border-radius: 10px; padding: 14px 16px;
  font-size: .95rem; font-weight: 600; margin-bottom: 16px;
}
.form-success-hidden { display: none; }
.input-error { border-color: #EF4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important; }
.field-error { color: #EF4444; font-size: .78rem; margin-top: 4px; font-weight: 500; }

/* ── DOWNLOADS ── */
.download-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 20px 16px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 16px;
}
.download-card + .download-card {
  margin-top: 0;
}
.download-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.download-card-title {
  font-size: 1rem;
  font-weight: 700;
}
.download-card-subtitle {
  font-size: .8rem;
  color: var(--muted);
}
.download-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
}
.download-table-header {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.9fr 0.6fr;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}
.download-row {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.9fr 0.6fr;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  align-items: center;
}
.download-cell-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.download-cell-size,
.download-cell-date {
  color: var(--muted);
}
.download-row:last-child {
  border-bottom: none;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .1s, box-shadow .15s;
}
.download-btn:hover {
  background: #EEF2FF;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(59,91,255,0.2);
  transform: translateY(-1px);
}
.download-btn span:first-child {
  font-size: .9rem;
}

.downloads-title {
  margin-bottom: 12px;
}
.downloads-sub {
  color: var(--muted);
  margin-bottom: 24px;
}
.downloads-status {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 12px;
}

/* Layout específico da página de downloads:
   deixa os cards ocuparem quase toda a largura,
   colocando o bloco "Precisa de ajuda?" abaixo. */
#downloads-list .contact-grid {
  grid-template-columns: 1fr;
}
#downloads-list .contact-info {
  margin-top: 32px;
}

/* Ajustes de espaçamento só para a página de downloads */
#downloads-hero {
  padding-top: 90px;
  padding-bottom: 10px;
}
#downloads-list {
  padding-top: 30px;
  padding-bottom: 60px;
}

/* ── FOOTER ── */
footer { background: var(--dark); color: #8899BB; padding: 64px 5% 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr repeat(3,1fr);
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { font-weight: 800; font-size: 1.4rem; color: #fff; letter-spacing: -.01em; }
.footer-logo span { color: var(--blue); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: #8899BB; text-decoration: none; font-size: .9rem;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--blue); color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #8899BB; text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: .83rem; flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-bottom a { color: #8899BB; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Fallback: se JS não carregar, mostra tudo */
@media (prefers-reduced-motion: no-preference) {
  /* mantém a animação quando JS está ativo */
}
/* garante visibilidade sem JS */
html:not(.js-ready) .reveal {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .ben-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .download-card {
    max-width: 100%;
    width: 100%;
    margin: 0 0 12px 0;
  }
  .download-table-header {
    display: none;
  }
  .download-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 2px;
    column-gap: 6px;
    padding: 10px 0;
  }
  .download-row .download-cell-name {
    flex: 1 1 100%;
    font-weight: 600;
  }
  .download-row .download-cell-size,
  .download-row .download-cell-date {
    font-size: .78rem;
  }
  .download-row .download-cell-size {
    order: 2;
  }
  .download-row .download-cell-date {
    order: 3;
  }
  .download-row > div:last-child {
    margin-left: auto;
    order: 4;
  }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .ben-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
