:root {
  --white: #ffffff;
  --deep-orange-6: #f4511e;
  --deep-purple-7: #512da8;

  --bg: #ffffff;
  --text: #14121a;
  --muted: #5d5a6a;
  --soft: #faf7ff;
  --line: rgba(20, 18, 26, 0.12);
  --shadow: 0 16px 38px rgba(20, 18, 26, 0.12);
  --radius: 18px;
  --max: 1120px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.45;
  background: radial-gradient(
      900px 560px at 15% 0%,
      rgba(244, 81, 30, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 560px at 85% 10%,
      rgba(81, 45, 168, 0.16),
      transparent 60%
    ),
    -webkit-gradient(linear, left top, left bottom, from(var(--soft)), color-stop(40%, var(--bg)), to(var(--bg)));
  background: radial-gradient(
      900px 560px at 15% 0%,
      rgba(244, 81, 30, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 560px at 85% 10%,
      rgba(81, 45, 168, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, var(--soft) 0%, var(--bg) 40%, var(--bg) 100%);
}
a {
  color: inherit;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 18px 70px;
}

/* NAV */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}
.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  background: transparent; /* garante que não tenha fundo */
  padding: 0; /* remove espaçamento extra */
}
.navlinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navlinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
}
.navlinks a:hover {
  background: rgba(81, 45, 168, 0.08);
  color: var(--text);
}
.navActions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* logo no topo */
.brandLogo {
  height: 84px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/* BUTTONS */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btnPrimary {
  background: linear-gradient(135deg, var(--deep-orange-6), #ff6b3d);
  color: var(--white);
  -webkit-box-shadow: 0 14px 30px rgba(244, 81, 30, 0.25);
          box-shadow: 0 14px 30px rgba(244, 81, 30, 0.25);
}
.btnPrimary:hover {
  -webkit-filter: brightness(0.98);
          filter: brightness(0.98);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.btnOutline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep-purple-7);
  border-color: rgba(81, 45, 168, 0.3);
}
.btnOutline:hover {
  background: rgba(81, 45, 168, 0.08);
}
.btnSoft {
  background: rgba(81, 45, 168, 0.1);
  color: var(--deep-purple-7);
  border-color: rgba(81, 45, 168, 0.18);
}
.btnSoft:hover {
  background: rgba(81, 45, 168, 0.14);
}
.btnGhost {
  background: transparent;
  border: 1px solid rgba(81, 45, 168, 0.18);
  color: var(--text);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}
.btnGhost:hover {
  border-color: rgba(244, 81, 30, 0.35);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 26px;
  overflow: hidden;
  position: relative;
}
.panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(
      500px 260px at 10% 0%,
      rgba(244, 81, 30, 0.14),
      transparent 70%
    ),
    radial-gradient(
      520px 280px at 90% 10%,
      rgba(81, 45, 168, 0.14),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}
.panel > * {
  position: relative;
  z-index: 1;
}

.kicker {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 81, 30, 0.08);
  border: 1px solid rgba(244, 81, 30, 0.22);
  color: #7b2c14;
  font-size: 13px;
  font-weight: 700;
}
h1 {
  margin: 14px 0 10px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px;
}
.heroActions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
}

.bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}
.bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(20, 18, 26, 0.1);
  color: var(--muted);
  font-size: 14px;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(81, 45, 168, 0.1);
  border: 1px solid rgba(81, 45, 168, 0.18);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--deep-purple-7);
  font-weight: 900;
}

/* HERO CARD */
.photoCard {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  background: var(--white);
}
.photoCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-height: 320px;
}
.photoCaption {
  padding: 14px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(rgba(255, 255, 255, 0.85)),
    to(rgba(255, 255, 255, 1))
  );
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 1)
  );
}
.photoCaption strong {
  font-size: 14px;
}
.photoCaption span {
  color: var(--muted);
  font-size: 13px;
}

/* SECTIONS */
section {
  margin-top: 22px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  -webkit-box-shadow: 0 10px 24px rgba(20, 18, 26, 0.1);
          box-shadow: 0 10px 24px rgba(20, 18, 26, 0.1);
}
.card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(244, 81, 30, 0.55);
  margin-top: 7px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* Dash + lightbox */
.dashGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.dashCard {
  grid-column: span 12;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 10px;
  -webkit-box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
          box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.dashCard img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
@media (min-width: 920px) {
  .dashCard:nth-child(1) {
    grid-column: span 12;
  }
  .dashCard:nth-child(2) {
    grid-column: span 7;
  }
  .dashCard:nth-child(3) {
    grid-column: span 5;
  }
}
.dashNote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 14px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 0.95rem;
}
.badgeMini {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(81, 45, 168, 0.1);
  color: rgba(81, 45, 168, 1);
  font-weight: 700;
  font-size: 0.78rem;
}

/* CTA */
.ctaBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(244, 81, 30, 0.1),
    rgba(81, 45, 168, 0.08)
  );
  border: 1px solid rgba(20, 18, 26, 0.12);
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.ctaBlock h2 {
  margin: 0;
  font-size: 22px;
}
.ctaBlock p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* FOOTER */
footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 18, 26, 0.12);
  color: var(--muted);
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.smallLinks a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 10px;
}
.smallLinks a:hover {
  color: var(--text);
}

/* WhatsApp FAB */
.waFab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebc5b);
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.waFab svg {
  width: 22px;
  height: 22px;
}
.waFab span {
  font-weight: 800;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 60;
  padding: 18px;
}
.lightbox.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  border-radius: 18px;
  -webkit-box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
          box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  background: #fff;
}
.lightboxClose {
  position: fixed;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.lightboxClose:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 36px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 30px;
  }
  .bullets {
    grid-template-columns: 1fr;
  }
  .grid3,
  .grid2 {
    grid-template-columns: 1fr;
  }
  .navlinks {
    display: none;
  }
  .brandLogo {
    height: 52px;
  }
}


/*# sourceMappingURL=chunk-77131c6e.f75b2fcd.css.map*/