@charset "UTF-8";
* {
  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, "Helvetica Neue", Arial;
  background: #02010f;
  color: #cbd5dd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(4, 10, 20, 0.6), rgba(2, 8, 18, 0.25));
}
.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.topbar .brand {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}
.topbar .brand .brand-sub {
  color: #9fb3c9;
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}
.topbar .desktop-nav {
  display: none;
  gap: 18px;
  align-items: center;
}
.topbar .desktop-nav a {
  color: #cbd5dd;
  text-decoration: none;
  padding: 8px;
}
.topbar .desktop-nav .btn-primary {
  margin-left: 12px;
}

.menu-toggle {
  position: fixed;
  right: 14px;
  top: 14px;
  z-index: 60;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle .burger {
  width: 22px;
  height: 2px;
  background: #cbd5dd;
  display: block;
  position: relative;
  transition: transform 0.25s ease;
}
.menu-toggle .burger::before, .menu-toggle .burger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #cbd5dd;
  transition: transform 0.25s ease;
}
.menu-toggle .burger::before {
  top: -7px;
}
.menu-toggle .burger::after {
  top: 7px;
}

.side-menu {
  position: fixed;
  right: -320px;
  top: 0;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(8, 18, 36, 0.98), rgba(6, 12, 24, 0.96));
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.6);
  z-index: 70;
  padding: 20px;
  transition: right 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-menu a {
  color: #cbd5dd;
  text-decoration: none;
  font-weight: 600;
  padding: 8px;
  display: inline-block;
}
.side-menu .close-btn {
  background: transparent;
  border: 0;
  color: #cbd5dd;
  font-size: 18px;
  float: left;
}

.side-menu.open {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 6, 12, 0.6);
  z-index: 65;
}

.section {
  padding: 60px 0;
}

.hero {
  padding-top: 90px;
  padding-bottom: 80px;
}
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0; /* Mantém no fundo */
}
.hero h1 {
  color: #ffffff;
  font-size: 2.25rem;
  margin: 0 0 12px;
}
.hero .lead {
  color: #9fb3c9;
  margin-bottom: 18px;
}
.hero .hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.hero .hero-benefits {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  color: #9fb3c9;
  font-size: 14px;
  flex-wrap: wrap;
}
.hero .hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-media .ebook-frame {
  width: 320px;
  height: 420px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(2, 8, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-media .ebook-frame img {
  width: 80%;
  height: auto;
  display: block;
  opacity: 1;
  z-index: 999;
}
.hero .hero-media .ebook-meta {
  margin-top: 16px;
  text-align: center;
  color: #9fb3c9;
}
.hero .hero-media .ebook-meta h3 {
  color: #ffffff;
  margin: 6px 0 0;
}

/* CAROUSEL */
:root {
  --bg-color: #e1e3e5;
  --icon-default: hsl(203 5 75);
  --icon-accent: hsl(203 15 98);
  --navigation-color: hsl(203 5 25 / 0.3);
}

.image-slider {
  display: flex;
  flex-flow: column;
  width: clamp(360px, 96vw, 830px);
  aspect-ratio: 16/9;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  container-type: inline-size;
  contain: content;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px, rgba(0, 0, 0, 0.3) 0px 2px 4px, rgba(0, 0, 0, 0.25) 0px 4px 8px, rgba(0, 0, 0, 0.2) 0px 8px 16px, rgba(0, 0, 0, 0.15) 0px 16px 32px;
}

.slider__content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}

.slider-control--button {
  border: 0;
  background: 0;
  outline: 0;
  cursor: pointer;
  place-content: center;
  padding-inline: 3vw;
  z-index: 1;
  display: grid;
}

.icon {
  height: 2rem;
  width: 2rem;
  fill: var(--icon-default);
  border-radius: 50%;
}

.slider-control--button:where(:hover) {
  background-image: linear-gradient(to var(--position), rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1333333333), 80%, rgba(0, 0, 0, 0.4) 100%);
}
.slider-control--button:where(:hover) .icon {
  fill: var(--icon-accent);
  background: rgba(0, 0, 0, 0.0666666667);
}

