/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --verde: #39B574;
  --verde-escuro: #177444;
  --roxo: #5B21B6;
  --roxo-escuro: #3B0764;
  --dourado: #D97706;
  --fundo-pagina: #FDF8F0;
  --fundo-card: #FFFFFF;
  --texto-principal: #1f1f2e;
  --texto-secundario: #6B7280;
  --vermelho-alerta: #E8833A;
  --borda: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--fundo-pagina);
  color: var(--texto-principal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
  background: #5B21B6;
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  width: 100%;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  background: #3a6291;
  padding: 64px 0 72px;
  text-align: center;
}

.collection-badge {
  display: inline-block;
  background: var(--dourado);
  color: #fff;
  padding: 8px 26px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.25); }
  50%       { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(217, 119, 6, 0); }
}

.headline {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 auto 32px;
  max-width: 820px;
}

.image-wrapper {
  margin: 0 auto 32px;
  max-width: 650px;
}

.mockup-img {
  width: 100%;
}

.hero-badges {
  margin-bottom: 28px;
}

.hero-badges-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.hero-badges-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.subheadline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 640px;
}

/* ============================================
   CTA GLOBAL
============================================ */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  width: 100%;
}

.cta-button {
  display: inline-block;
  background: var(--verde);
  color: #fff;
  padding: 18px 48px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: cta-float 2.8s ease-in-out infinite;
  box-shadow: 0 8px 28px rgba(57, 181, 116, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(57, 181, 116, 0.55);
  animation-play-state: paused;
}

@keyframes cta-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 28px rgba(57, 181, 116, 0.4);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(57, 181, 116, 0.58);
  }
}

.hero-keyword-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.strip-dot {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
}

.cta-price {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.cta-price strong {
  color: #fff;
  font-size: 1.1rem;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

/* ── HERO TRUST BADGES ── */
.trust-badges-hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

@media (max-width: 480px) {
  .trust-badges-hero { gap: 14px; padding-top: 12px; }
  .trust-item { font-size: 0.62rem; gap: 5px; }
  .trust-icon-wrap { width: 34px; height: 34px; }
  .trust-item svg { width: 16px; height: 16px; }
}

.cta-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}

.cta-price-old {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.cta-price-old s {
  color: rgba(255, 255, 255, 0.5);
}

.cta-price-current {
  font-size: 2.4rem;
  font-weight: 900;
  color: #F0D9B8;
  line-height: 1.1;
  margin-top: 2px;
}

.cta-price-urgencia {
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFD060;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* ============================================
   SECTION TITLE GLOBAL
============================================ */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--roxo);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.25;
}

.underline-highlight {
  text-decoration: underline;
  text-decoration-color: var(--dourado);
  text-underline-offset: 5px;
}

.headline-highlight {
  color: #FFE000;
}

.headline-spacer {
  display: block;
  height: 8px;
}

/* ============================================
   CAROUSEL SECTION
============================================ */
.carousel-section {
  background: #fff;
  padding: 64px 0;
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  margin-bottom: 36px;
}

.carousel-subtitle {
  color: var(--texto-secundario);
  font-size: 0.9rem;
  margin-top: -18px;
  font-weight: 500;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}

.track-reverse {
  animation: scroll-right 28s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.carousel-item {
  flex-shrink: 0;
  width: 230px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ============================================
   HOW IT WORKS — SIMPLES ASSIM
============================================ */
.how-section {
  background: var(--fundo-pagina);
  padding: 72px 0;
  text-align: center;
}

.how-title {
  margin-bottom: 12px;
}

.how-subtitle {
  color: var(--texto-secundario);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 500;
}

.how-subtitle strong {
  color: var(--texto-principal);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 36px;
}

.how-step {
  flex: 1;
  background: var(--fundo-card);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--borda);
  text-align: center;
}

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--roxo);
  color: #fff;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.how-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.how-step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--texto-principal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 0.84rem;
  color: var(--texto-secundario);
  line-height: 1.65;
}

