:root {
  --bg: #040406;
  --bg-card: #101114;
  --bg-dark: #090b10;
  --card: #121418;
  --text: #f3f4f6;
  --muted: #a1a8b3;
  --primary: #e01d24;
  --primary-soft: #f25f66;
  --secondary: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(224, 29, 36, 0.12), transparent 30%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 96px; /* Espaço para a barra fixa superior */
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 1.2rem;
  align-items: center;
  min-height: calc(80vh - 96px); /* Ajusta altura para considerar a barra fixa */
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(224, 29, 36, 0.18), transparent 18%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 18%);
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

/* Barra fixa com logo e navegação principal */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: white;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(224, 29, 36, 0.18);
}

.brand span {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(224, 29, 36, 0.16);
  color: white;
  transform: translateY(-1px);
}

/* Estilo visual do herói com imagem de consórcio */
.hero-image {
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(115, 255, 161, 0.35);
  background: rgba(115, 255, 161, 0.12);
  color: #b8ffcf;
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.02;
  color: white;
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.hero-text,
p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 20px 60px rgba(224, 29, 36, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--secondary);
  border: 1px solid rgba(224, 29, 36, 0.18);
}

.hero-image {
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.2), transparent 55%, rgba(224, 29, 36, 0.12));
}
.section {
  padding: 5rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  top: 0;
}

.section-light {
  background: #090b10;
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.testimonial-card,
.feature-box,
.form-card,
.contact-card,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.card::before,
.testimonial-card::before,
.feature-box::before,
.form-card::before,
.contact-card::before,
.cta-box::before {
  content: "";
  display: block;
  height: 5px;
  width: 4.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224, 29, 36, 0.95), rgba(242, 95, 102, 0.9));
  margin-bottom: 1rem;
}

.section-dark .feature-box {
  background: rgba(20, 20, 24, 0.96);
}

.card {
  padding: 2.2rem;
}

.card h2,
.feature-box h3,
.testimonial-card strong {
  margin-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.checklist li {
  position: relative;
  padding-left: 2.4rem;
  color: var(--secondary);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--primary);
  font-weight: 900;
}

.highlight {
  background: linear-gradient(120deg, rgba(224, 29, 36, 0.3), rgba(242, 95, 102, 0.3));
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  color: #f25f66;
}

.section-comparison {
  background: #090b10;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comparison-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.comparison-item.highlight-alt {
  opacity: 0.75;
}

.comparison-item .label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.example-savings {
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.5rem;
  background: rgba(18, 83, 48, 0.95);
  border: 1px solid rgba(110, 247, 161, 0.3);
  color: #d7ffe1;
  text-align: center;
  box-shadow: 0 16px 50px rgba(15, 24, 44, 0.25);
}

.example-savings p {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

.example-savings strong {
  color: #6ef7a1;
  font-size: 1.9rem;
  display: block;
}

.check-list,
.x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -0.1rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
}

.x-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.x-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: -0.1rem;
  color: rgba(224, 29, 36, 0.6);
  font-weight: 800;
  font-size: 1.2rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.2rem;
  counter-reset: step-counter;
}

.steps-list li {
  position: relative;
  padding-left: 3rem;
  color: var(--muted);
  line-height: 1.6;
}

.steps-list li strong {
  color: white;
}

.steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, rgba(224, 29, 36, 0.9), rgba(242, 95, 102, 0.8));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(224, 29, 36, 0.2);
}

.feature-box {
  padding: 2.4rem;
}

.feature-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.stats {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.stats div {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(224, 29, 36, 0.14);
}

.stats strong {
  display: block;
  font-size: 1.6rem;
  color: white;
}

.testimonials {
  margin-top: 2.5rem;
}

.testimonial-card {
  padding: 2rem;
  min-height: 220px;
}

.testimonial-card p {
  color: var(--muted);
}

.section-cta {
  background: linear-gradient(135deg, #1f0406 0%, #21040f 40%, #c31823 100%);
  color: white;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.form-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.form-card,
.contact-card {
  padding: 2.2rem;
}

.form-card h2,
.contact-card h3 {
  margin-bottom: 1rem;
}

.form-card label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f0f0f;
  color: var(--secondary);
  outline: none;
}

.form-card input::placeholder,
.form-card select::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-card select {
  appearance: none;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-card li {
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.contact-card a {
  color: var(--secondary);
  text-decoration: none;
}

.job-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  padding: 2rem 0;
  background: #08080a;
  color: #9ca3af;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  body {
    padding-top: 140px;
  }

  .hero,
  .split,
  .form-section,
  .grid-3,
  .cta-box,
  .footer-content,
  .comparison-grid {
    grid-template-columns: 1fr;
    display: block;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .cta-box {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 20px 50px rgba(224, 29, 36, 0.18);
  }
  50% {
    box-shadow: 0 24px 70px rgba(224, 29, 36, 0.32);
  }
}