.prev-button {
  --position: left;
}

.next-button {
  --position: right;
}

.image-display {
  position: fixed;
  inset: 0;
}

.slider-navigation {
  z-index: 10;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-columns: 100%;
  gap: 1.25rem;
  padding: 1rem;
  place-content: center;
  background-color: var(--navigation-color);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.nav-button {
  display: grid;
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 0;
  aspect-ratio: 16/9;
  transition: filter 150ms linear, scale 266ms ease;
}

.thumbnail {
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.nav-button[aria-selected=true] {
  scale: 1.1;
}

.nav-button[aria-selected=true],
.nav-button:focus-visible {
  outline: 0.2em solid var(--active-color);
  outline-offset: 0.2em;
}

.nav-button[aria-selected=false] {
  filter: opacity(0.7);
}

.nav-button[aria-selected=false]:where(:hover, :focus-visible) {
  filter: opacity(1);
}

@container (max-width: 660px) {
  .nav-button:not(:has(img)) {
    background-color: rgb(241, 235, 232);
  }
  .slider-navigation {
    display: flex;
    justify-content: center;
    padding-block: 1.5em;
  }
  .nav-button {
    inline-size: 0.625rem;
    aspect-ratio: 1;
    border-radius: 50%;
  }
  .nav-button > .thumbnail {
    display: none;
  }
  .nav-button[aria-selected=true] {
    background-color: black;
    scale: 1.5;
  }
}
/* CAROUSEL */
.carousel {
  padding: 40px 0;
  position: relative;
  display: flex;
  justify-content: center;
}

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

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 18px;
  border-radius: 10px;
}
.card h4 {
  color: #ffffff;
  margin: 0 0 8px;
}
.card p {
  color: #9fb3c9;
  margin: 0;
}

.preview-images {
  display: flex;
  justify-content: center;
  width: 100%;
}
.preview-images img {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(2, 8, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 4%;
}

.video-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.video-section .video-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
}
.video-section .video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.video-section .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}

.who-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 10px;
  text-align: center;
}
.who-card .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 10px;
}
.who-card h4 {
  color: #ffffff;
  margin: 0 0 6px;
}
.who-card p {
  color: #9fb3c9;
  margin: 0 0 8px;
}

.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.faq-grid details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 14px;
  border-radius: 8px;
}
.faq-grid details summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
}
.faq-grid details p {
  margin: 8px 0 0;
  color: #9fb3c9;
}

.subscribe {
  background: linear-gradient(180deg, rgba(3, 9, 20, 0.6), rgba(6, 22, 36, 0.4));
  padding: 60px 0;
}
.subscribe .subscribe-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 420px;
  gap: 28px;
}
.subscribe .lead-form {
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  border-radius: 10px;
}
.subscribe label {
  display: block;
  color: #9fb3c9;
  font-size: 13px;
  margin-bottom: 6px;
}
.subscribe input[type=text],
.subscribe input[type=email],
.subscribe input[type=tel] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  outline: none;
}
.subscribe input, .subscribe form, .subscribe label {
  position: relative;
  z-index: 9999;
}
.subscribe .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}
.subscribe .card-ebook {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  border-radius: 10px;
}
.subscribe .card-ebook img {
  width: 60px;
  height: auto;
  border-radius: 6px;
}
.subscribe .card-ebook h4 {
  margin: 0;
  color: #ffffff;
}
.subscribe .card-ebook p {
  margin: 0;
  color: #9fb3c9;
  font-size: 13px;
}
.subscribe .subscribe-list {
  margin-top: 18px;
  list-style: none;
  padding: 0;
  color: #9fb3c9;
}

.card-social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  border-radius: 10px;
  margin-top: 10px;
}
.card-social img {
  width: auto;
  height: 27px;
  border-radius: 6px;
}
.card-social a {
  margin: 0;
  color: #9fb3c9;
  font-size: 20px;
  outline: none;
  text-decoration: none;
}

