:root {
  --bg: #f8fafc; /* Fundo principal claro */
  --surface: #ffffff; /* Superfície (cards, header) */
  --primary: #c38f29; /* Cor primária */
  --accent: #c93e23; /* Cor de destaque */
  --text: #0f172a; /* Texto principal (slate-900) */
  --muted: #475569; /* Texto secundário (slate-600) */
  --card: #ffffff; /* Cartões/elementos */
  --border: rgba(15, 23, 42, 0.08); /* Bordas sutis (slate-900 a ~8%) */
  --ring: rgba(195, 143, 41, 0.35);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.07);
  --radius: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(201, 62, 35, 0.06),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at -10% 20%,
      rgba(195, 143, 41, 0.06),
      transparent 60%
    ),
    var(--bg);
  line-height: 1.6;
}

/* Layout utilitário */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* Cabeçalho */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.1) blur(8px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 34px;
  width: auto;
}
.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(2, 6, 23, 0.06);
}

/* Hero */
.hero {
  padding: 64px 0 32px;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  background: rgba(2, 6, 23, 0.04);
}
.hero h1 {
  font-size: clamp(2rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: 0.3px;
}
.hero p {
  color: var(--muted);
  font-size: 1.075rem;
  margin: 0 0 26px;
  max-width: 52ch;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Botões */
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 12px;
  line-height: 1;
  transition: transform 0.04s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  will-change: transform;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, #c38f29 0%, #c93e23 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(201, 62, 35, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 8px 22px rgba(201, 62, 35, 0.35);
  filter: brightness(1.05);
}

.btn-accent {
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--accent), #000 12%);
  color: var(--text);
}
.btn-accent:hover {
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(201, 62, 35, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(2, 6, 23, 0.04);
}

/* Blocos / Cartões */
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.98)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Funcionalidades */
.features {
  padding: 56px 0;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 1.3vw + 1rem, 2rem);
  margin: 0;
}
.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
}

.features-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.feature {
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--primary), #000 18%);
}
.icon {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.04);
  border: 1px solid var(--border);
}
.icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}
.feature h3 {
  margin: 2px 0 6px;
  font-size: 1.02rem;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* CTA */
.cta {
  margin: 56px 0 70px;
  padding: 28px;
  overflow: hidden;
  position: relative;
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 1.5fr 0.5fr;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: var(--radius);
  background: radial-gradient(
      600px 240px at 15% 30%,
      rgba(195, 143, 41, 0.18),
      transparent 60%
    ),
    radial-gradient(
      500px 260px at 90% 70%,
      rgba(201, 62, 35, 0.18),
      transparent 60%
    );
  filter: blur(10px);
}
.cta h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1.2vw + 1rem, 1.8rem);
}
.cta p {
  margin: 0;
  color: var(--muted);
}
.cta .actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Rodapé */
footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 36px;
  color: var(--muted);
  background: var(--surface);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.social {
  display: flex;
  gap: 14px;
}
.social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.03);
  transition: transform 0.1s ease, border-color 0.2s ease, background 0.2s ease;
}
.social a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--primary), #000 18%);
  background: rgba(2, 6, 23, 0.06);
}
.social svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
}

/* Acessibilidade foco */
:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Responsividade */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 6px;
  }
  .cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta .actions {
    justify-content: center;
  }
}
@media (max-width: 780px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .brand-name {
    display: none;
  }
  .nav-links {
    gap: 14px;
  }
}

/***************************************************
 * Generated by SVG Artista on 8/11/2025, 5:54:48 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

svg .svg-elems-1 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 0.8s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 0.8s;
}

svg.active .svg-elems-1 {
  fill: rgb(0, 0, 0);
}

svg .svg-elems-2 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 0.9s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 0.9s;
}

svg.active .svg-elems-2 {
  fill: rgb(199, 81, 36);
}

svg .svg-elems-3 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1s;
}

svg.active .svg-elems-3 {
  fill: rgb(199, 81, 36);
}

svg .svg-elems-4 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.1s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.1s;
}

svg.active .svg-elems-4 {
  fill: rgb(199, 81, 36);
}

svg .svg-elems-5 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.2000000000000002s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.2000000000000002s;
}

svg.active .svg-elems-5 {
  fill: rgb(199, 81, 36);
}

svg .svg-elems-6 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.3s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.3s;
}

svg.active .svg-elems-6 {
  fill: rgb(255, 255, 255);
}

svg .svg-elems-7 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.4000000000000001s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.4000000000000001s;
}

svg.active .svg-elems-7 {
  fill: rgb(255, 255, 255);
}

svg .svg-elems-8 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.5s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.5s;
}

svg.active .svg-elems-8 {
  fill: rgb(255, 255, 255);
}

svg .svg-elems-9 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.6s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.6s;
}

svg.active .svg-elems-9 {
  fill: rgb(255, 255, 255);
}

svg .svg-elems-10 {
  fill: transparent;
  -webkit-transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.7000000000000002s;
          transition: fill 1s cubic-bezier(1, 0, 0, 1) 1.7000000000000002s;
}

svg.active .svg-elems-10 {
  fill: rgb(255, 255, 255);
}

