:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #0f0f10;
  --bg-card: #141517;
  --bg-card-2: #1c1d21;
  --accent: #f5c400;
  --accent-2: #ffd84d;
  --text: #f2f2f2;
  --muted: #b3b3b3;
  --line: #2a2a2a;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Syne", "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.bg-aurora {
  position: fixed;
  inset: -20% 0 auto 0;
  height: 70vh;
  background: radial-gradient(circle at 20% 20%, rgba(245, 196, 0, 0.22), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 216, 77, 0.16), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 216, 77, 0.1), transparent 60%);
  filter: blur(10px);
  z-index: -2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.2;
  z-index: -3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

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

.brand-word,
.brand-mark {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ghost {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.ghost:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(245, 196, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(245, 196, 0, 0.4);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 196, 0, 0.5);
  box-shadow: inset 0 0 0 1px rgba(245, 196, 0, 0.2);
}

.btn-outline:hover {
  background: rgba(245, 196, 0, 0.1);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1rem;
}

.pulse {
  position: relative;
  overflow: hidden;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
  opacity: 0;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.hero {
  padding: 120px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  margin: 14px 0 20px;
}

.subheadline {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  margin: 28px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-panel {
  position: relative;
}

.panel-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.panel-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.panel-badge {
  background: rgba(245, 196, 0, 0.2);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(245, 196, 0, 0.4);
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.metric {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: 14px;
  text-align: center;
}

.metric span {
  color: var(--muted);
  font-size: 0.8rem;
}

.metric strong {
  display: block;
  font-size: 1.1rem;
  margin-top: 6px;
}

.panel-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
}

.panel-chart span {
  display: block;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, var(--accent), transparent 90%);
  border-radius: 10px 10px 2px 2px;
  opacity: 0.7;
}

.panel-chart span:nth-child(2) {
  height: 80px;
}

.panel-chart span:nth-child(3) {
  height: 48px;
}

.panel-chart span:nth-child(4) {
  height: 96px;
}

.panel-chart span:nth-child(5) {
  height: 68px;
}

.panel-chart span:nth-child(6) {
  height: 88px;
}

.panel-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-cta {
  color: var(--accent);
  font-weight: 600;
}

.panel-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 40% 20%, rgba(245, 196, 0, 0.35), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 10px;
}

.section-head p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent);
}

.value,
.services,
.diferenciais,
.social,
.faq {
  padding: 90px 0;
}

.value-grid,
.diferenciais-grid,
.services-grid,
.stats-grid,
.testimonials {
  display: grid;
  gap: 24px;
}

.value-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
}

.services {
  background: var(--bg-soft);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  background: var(--bg-card-2);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 196, 0, 0.5);
}

.service-card .icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(245, 196, 0, 0.15);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}

.diferenciais-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.diferencial-item {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(245, 196, 0, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(245, 196, 0, 0.15);
}

.diferencial-item p {
  color: var(--muted);
}

.social {
  background: var(--bg-soft);
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 30px;
}

.stat-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--accent);
}

.testimonials {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
  background: var(--bg-card-2);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.testimonial span {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-weight: 600;
}

.cta {
  padding: 90px 0;
  background: linear-gradient(120deg, rgba(245, 196, 0, 0.2), rgba(10, 10, 10, 0.9));
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245, 196, 0, 0.25);
  border-radius: 26px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::marker {
  content: "";
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-copy p {
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@media (max-width: 920px) {
  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 80px;
  }

  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .panel-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .cta-inner {
    padding: 30px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }

  .brand-word {
    display: none;
  }
}
