:root {
  --bg: #020503;
  --bg-soft: #07110b;
  --card: rgba(9, 18, 14, 0.82);
  --card-2: rgba(11, 17, 31, 0.92);
  --line: rgba(90, 255, 145, 0.18);
  --primary: #29ff5a;
  --primary-2: #15e84b;
  --primary-dark: #0c3416;
  --gold: #f6d76b;
  --text: #f3f5f4;
  --muted: #c5d0c8;
  --muted-2: #8d9a91;
  --danger: #ff5c5c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1160px;
  --container-narrow: 920px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(13, 60, 29, 0.35), transparent 38%),
    linear-gradient(180deg, #010302 0%, #031008 35%, #030604 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

img,
video {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.container.narrow,
.narrow {
  width: min(100% - 32px, var(--container-narrow));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.top-gap {
  margin-top: 28px;
}

.section {
  position: relative;
  padding: 88px 0;
  z-index: 1;
}

.section-compact {
  padding-top: 8px;
  padding-bottom: 28px;
}

.comparison-section {
  margin-top: -8px;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(41, 255, 90, 0.08), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(246, 215, 107, 0.05), transparent 14%),
    radial-gradient(circle at 74% 74%, rgba(41, 255, 90, 0.06), transparent 20%);
  z-index: 0;
}

.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(41, 255, 90, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(41, 255, 90, 0.55);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(30px);
    opacity: 0.15;
  }
}

.hero,
.footer-cta {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 42px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 36px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-badges,
.trust-inline,
.video-points,
.footer-mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 24, 18, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.brand-mini,
.footer-logo {
  font-family: "Cinzel", serif;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 18px 0 10px;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.footer-cta h2 {
  font-family: "Cinzel", serif;
  line-height: 1.05;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  max-width: 11ch;
}

.hero-subtitle,
.section-heading p,
.benefits-paragraph,
.value-box li,
.compare-card li,
.testimonial-card p,
.faq-answer p,
.offer-wrapper p,
.trust-card p,
.urgency-box p,
.footer-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  font-size: 1.08rem;
  max-width: 62ch;
  margin-top: 18px;
}

.hero-proof {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(246, 215, 107, 0.18);
  background: linear-gradient(180deg, rgba(20, 18, 7, 0.48), rgba(9, 12, 10, 0.58));
  border-radius: var(--radius-md);
  max-width: 620px;
}

.proof-stars,
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #031108;
  box-shadow: 0 12px 28px rgba(41, 255, 90, 0.22);
}

.btn-secondary {
  background: rgba(10, 16, 13, 0.72);
  border-color: var(--line);
  color: var(--text);
}

.btn-big {
  min-height: 64px;
  padding: 0 34px;
  font-size: 1.02rem;
}

.pulse-btn {
  animation: pulseCta 1.8s infinite;
}

@keyframes pulseCta {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(41, 255, 90, 0.35);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 18px rgba(41, 255, 90, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(41, 255, 90, 0);
  }
}

.trust-inline {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-slider-box {
  width: 100%;
  max-width: 360px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(246, 215, 107, 0.18);
  background: linear-gradient(180deg, rgba(10, 18, 13, 0.92), rgba(7, 12, 10, 0.96));
  box-shadow: var(--shadow);
}

.hero-slider-track,
.preview-slides {
  position: relative;
}

.hero-slide,
.preview-slide {
  display: none;
}

.hero-slide.active,
.preview-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  aspect-ratio: 9 / 17.2;
  object-fit: cover;
}

.preview-slider-large {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.preview-slide {
  position: relative;
}

.preview-slide img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(246, 215, 107, 0.25);
  box-shadow: var(--shadow);
}

.preview-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(2, 9, 5, 0.85);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(3, 11, 7, 0.85);
  color: var(--primary);
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 5;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 14px 18px;
}

.preview-slider-large > .slider-dots {
  padding: 16px 14px 0;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: 0.25s ease;
  border: 0;
}

.slider-dot.active {
  width: 24px;
  background: var(--gold);
}

