/* PMG-style landing — neon green / deep black */
:root {
  --neon: #00ff41;
  --neon-dim: rgba(0, 255, 65, 0.55);
  --neon-soft: rgba(0, 255, 65, 0.12);
  --bg: #030303;
  --bg-card: #0a0a0a;
  --text: #f4f4f5;
  --muted: #94a3b8;
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Space Grotesk", var(--font-sans);
  --glow: 0 0 20px rgba(0, 255, 65, 0.45), 0 0 40px rgba(0, 255, 65, 0.15);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 65, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 255, 65, 0.04), transparent);
  min-height: 100vh;
}

img:not(.logo__img) {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neon);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(3, 3, 3, 0.85);
  border-bottom: 1px solid rgba(0, 255, 65, 0.15);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar a.logo .logo__img {
  height: 68px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--neon);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--neon);
  color: #000;
  box-shadow: var(--glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 255, 65, 0.6), 0 0 60px rgba(0, 255, 65, 0.2);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--neon);
  border: 2px solid var(--neon);
  box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.08);
}

.btn--ghost:hover {
  background: var(--neon-soft);
  text-decoration: none;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon-dim);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero__title-neon {
  color: var(--neon);
  text-shadow: 0 0 14px var(--neon-dim);
}

.hero__title-white {
  color: #fff;
}

.hero__title-orange {
  color: #ff8c00;
  text-shadow: 0 0 18px rgba(255, 140, 0, 0.45);
}

.hero__lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Countdown */
.countdown-wrap {
  background: linear-gradient(145deg, #0d0d0d, #050505);
  border: 1px solid rgba(0, 255, 65, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 0 40px rgba(0, 255, 65, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.countdown-wrap__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 1.25rem);
}

.countdown__unit {
  text-align: center;
  min-width: 3.5rem;
}

.countdown__value {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-dim), 0 0 40px rgba(0, 255, 65, 0.25);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.countdown__name {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 65, 0.2);
  overflow: hidden;
  /* Mais alto que 4/3 para cortar menos as fotos no slideshow */
  aspect-ratio: 10 / 11;
  background: linear-gradient(160deg, #0f1a12 0%, #030303 50%, #0a120c 100%);
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transition: opacity 0.65s ease;
  z-index: 0;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 255, 65, 0.12));
  pointer-events: none;
  z-index: 2;
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  z-index: 0;
}

/* Section */
.section {
  padding: 4rem 0;
  position: relative;
}

.section--tight {
  padding-top: 2rem;
}

.section--pre-depo-cta {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.section__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.divider {
  height: 1px;
  max-width: 200px;
  margin: 0 auto 3rem;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 12px var(--neon-dim);
}

/* Cards grid */
.cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 65, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(0, 255, 65, 0.35);
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
}

.card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0c1510, #050505);
  display: grid;
  place-items: center;
  color: var(--neon);
  font-size: 2rem;
  border-bottom: 1px solid rgba(0, 255, 65, 0.1);
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card__body {
  padding: 1.35rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card__body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.5;
  box-shadow: 0 0 8px var(--neon-dim);
}

.card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Carousel */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 65, 0.2);
  background: #050505;
}

.carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel__slide {
  flex: 0 0 100%;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .carousel__slide {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    padding: 2.5rem 2rem;
  }
}

.carousel__img {
  border-radius: 12px;
  min-height: 180px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #0a120c, #030303);
  border: 1px solid rgba(0, 255, 65, 0.15);
  overflow: hidden;
}

.carousel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel__text h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.carousel__text p {
  color: var(--muted);
  margin: 0;
}

.carousel__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 65, 0.35);
  background: #0a0a0a;
  color: var(--neon);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.carousel__btn:hover {
  background: var(--neon-soft);
  box-shadow: 0 0 16px rgba(0, 255, 65, 0.25);
}

.carousel__btn:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 255, 65, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.carousel__dot[aria-current="true"] {
  background: var(--neon);
  box-shadow: var(--glow);
  transform: scale(1.15);
}

/* Testimonials */
.testimonials .carousel__slide {
  text-align: center;
  display: block;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 700px) {
  .testimonials .carousel__slide {
    padding: 3rem 3.5rem;
  }
}

.quote {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1rem;
  font-style: italic;
}

.quote::before,
.quote::after {
  color: var(--neon);
  opacity: 0.6;
}

.quote__author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--neon);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote__role {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.stars {
  color: var(--neon);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-shadow: 0 0 10px var(--neon-dim);
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid rgba(0, 255, 65, 0.15);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: #080808;
  overflow: hidden;
}

.faq summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--neon);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Price / final CTA */
.cta-final {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 65, 0.3);
  background: linear-gradient(165deg, rgba(0, 255, 65, 0.06), transparent 55%);
  box-shadow: 0 0 60px rgba(0, 255, 65, 0.08);
}

.cta-final .eyebrow {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
}

.cta-final .price {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 8vw, 3.85rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: inherit;
  line-height: 1.05;
}

.cta-final .price-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.cta-final .cta-final__old-price {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0, 255, 65, 0.12);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--neon);
}

.footer__credit {
  margin-top: 1rem;
  margin-bottom: 0;
}

.footer__malach-mark {
  font-weight: 700;
}


/* List check */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
  text-shadow: 0 0 8px var(--neon-dim);
}

/* Texto neutro da lista (ex.: mesma cor nas duas primeiras linhas de “O que está incluso”) */
.list-check .incluso-plain {
  color: var(--muted);
}

/* Trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 255, 65, 0.1);
  border-bottom: 1px solid rgba(0, 255, 65, 0.1);
  margin-bottom: 3rem;
}

.trust span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust strong {
  color: var(--neon);
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Two-column split */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split__box {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 255, 65, 0.12);
  background: #070707;
}

.split__box h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