.how-step-desc strong {
  color: var(--texto-principal);
}

.how-arrow {
  font-size: 1.8rem;
  color: var(--roxo);
  flex-shrink: 0;
  margin-top: 72px;
  opacity: 0.5;
}

.how-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--fundo-card);
  border-left: 5px solid var(--verde);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.how-note-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.how-note p {
  font-size: 0.88rem;
  color: var(--texto-principal);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials-section {
  background: var(--fundo-pagina);
  padding: 64px 0;
  overflow: hidden;
}

.testimonial-item {
  width: 280px;
  height: auto;
  background: transparent;
}

.testimonial-item img {
  object-fit: contain;
  height: auto;
  width: 100%;
  border-radius: 12px;
}

#track-depoimentos {
  --testimonials-distance: -50%;
  animation: scroll-testimonials 38s linear infinite;
  align-items: flex-start;
}

@keyframes scroll-testimonials {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--testimonials-distance)); }
}

/* ============================================
   DEMONSTRATIVOS SECTION
============================================ */
.demonstrativos-section {
  background: var(--fundo-pagina);
  padding: 24px 0 64px;
}

.demonstrativos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.demonstrativo-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.demonstrativo-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .demonstrativos-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SHOWCASE SECTION
============================================ */
.showcase-section {
  background: #fff;
  padding: 72px 0;
}

.showcase-container {
  text-align: center;
}

.showcase-card {
  background: var(--fundo-pagina);
  border-radius: 16px;
  padding: 36px 44px;
  border: 1px solid var(--borda);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

.artist-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.artist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--texto-principal);
  line-height: 1.4;
}

.artist-bullet {
  color: var(--roxo);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   FEATURES SECTION
============================================ */
.features-section {
  background: var(--fundo-pagina);
  padding: 28px 0 72px;
  text-align: center;
}

.features-subtitle {
  color: var(--texto-secundario);
  font-size: 0.95rem;
  margin-top: -18px;
  margin-bottom: 40px;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.feature-card {
  background: var(--fundo-card);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.055);
  border: 1px solid var(--borda);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.feature-text h3 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--texto-principal);
  text-transform: uppercase;
  line-height: 1.35;
}

.keywords-box {
  background: var(--fundo-card);
  border-left: 5px solid var(--roxo);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.keywords-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.keywords-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.keywords-box p {
  font-size: 0.9rem;
  color: var(--texto-principal);
  line-height: 1.7;
}

/* ============================================
   URGENCY SECTION
============================================ */
.urgency-section {
  background: #3a6291;
  padding: 72px 0;
}

.urgency-container {
  max-width: 720px;
}

.urgency-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 52px 44px;
  text-align: center;
}

.urgency-mockup {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 28px auto;
  border-radius: 16px;
}

.promo-tag {
  display: inline-block;
  background: var(--vermelho-alerta);
  color: #fff;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 26px;
}

.urgency-card h3 {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.urgency-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.payment-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================
   DELIVERABLES SECTION
============================================ */
.deliverables-section {
  background: #fff;
  padding: 72px 0;
  text-align: center;
}

.deliverables-box {
  background: var(--fundo-pagina);
  border: 2px solid var(--verde);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 700px;
  margin: 0 auto;
}

.deliverables-tag {
  display: inline-block;
  background: var(--verde);
  color: #fff;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 32px;
}

.deliverables-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 36px;
}

.deliverables-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto-principal);
  line-height: 1.4;
}

.check-icon {
  color: var(--verde);
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus-transition {
  margin-top: 64px;
  text-align: center;
}

.bonus-transition h3 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--roxo);
  line-height: 1.3;
  margin-bottom: 14px;
}

.bonus-transition p {
  color: var(--texto-secundario);
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--dourado) 0%, #f59e0b 100%);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* ============================================
   BONUS SECTION
============================================ */
.bonus-section {
  background: var(--fundo-pagina);
  padding: 72px 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}

.bonus-card {
  background: var(--fundo-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--borda);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
}