.floating-card {
  margin-top: 14px;
  max-width: 360px;
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(5, 13, 9, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  margin-top: 10px;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow.dark,
.dark-text h2,
.dark-text p {
  color: #0b120d;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card,
.value-box,
.video-card,
.testimonial-card,
.trust-card,
.urgency-box,
.faq-item,
.topic-card,
.benefit-item,
.include-card,
.bonus-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.compare-card {
  padding: 28px;
  background: rgba(7, 12, 10, 0.86);
  overflow: hidden;
}

.compare-card h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.compare-negative {
  border-color: rgba(255, 92, 92, 0.26);
  background: linear-gradient(180deg, rgba(33, 5, 5, 0.78), rgba(15, 5, 5, 0.78));
}

.compare-negative h3 {
  color: #ff8b8b;
}

.compare-positive {
  background: linear-gradient(180deg, rgba(5, 28, 12, 0.82), rgba(6, 14, 9, 0.84));
}

.compare-positive h3 {
  color: var(--primary);
}

.compare-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.compare-card li {
  position: relative;
  padding-left: 28px;
  min-width: 0;
  word-break: break-word;
}

.compare-card li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
}

.compare-negative li::before {
  color: var(--danger);
}

.compare-positive li::before {
  color: var(--primary);
}

.topics-grid {
  display: grid;
  gap: 14px;
}

.topics-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.topic-card {
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.88), rgba(12, 19, 30, 0.92));
  text-align: center;
  font-weight: 700;
  color: var(--gold);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-column-last {
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.value-box {
  margin-top: 22px;
  padding: 22px;
  background: rgba(8, 14, 11, 0.85);
}

.value-box h3 {
  margin-bottom: 14px;
  color: var(--gold);
}

.value-box ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.value-box li {
  padding-left: 22px;
  position: relative;
}

.value-box li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.benefits-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  padding: 18px 20px;
  background: rgba(12, 20, 36, 0.9);
  font-weight: 700;
}

.video-card {
  padding: 18px;
  background: rgba(7, 12, 10, 0.86);
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.local-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  background: #000;
}

.video-points {
  margin-top: 18px;
  color: var(--muted);
  justify-content: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 24px;
  background: rgba(10, 19, 40, 0.88);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-head img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-head span {
  display: block;
  color: var(--muted-2);
  margin-top: 4px;
  font-size: 0.92rem;
}

.proof-banner {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(15, 34, 15, 0.8), rgba(7, 13, 9, 0.9));
  border: 1px solid var(--line);
  text-align: center;
  color: var(--primary);
  font-weight: 800;
}

.offer-section {
  padding-top: 92px;
}

.offer-wrapper {
  background: linear-gradient(180deg, #f1f2ee 0%, #e8e9e5 100%);
  color: #0b120d;
  border-radius: 28px;
  padding: 38px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.price-highlight {
  margin-top: 24px;
  text-align: center;
}

.old-price {
  font-size: 1.45rem;
  color: #c44141;
  font-weight: 800;
}

.new-price {
  margin-top: 10px;
}

.vitalicio {
  display: inline-block;
  color: #18d548;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.new-price strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.offer-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.include-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

.bonus-box {
  margin-top: 20px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(30, 214, 74, 0.24);
}

.bonus-box h3 {
  color: #14ce46;
  margin-bottom: 10px;
}

.bonus-box p {
  color: #7e897f;
  font-weight: 600;
}

.offer-cta {
  text-align: center;
  margin-top: 26px;
}

.offer-cta small {
  display: block;
  margin-top: 12px;
  color: #556158;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  padding: 22px;
  background: rgba(10, 18, 13, 0.86);
}

.trust-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.urgency-box {
  padding: 28px;
  background: linear-gradient(180deg, rgba(7, 14, 10, 0.95), rgba(8, 18, 12, 0.92));
}

.spots-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(3, 10, 7, 0.85);
  border: 1px solid rgba(246, 215, 107, 0.18);
}

.spots-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 800;
}

.progress-bar {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  transition: width 0.5s ease;
}

.spots-message {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: rgba(8, 16, 34, 0.92);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question span {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.active .faq-answer {
  display: block;
}

.footer-cta {
  padding: 72px 0 80px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.footer-cta p {
  margin: 16px auto 22px;
  max-width: 760px;
}

.footer-mini-trust {
  justify-content: center;
  color: var(--muted);
  margin-top: 16px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .benefits-layout,
  .comparison-grid,
  .trust-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .hero-slider-box,
  .floating-card {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-big {
    width: 100%;
  }

  .hero-slider-box,
  .floating-card {
    max-width: 450px;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-slider-box {
    border-radius: 22px;
  }

  .hero-slide img {
    aspect-ratio: 9 / 16.4;
  }

  .floating-card {
    margin-top: 10px;
  }

  .comparison-section {
    margin-top: -2px;
  }

  .section-compact {
    padding-top: 6px;
    padding-bottom: 22px;
  }

  .topics-grid.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-card {
    min-height: 58px;
    padding: 16px 12px;
    font-size: 0.9rem;
  }

  .offer-includes,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn.prev {
    left: 8px;
  }

  .slider-btn.next {
    right: 8px;
  }

  .preview-label {
    left: 12px;
    bottom: 12px;
    font-size: 0.85rem;
  }

  .offer-wrapper {
    padding: 28px 18px;
  }

  .spots-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question {
    padding: 18px;
    font-size: 0.98rem;
  }

  .compare-card,
  .benefit-item,
  .trust-card,
  .testimonial-card,
  .urgency-box,
  .video-card {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 480px) {
  .container,
  .container.narrow,
  .narrow {
    width: min(100% - 20px, var(--container));
  }

  .badge {
    font-size: 0.82rem;
    padding: 9px 12px;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.02;
  }

  .hero-slider-box,
  .floating-card {
    max-width: 530px;
  }

  .hero-slider-box {
    border-radius: 18px;
  }

  .hero-slide img {
    aspect-ratio: 9 / 14.8;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .proof-banner {
    font-size: 0.95rem;
  }

  .old-price {
    font-size: 1.18rem;
  }

  .new-price strong {
    font-size: 2rem;
  }

  .topics-grid.two-columns {
    gap: 10px;
  }

  .topic-card {
    font-size: 0.83rem;
    padding: 14px 10px;
    min-height: 54px;
  }
}
.video-section .video-card {
  max-width: 520px;
  margin: 0 auto;
}
/* =========================
   ANIMAÇÕES EXTRAS - SLIDES E FAQ
   cole no final do style.css
========================= */

/* transição mais suave dos slides */
.hero-slide,
.preview-slide {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero-slide.active,
.preview-slide.active {
  display: block;
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: slideGlowIn 0.65s ease;
}

@keyframes slideGlowIn {
  0% {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* leve movimento premium na imagem do hero */
.hero-slide.active img {
  animation: heroImageFloat 4.2s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.015) translateY(-4px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

/* brilho suave no card do hero */
.hero-slider-box {
  position: relative;
}

.hero-slider-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 35%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: sliderShine 4.8s ease-in-out infinite;
}

@keyframes sliderShine {
  0% {
    transform: translateX(-120%);
  }
  45% {
    transform: translateX(-120%);
  }
  70% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* animação da FAQ */
.faq-item {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(41, 255, 90, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.faq-question {
  transition:
    background 0.28s ease,
    color 0.28s ease;
}

.faq-question span {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/* quando estiver aberta */
.faq-item.active {
  border-color: rgba(41, 255, 90, 0.3);
  background: rgba(10, 20, 40, 0.98);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: var(--gold);
}

/* resposta abrindo com animação */
.faq-answer {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.42s ease,
    opacity 0.32s ease,
    transform 0.32s ease,
    padding 0.32s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 22px 22px;
}
/* =========================================================
   EFEITOS MÍSTICOS PREMIUM
   cole no final do style.css
========================================================= */

/* brilho elegante na palavra Mística */
.magic-word {
  position: relative;
  display: inline-block;
  color: #f6d76b;
  text-shadow:
    0 0 8px rgba(246, 215, 107, 0.35),
    0 0 18px rgba(246, 215, 107, 0.18);
  animation: magicGlowWord 3.2s ease-in-out infinite;
}

.magic-word::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -8%;
  width: 116%;
  height: 55%;
  transform: translateY(-50%);
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(246, 215, 107, 0.22) 50%,
    rgba(255, 255, 255, 0.06) 65%,
    transparent 100%
  );
  filter: blur(6px);
  opacity: 0;
  animation: magicWordSweep 4.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes magicGlowWord {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(246, 215, 107, 0.26),
      0 0 18px rgba(246, 215, 107, 0.12);
  }
  50% {
    text-shadow:
      0 0 12px rgba(246, 215, 107, 0.5),
      0 0 26px rgba(246, 215, 107, 0.22);
  }
}

@keyframes magicWordSweep {
  0%, 65%, 100% {
    opacity: 0;
    transform: translateY(-50%) translateX(-18px);
  }
  72% {
    opacity: 1;
  }
  86% {
    opacity: 0.9;
    transform: translateY(-50%) translateX(18px);
  }
  92% {
    opacity: 0;
  }
}

/* hero com atmosfera mágica mais sofisticada */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 215, 107, 0.08) 0%, transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 255, 90, 0.08) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

/* garantir que o conteúdo fique por cima */
.hero > .container {
  position: relative;
  z-index: 2;
}

/* brilho mágico sutil no box do slide */
.hero-slider-box {
  position: relative;
}

.hero-slider-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(246, 215, 107, 0.35),
    rgba(41, 255, 90, 0.16),
    rgba(246, 215, 107, 0.28)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
  pointer-events: none;
}

.hero-slider-box::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -35%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(246, 215, 107, 0.18) 50%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
  transform: rotate(12deg);
  filter: blur(8px);
  pointer-events: none;
  animation: heroShineSweep 6.2s ease-in-out infinite;
}

@keyframes heroShineSweep {
  0%, 58%, 100% {
    transform: translateX(-40%) rotate(12deg);
    opacity: 0;
  }
  64% {
    opacity: 1;
  }
  78% {
    transform: translateX(230%) rotate(12deg);
    opacity: 0.95;
  }
  84% {
    opacity: 0;
  }
}

/* efeito de "selo mágico" flutuando próximo ao hero */
.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-visual::before {
  width: 78px;
  height: 78px;
  top: 10%;
  right: -10px;
  border: 1px solid rgba(246, 215, 107, 0.18);
  box-shadow:
    0 0 0 8px rgba(246, 215, 107, 0.03),
    0 0 24px rgba(246, 215, 107, 0.08);
  animation: mysticSealFloat 5.8s ease-in-out infinite;
}

.hero-visual::after {
  width: 10px;
  height: 10px;
  top: 20%;
  right: 20px;
  background: rgba(246, 215, 107, 0.75);
  box-shadow:
    0 0 12px rgba(246, 215, 107, 0.55),
    22px 28px 0 -2px rgba(41, 255, 90, 0.45),
    -18px 42px 0 -3px rgba(255, 255, 255, 0.35);
  animation: sparkOrbit 4.5s ease-in-out infinite;
}

@keyframes mysticSealFloat {
  0%, 100% {
    transform: translateY(0px) scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-8px) scale(1.04) rotate(8deg);
    opacity: 1;
  }
}

@keyframes sparkOrbit {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-6px) translateX(-4px);
    opacity: 1;
  }
}

/* brilho refinado em títulos de seção */
.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, rgba(246, 215, 107, 0.95), transparent);
  box-shadow: 0 0 14px rgba(246, 215, 107, 0.22);
  border-radius: 999px;
  opacity: 0.9;
}

/* hover mais mágico nos cards */
.topic-card,
.testimonial-card,
.trust-card,
.benefit-item,
.faq-item {
  position: relative;
  overflow: hidden;
}

.topic-card::after,
.testimonial-card::after,
.trust-card::after,
.benefit-item::after,
.faq-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    rgba(246, 215, 107, 0.08),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.topic-card:hover::after,
.testimonial-card:hover::after,
.trust-card:hover::after,
.benefit-item:hover::after,
.faq-item:hover::after {
  left: 150%;
}

/* ajuste no mobile para não ficar exagerado */
@media (max-width: 768px) {
  .hero-visual::before {
    width: 58px;
    height: 58px;
    right: 4px;
    top: 8%;
  }

  .hero-visual::after {
    right: 14px;
    top: 18%;
  }

  .hero::before {
    width: 280px;
    height: 280px;
  }

  .hero::after {
    width: 220px;
    height: 220px;
  }
}
/* partículas mágicas criadas pelo JS */
.magic-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(246, 215, 107, 0.8);
  box-shadow:
    0 0 12px rgba(246, 215, 107, 0.7),
    0 0 24px rgba(246, 215, 107, 0.25);
  pointer-events: none;
  z-index: 1;
  animation: magicSparkFloat infinite ease-in-out;
}

.magic-spark::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85),
    rgba(246, 215, 107, 0.2),
    transparent
  );
  border-radius: 999px;
  filter: blur(0.4px);
}

@keyframes magicSparkFloat {
  0%, 100% {
    transform: translateY(0) scale(0.9);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-8px) scale(1.08);
    opacity: 1;
  }
  70% {
    transform: translateY(-3px) scale(0.98);
    opacity: 0.7;
  }
}
/* brilho mágico no botão */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: rotate(25deg);
  animation: magicButtonShine 4s infinite;
}

@keyframes magicButtonShine {
  0% {
    left: -40%;
  }
  40% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
/* notificações de compra */

.purchase-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(8, 14, 11, 0.95);
  border: 1px solid rgba(41,255,90,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  color: white;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9999;
}

.purchase-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.purchase-text strong {
  color: #29ff5a;
  font-weight: 700;
}
.hero-slide img{
transition:transform 0.6s ease;
}

.hero-slide.active img{
transform:scale(1.05);
}
/* Bloquear seleção de texto */
body {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}
.btn-access-info {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0c2c1c;
  background: #f4f6f5;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-access-info:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}