.card-ebook-pay {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  border-radius: 10px;
  margin-top: 10px;
}
.card-ebook-pay img {
  width: auto;
  height: 25px;
  border-radius: 6px;
}
.card-ebook-pay h4 {
  margin: 0;
  color: #ffffff;
}
.card-ebook-pay p {
  margin: 0;
  color: #9fb3c9;
  font-size: 13px;
}

.purchase {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
}

.footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #9fb3c9;
}
.footer a {
  color: #9fb3c9;
  text-decoration: none;
  margin-left: 12px;
}

.btn-primary {
  background: linear-gradient(180deg, #0ea5a1, #027a7a);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-primary.large {
  padding: 14px 20px;
  font-size: 16px;
}

.btn-outline {
  background: transparent;
  color: #cbd5dd;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  display: inline-block;
}

@media (min-width: 900px) {
  .desktop-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .side-menu {
    display: none;
  }
  .overlay {
    display: none;
  }
}
@media (max-width: 899px) {
  .hero .hero-grid,
  .video-section .video-grid,
  .subscribe .subscribe-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .desktop-nav {
    display: none;
  }
  .topbar .topbar-inner {
    height: 56px;
  }
  .hero {
    padding-top: 60px;
  }
  .menu-toggle {
    right: 12px;
    top: 12px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  .btn-primary.large {
    font-size: 14px;
    padding: 12px 16px;
  }
  .hero-media .ebook-frame {
    width: 220px;
    height: 290px;
  }
}
@media (max-width: 899px) {
  .topbar .brand {
    margin-left: 12px;
  }
}
.checkout-page {
  min-height: 100vh;
  background: linear-gradient(180deg, rgb(2, 6, 12) 0%, rgba(4, 10, 20, 0.9) 40%), linear-gradient(180deg, #062538 40%, #021227 0%);
  color: #cbd5dd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.checkout-panel {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.02);
  align-items: start;
}

.checkout-info {
  padding-right: 6px;
}
.checkout-info h1 {
  margin: 0 0 10px;
  font-size: 1.85rem;
  color: #ffffff;
}
.checkout-info .lead {
  color: #9fb3c9;
  margin-bottom: 18px;
  line-height: 1.5;
}
.checkout-info .benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.checkout-info .benefits .benefit {
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  border-radius: 10px;
  color: #9fb3c9;
  font-size: 14px;
  min-width: 140px;
}

.checkout-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contador {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.contador .label {
  color: #9fb3c9;
  font-size: 13px;
}
.contador .number {
  font-weight: 800;
  font-size: 36px;
  color: #29b0c3;
  letter-spacing: -0.02em;
  margin-top: 6px;
  display: inline-block;
}
.contador .sub {
  color: #9fb3c9;
  font-size: 13px;
  margin-top: 6px;
}

.offer {
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.7), rgba(6, 12, 24, 0.6));
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
}
.offer p {
  margin: 0;
  color: #9fb3c9;
  font-size: 14px;
}
.offer .cta {
  margin-top: 12px;
}
.offer .btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.offer .btn:active {
  transform: translateY(1px);
}
.offer .btn-pix {
  background: linear-gradient(180deg, #29b0c3, rgb(35.6838983051, 153.1796610169, 169.7161016949));
  color: #022;
  box-shadow: 0 8px 30px rgba(41, 176, 195, 0.12);
}
.offer .btn-card {
  background: linear-gradient(180deg, #2aa6ff, rgb(11.4, 153.214084507, 255));
  color: #022;
  box-shadow: 0 8px 30px rgba(42, 166, 255, 0.08);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 6, 12, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  width: 90%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.modal h4 {
  margin: 0 0 8px;
  color: #ffffff;
}

.modal p {
  color: #9fb3c9;
  margin: 0 0 18px;
}

.modal .ok {
  padding: 12px 18px;
  border-radius: 10px;
  background: #29b0c3;
  color: #022;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

@media (max-width: 980px) {
  .checkout-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}
@keyframes pulse-count {
  0% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}
.counter-anim {
  animation: pulse-count 0.9s ease forwards;
}/*# sourceMappingURL=styles.css.map */