.bonus-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
}

.bonus-img-placeholder {
  background: #f3f4f6;
  overflow: hidden;
}

.bonus-card-wide .bonus-img-placeholder {
  width: 290px;
  flex-shrink: 0;
}

.bonus-img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-content {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bonus-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--roxo);
  text-transform: uppercase;
  line-height: 1.38;
}

.bonus-desc {
  font-size: 0.84rem;
  color: var(--texto-secundario);
  line-height: 1.6;
  flex: 1;
}

.bonus-value {
  font-size: 0.84rem;
  color: var(--texto-secundario);
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid var(--borda);
}

.bonus-hoje {
  margin-top: 10px;
  display: block;
  text-align: center;
  background: #e53935;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 50px;
}

.riscado {
  text-decoration: line-through;
  opacity: 0.55;
}

.gratis {
  color: var(--verde);
  font-size: 1rem;
  font-weight: 800;
}

.total-value-box {
  background: var(--fundo-card);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
  max-width: 380px;
  margin: 40px auto 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 2px solid var(--verde);
}

.total-label {
  font-size: 0.9rem;
  color: var(--texto-secundario);
  font-weight: 600;
  margin-bottom: 6px;
}

.total-riscado {
  margin-bottom: 6px;
}

.riscado-grande {
  font-size: 1.3rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 700;
}

.total-gratis {
  font-size: 1.15rem;
  color: var(--verde);
  font-weight: 600;
}

.total-gratis strong {
  font-size: 1.25rem;
}

/* ============================================
   PLANS SECTION
============================================ */
.plans-section {
  --plans-reveal-duration: 0.45s;
}

.plan-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--plans-reveal-duration) ease, transform var(--plans-reveal-duration) ease;
}

.plan-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.plan-card:nth-child(2) {
  transition-delay: 0.08s;
}

.plans-section {
  background: #fff;
  padding: 72px 0;
}

.plans-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 44px;
}

.promo-tag-red {
  display: inline-block;
  background: var(--dourado);
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.plans-divider {
  border: none;
  border-top: 2px solid var(--borda);
  max-width: 280px;
  margin: 26px auto 0;
}

.plans-container {
  max-width: 900px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.plan-card {
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
}

.plan-basic {
  background: #fff;
  border: 2px solid var(--borda);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
}

.plan-complete {
  background: #3a6291;
  box-shadow: 0 16px 56px rgba(45, 27, 105, 0.45);
  padding-bottom: 4px;
}

.tag-bestseller {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dourado);
  color: #fff;
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.promo-tag-red-inner {
  background: var(--dourado);
  color: #fff;
  text-align: center;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 12px;
}

.plan-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--texto-principal);
  text-align: center;
  margin-bottom: 22px;
}

.text-white {
  color: #fff !important;
}

.plan-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 26px;
}

.tag-2x {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.plan-subtitle {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--texto-secundario);
  margin-bottom: 14px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.38;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.plan-complete .plan-features li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.missed-item {
  font-size: 0.82rem !important;
  color: #9ca3af !important;
  opacity: 0.8;
}

.gift-item {
  padding-left: 4px;
  font-size: 0.84rem !important;
}

.plan-price-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.price-complete {
  background: rgba(255, 255, 255, 0.1);
}

.price-old {
  font-size: 0.78rem;
  color: #e53935;
  font-weight: 600;
  text-decoration: line-through;
}

.price-current {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--texto-principal);
  line-height: 1;
}

.plan-complete .price-current {
  color: #fff;
}

.price-installments {
  font-size: 0.78rem;
  color: var(--texto-secundario);
  font-weight: 500;
}

.plan-complete .price-installments {
  color: rgba(255, 255, 255, 0.65);
}

