:root {
  --green-950: #03150c;
  --green-900: #062215;
  --green-800: #08351f;
  --green-700: #0b512f;
  --green-500: #087a42;
  --gold-500: #d8a934;
  --gold-400: #f1c84c;
  --gold-300: #ffe08a;
  --dark: #0b0f0d;
  --text: #f8faf7;
  --muted: #aeb8b2;
  --light: #fbf7ed;
  --light-text: #17211c;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(3, 21, 12, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .28s ease;
}

.header.is-sticky {
  background: rgba(3, 21, 12, .94);
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: auto;
  transition: opacity .22s ease, transform .22s ease, height .22s ease;
}

.logo-full {
  height: 100px; /* antes 46px */
}

.logo-simple {
  height: 100px; /* antes 44px */
  display: none;
}

.header.is-sticky .logo-full {
  display: none;
}

.header.is-sticky .logo-simple {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--gold-400);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-400);
  margin: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(241, 200, 76, .35);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #1d1708;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(216, 169, 52, .22);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(216, 169, 52, .32);
  color: #1d1708;
}

.btn-outline:hover {
  color: var(--text);
}

.btn-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 13px;
}

.btn-outline {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 22% 20%, rgba(216,169,52,.18), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(8,122,66,.28), transparent 30%),
    linear-gradient(135deg, var(--green-950), #050807 52%, #11120d);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .65;
}

.hero-blur-one {
  width: 360px;
  height: 360px;
  background: rgba(216,169,52,.15);
  left: -120px;
  bottom: 70px;
}

.hero-blur-two {
  width: 440px;
  height: 440px;
  background: rgba(8,122,66,.18);
  right: -120px;
  top: 160px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-400);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow.dark {
  color: var(--green-700);
}

.hero h1,
.section h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
}

.hero p,
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-content > p {
  max-width: 650px;
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-stats strong,
.numbers strong {
  display: block;
  color: var(--gold-400);
  font-size: 34px;
  line-height: 1;
}

.hero-stats span,
.numbers span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border-radius: 34px;
  padding: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-top {
  display: flex;
  gap: 8px;
  padding: 8px 6px 18px;
}

.card-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.dashboard-preview {
  background: rgba(3, 21, 12, .82);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 28px;
}

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

.preview-header small {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.preview-header strong {
  font-size: clamp(26px, 3vw, 42px);
  color: var(--text);
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8,122,66,.25);
  color: #9effc6;
  font-weight: 800;
  font-size: 13px;
}

.chart {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 40px 0 28px;
}

.chart span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--gold-400), var(--green-500));
  box-shadow: 0 12px 30px rgba(216,169,52,.18);
}

.preview-list {
  display: grid;
  gap: 14px;
}

.preview-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--gold-400);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.dot.success {
  background: #47e887;
}

.dot.warning {
  background: #ffcf5c;
}

.section {
  padding: 115px 0;
}

.light {
  background: var(--light);
  color: var(--light-text);
}

.light p {
  color: #435145;
}

.dark-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(216,169,52,.12), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(8,122,66,.16), transparent 30%),
    linear-gradient(135deg, #06130c, #10130f);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.split h2,
.section-heading h2,
.center h2,
.contact h2 {
  font-size: clamp(36px, 4.5vw, 64px);
}

.split p {
  margin-top: 22px;
  max-width: 620px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-grid article,
.cards article,
.solution-grid article,
.vision-panel,
.form {
  border-radius: 28px;
  border: 1px solid rgba(10, 35, 22, .10);
  background: rgba(255,255,255,.68);
  padding: 28px;
  box-shadow: 0 22px 70px rgba(4, 20, 11, .08);
}

.feature-grid i,
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--green-700), var(--gold-500));
  color: white;
  font-style: normal;
  font-weight: 900;
}

.feature-grid h3,
.cards h3,
.solution-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-grid p,
.cards p,
.solution-grid p {
  font-size: 15px;
  line-height: 1.6;
}

.center,
.section-heading {
  text-align: center;
}

.section-subtitle,
.section-heading p {
  max-width: 760px;
  margin: 20px auto 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
  text-align: left;
}

.solution-grid article {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
}

.solution-grid span {
  color: var(--gold-400);
  font-weight: 900;
  display: block;
  margin-bottom: 34px;
}

.solution-grid p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 58px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 24px;
  margin-top: 70px;
}

.numbers span {
  color: #647067;
}

.vision {
  background:
    linear-gradient(135deg, rgba(3,21,12,.95), rgba(8,53,31,.92)),
    radial-gradient(circle at 80% 20%, rgba(216,169,52,.3), transparent 30%);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.mini-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.vision-panel {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-400), rgba(8,122,66,.1) 70%);
  filter: blur(10px);
  opacity: .55;
  position: absolute;
  right: -50px;
  top: -70px;
}

.vision-panel h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.vision-panel ul {
  margin-top: 28px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.receive {
  margin-top: 34px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.receive h3 {
  margin-bottom: 16px;
}

.receive p {
  font-size: 16px;
  margin-top: 10px;
}

.form {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
}

.form h3 {
  font-size: 28px;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: white;
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--gold-400);
}

.form .btn {
  width: 100%;
  border: none;
}

.direct-contact {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.direct-contact strong {
  color: white;
}

.footer {
  background: #050806;
  padding: 70px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .9fr 1.1fr;
  gap: 48px;
}

.footer img {
  height: 82px;
  width: auto;
  margin-bottom: 18px;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer a,
.footer p {
  display: block;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.copyright {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 14px;
}

.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  z-index: 30;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 55px rgba(37, 211, 102, .28);
}

.whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(3, 21, 12, .98);
    border: 1px solid rgba(255,255,255,.10);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .cards,
  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 130px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero h1,
  .section h2 {
    letter-spacing: -0.04em;
  }

  .hero-actions,
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-grid,
  .solution-grid,
  .cards,
  .numbers,
  .mini-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .footer-grid {
    gap: 30px;
  }
}

.policy-page {
  background: var(--light);
  color: var(--light-text);
  min-height: 100vh;
}

.policy-hero {
  padding: 130px 0 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(216,169,52,.18), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--text);
}

.policy-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-400);
  font-weight: 800;
}

.policy-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.policy-hero p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.policy-content {
  padding: 70px 0 100px;
  max-width: 900px;
}

.policy-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 26px;
  color: var(--green-800);
}

.policy-content p {
  color: #435145;
  font-size: 17px;
  line-height: 1.8;
}