/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.3px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

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

nav a {
  color: rgba(255,255,255,.80);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}

nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }

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

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .18s;
  border: none;
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,200,.35);
}

.btn-primary:hover {
  background: var(--blue-400);
  box-shadow: 0 4px 14px rgba(37,99,200,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(140deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--blue-700) 100%);
  color: var(--white);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,224,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,224,.2);
  border: 1px solid rgba(59,130,224,.4);
  color: #93c5fd;
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: .3px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero h1 span { color: #93c5fd; }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.hero-trust {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}

.trust-item svg { color: #4ade80; }

/* ── SEÇÕES ── */
section { padding: 80px 24px; }

.container { max-width: 1180px; margin: 0 auto; }

.section-label {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-label-dark {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--silver-700);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── COMO FUNCIONA ── */
.steps {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.step { text-align: center; }

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--blue-50);
  border: 2px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.step-num {
  width: 22px;
  height: 22px;
  background: var(--blue-500);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step h3 { font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.step p  { font-size: .9rem; color: var(--silver-700); line-height: 1.6; }

/* ── FEATURES ── */
.features-section { background: var(--silver-50); }

.features-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

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

.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.feature-card p  { font-size: .88rem; color: var(--silver-700); line-height: 1.65; }

/* ── PLANOS ── */
.pricing-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  border: 1.5px solid var(--silver-200);
  border-radius: 16px;
  padding: 36px 32px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue-500);
  box-shadow: 0 8px 32px rgba(37,99,200,.18);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
}

.plan-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--silver-700);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup { font-size: 1rem; font-weight: 600; vertical-align: super; }
.plan-period { font-size: .82rem; color: var(--silver-700); margin-bottom: 28px; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--silver-900);
}

.plan-features li::before {
  content: '✓';
  color: var(--blue-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-plan {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .18s;
  display: block;
  text-align: center;
}

.btn-plan-primary { background: var(--blue-500); color: var(--white); }
.btn-plan-primary:hover { background: var(--blue-400); }
.btn-plan-outline { background: transparent; color: var(--blue-600); border: 1.5px solid var(--blue-200); }
.btn-plan-outline:hover { background: var(--blue-50); }

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: .82rem;
  color: var(--silver-700);
}

/* ── DEPOIMENTOS ── */
.testimonials-section { background: var(--blue-900); color: var(--white); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,.65); }

.testimonials-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 28px;
}

.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-text {
  font-size: .92rem;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name { font-size: .88rem; font-weight: 600; color: var(--white); }
.author-role { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── CTA FINAL ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-900) 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 24px;
}

.cta-section .section-title { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 40px; font-size: 1rem; line-height: 1.7; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 12px;
  transition: all .18s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ── FOOTER ── */
footer {
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 24px 32px;
  color: rgba(255,255,255,.55);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .3px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
}

.footer-bottom a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