.price-economy {
  font-size: 0.8rem;
  color: var(--verde);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.green-dot {
  font-size: 1.3rem;
  line-height: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-btn:hover {
  transform: translateY(-3px);
}

.btn-basic {
  background: #f3f4f6;
  color: var(--texto-principal);
  border: 2px solid #d1d5db;
}

.btn-basic:hover {
  background: #e5e7eb;
}

.btn-complete {
  background: var(--verde);
  color: #fff;
  box-shadow: 0 6px 26px rgba(57, 181, 116, 0.48);
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.plan-popular-alert {
  margin-top: 26px;
  text-align: center;
  background: rgba(57, 181, 116, 0.07);
  border: 1.5px dashed rgba(57, 181, 116, 0.35);
  border-radius: 12px;
  padding: 14px 16px 10px;
}

.popular-alert-text {
  font-size: 0.88rem;
  color: var(--texto-principal);
  font-weight: 700;
  margin-bottom: 10px;
}

.popular-alert-text strong {
  color: #39B574;
  font-size: 1rem;
}

.arrow-down-circle {
  display: flex;
  justify-content: center;
  animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.animated-circle {
  animation: wobble-circle 1.8s ease-in-out infinite alternate;
}

.circle-path, .circle-path-delay {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.draw-active .circle-path {
  animation: drawCircle 1.5s ease-out forwards;
}

.draw-active .circle-path-delay {
  animation: drawCircle 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes wobble-circle {
  0%   { transform: scale(1) rotate(0deg); opacity: 0.9; }
  100% { transform: scale(1.06, 0.96) rotate(2deg); opacity: 1; }
}

.hotmart-seal {
  display: block;
  margin: 2px auto 2px;
  max-width: 240px;
}

.leave-warning {
  text-align: center;
  font-size: 0.8rem;
  color: #FFD166;
  margin: 28px 0 0;
  padding: 0 8px;
  line-height: 1.4;
}


/* ============================================
   GUARANTEE SECTION
============================================ */
.guarantee-section {
  background: var(--fundo-pagina);
  padding: 72px 0;
}

.guarantee-container {
  display: flex;
  align-items: center;
  gap: 52px;
}

.guarantee-img-col {
  flex-shrink: 0;
}

.guarantee-seal {
  width: 190px;
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantee-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--roxo);
  text-transform: uppercase;
  line-height: 1.25;
}

.guarantee-content p {
  font-size: 0.94rem;
  color: var(--texto-principal);
  line-height: 1.7;
}

.guarantee-risk {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--verde) !important;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
  background: #fff;
  padding: 72px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--borda);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--fundo-pagina);
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--texto-principal);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-item.open .faq-question {
  background: var(--roxo);
  color: #fff;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 16px 22px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--texto-secundario);
  line-height: 1.7;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #2a4d75;
  color: rgba(255, 255, 255, 0.5);
  padding: 44px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer p {
  font-size: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.72rem !important;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 768px)
============================================ */
@media (max-width: 768px) {
  .headline {
    font-size: 1.55rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .artist-list {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
    max-width: 480px;
  }

  .how-step {
    width: 100%;
  }

  .how-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }

  .hero-keyword-strip {
    flex-direction: column;
    gap: 6px;
  }

  .strip-dot {
    display: none;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card-wide {
    flex-direction: column;
  }

  .bonus-card-wide .bonus-img-placeholder {
    width: 100%;
    height: 200px;
  }

  .guarantee-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .urgency-card {
    padding: 36px 22px;
  }

  .urgency-card h3 {
    font-size: 1.35rem;
  }


  .deliverables-box {
    padding: 36px 24px;
  }

  .showcase-card {
    padding: 28px 24px;
  }

  .keywords-box {
    padding: 22px 20px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 480px)
============================================ */
@media (max-width: 480px) {
  .hero-section {
    padding: 44px 0 54px;
  }

  .headline {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 16px 28px;
    font-size: 0.88rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .collection-badge {
    font-size: 0.7rem;
    padding: 7px 18px;
  }

  .urgency-card {
    padding: 28px 16px;
  }

  .payment-icons {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .plan-card {
    padding: 28px 18px;
  }

  .bonus-content {
    padding: 18px 18px;
  }
}
