/* ==========================================================================
   PERFUMES COM INTENÇÃO - STYLES MOBILE-FIRST
   Tipografia: Poppins (Títulos & Destaques) + Inter (Corpo & Legibilidade)
   Paleta: 
   - Vinho Noturno: #51152B
   - Âmbar Profundo: #B87525
   - Dourado Ritual: #D6AC59
   - Grafite Profundo: #181618
   ========================================================================== */

:root {
  --color-bg: #141214;
  --color-bg-alt: #0D0B0D;
  --color-wine: #51152B;
  --color-wine-glow: rgba(81, 21, 43, 0.45);
  --color-wine-dark: #2A0B17;
  --color-wine-card: rgba(38, 14, 23, 0.75);
  --color-amber: #B87525;
  --color-amber-dark: #7E4B0F;
  --color-gold: #D6AC59;
  --color-gold-light: #FFF0C8;
  --color-gold-glow: rgba(214, 172, 89, 0.25);
  --color-text-main: #FAF6F0;
  --color-text-muted: #D1C5BD;
  --color-text-subtle: #A3938C;
  --color-card-border: rgba(214, 172, 89, 0.24);
  --color-card-border-glow: rgba(214, 172, 89, 0.55);
  --color-card-bg: linear-gradient(160deg, rgba(46, 17, 28, 0.75) 0%, rgba(19, 8, 14, 0.9) 100%);
  --color-card-hover: linear-gradient(160deg, rgba(62, 22, 36, 0.9) 0%, rgba(26, 10, 18, 0.98) 100%);

  --font-title: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-gold: 0 10px 30px rgba(184, 117, 37, 0.28);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.65);
}

/* Reset e Base Mobile-First */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(81, 21, 43, 0.55) 0%, transparent 65%),
    radial-gradient(circle at 10% 20%, rgba(184, 117, 37, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(81, 21, 43, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(184, 117, 37, 0.22) 0%, transparent 60%);
  background-attachment: scroll;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Tipografia Moderna & Sofisticada */
h1, h2, h3, h4, .title-font {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.25;
  letter-spacing: 0;
}

/* Container Responsivo */
.container {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 780px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 980px;
  }
}

/* Botões CTA com Alto Contraste e Conversão */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 58px;
  padding: 1.05rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(135deg, #FFF0C8 0%, #D6AC59 35%, #B87525 80%, #8F5417 100%);
  color: #12090D;
  box-shadow: 0 4px 25px rgba(214, 172, 89, 0.4), 0 0 0 1px rgba(255, 240, 200, 0.5) inset;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(25deg);
  animation: shineLoop 3.5s infinite;
}

@keyframes shineLoop {
  0% { left: -70%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

.cta-button:hover, .cta-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px rgba(214, 172, 89, 0.6), 0 0 0 1px #FFF0C8 inset;
}

.cta-button:active {
  transform: translateY(1px) scale(0.99);
}

.cta-button.pulse-anim {
  animation: gentlePulse 2.8s infinite;
}

@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 4px 22px rgba(214, 172, 89, 0.35), 0 0 0 1px rgba(255, 240, 200, 0.4) inset;
  }
  50% {
    box-shadow: 0 8px 34px rgba(214, 172, 89, 0.7), 0 0 22px rgba(184, 117, 37, 0.45), 0 0 0 2px rgba(255, 240, 200, 0.9) inset;
  }
}

.cta-secondary {
  background: linear-gradient(135deg, #2B0F19 0%, #17070F 100%);
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.cta-secondary:hover {
  background: linear-gradient(135deg, #3E1624 0%, #240E16 100%);
  box-shadow: 0 6px 22px rgba(214, 172, 89, 0.35);
}

/* Linha decorativa refinada */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem auto;
  width: 100%;
  max-width: 220px;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.gold-divider-icon {
  color: var(--color-gold);
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Badges e Selos */
.kicker {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 16px rgba(214, 172, 89, 0.5);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-wine {
  background-color: rgba(81, 21, 43, 0.85);
  color: var(--color-gold-light);
  border: 1px solid rgba(214, 172, 89, 0.45);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge-gold {
  background: linear-gradient(135deg, #FFF0C8, #D6AC59, #B87525);
  color: #12090D;
  box-shadow: 0 4px 15px rgba(214, 172, 89, 0.4);
}

/* Seções Gerais */
.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
}

@supports (content-visibility: auto) {
  main > .section {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}

.section-title {
  font-size: clamp(1.65rem, 5.2vw, 2.35rem);
  text-align: center;
  margin-bottom: 0.85rem;
  letter-spacing: 0;
}

.highlight, 
.highlight-gold,
.hero-headline .highlight,
.section-title .highlight {
  background: linear-gradient(135deg, #FFF8E7 0%, #F3D288 30%, #D6AC59 65%, #B87525 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: 800;
  filter: drop-shadow(0 2px 14px rgba(214, 172, 89, 0.4));
}

.highlight-underline {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #FFF8E7 0%, #F3D288 40%, #D6AC59 75%, #B87525 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #D6AC59 0%, #F3D288 50%, #B87525 100%);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(214, 172, 89, 0.7);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 2rem auto;
}

/* ==========================================================================
   DOBRA 1: PROMESSA (HERO)
   ========================================================================== */
.hero-section {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
}

.hero-headline {
  font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1.1rem;
  letter-spacing: 0;
}

.hero-subheadline {
  font-size: clamp(0.98rem, 3.4vw, 1.15rem);
  color: #FFFFFF;
  line-height: 1.65;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-image-wrapper {
  margin: 1.5rem auto 1.75rem auto;
  max-width: 520px;
  position: relative;
  background: transparent;
  border: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85));
}

.hero-support-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  margin-bottom: 1.75rem;
  text-align: left;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.hero-support-text strong {
  color: var(--color-gold);
}

.trust-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  color: var(--color-text-subtle);
  font-size: 0.84rem;
}

.trust-badge-row svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   REGRA 3: CARROSSÉIS ANIMADOS CONTÍNUOS DE ALTA VELOCIDADE (MARQUEE)
   ========================================================================== */
.marquee-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  user-select: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  animation: marqueeContinuous 16s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-card {
  flex: 0 0 240px;
  width: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1C0B12;
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.marquee-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 35px rgba(214, 172, 89, 0.25);
}

.marquee-card img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  display: block;
  background: #10070B;
}

@keyframes marqueeContinuous {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================================
   DOBRA 2: TEMAS / CONDIÇÕES COBERTAS (GRID 8 ITENS)
   ========================================================================== */
.grid-intro-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.grid-8 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  margin-bottom: 2rem;
}

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

.grid-item-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.grid-item-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-card-border-glow);
  background: var(--color-card-hover);
}

.bullet-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4A1527 0%, #200A13 100%);
  border: 1px solid rgba(214, 172, 89, 0.45);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.grid-item-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.grid-item-content p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   DOBRA 3: POR QUE É VALIOSO (6 BENEFÍCIOS)
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

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

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

.benefit-box {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefit-box:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

.benefit-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4A1527 0%, #1A0710 100%);
  border: 1px solid rgba(214, 172, 89, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 12px rgba(214, 172, 89, 0.15) inset;
}

.benefit-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 0.4rem;
}

.benefit-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   DOBRA 4: DOR / FALTA DE ORGANIZAÇÃO
   ========================================================================== */
.pain-banner {
  background: linear-gradient(135deg, #51152B 0%, #2A0B17 100%);
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  padding: 1.6rem 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pain-banner h3 {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  color: var(--color-gold-light);
  line-height: 1.35;
  font-weight: 700;
}

.pain-banner h3 strong {
  color: #FFFFFF;
  font-weight: 800;
}

.pain-highlight-card {
  background: radial-gradient(circle at 50% 0%, rgba(81, 21, 43, 0.75) 0%, rgba(20, 8, 14, 0.98) 100%);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 117, 37, 0.2) inset;
  position: relative;
}

.pain-card-title {
  font-size: clamp(1.3rem, 4.5vw, 1.8rem);
  margin-bottom: 1.1rem;
  color: #FFF3D4;
}

.pain-card-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   DOBRA 6: IDEAL PARA VOCÊ QUE DESEJA (GRID 6 - DESIGN LUXO REFINADO)
   ========================================================================== */
.ideal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.ideal-card {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ideal-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-card-border-glow);
  box-shadow: 0 10px 30px rgba(81, 21, 43, 0.4), 0 0 15px rgba(214, 172, 89, 0.15) inset;
}

.ideal-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4A1527 0%, #1A0710 100%);
  border: 1px solid rgba(214, 172, 89, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(214, 172, 89, 0.2) inset;
}

.ideal-card-text h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 0.3rem;
}

.ideal-card-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   DOBRA 7: CARD TUDO O QUE VOCÊ VAI RECEBER
   ========================================================================== */
.bundle-overview-card {
  background: linear-gradient(160deg, #2D101C 0%, #15050C 100%);
  border: 1.8px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.4rem;
  box-shadow: var(--shadow-card), 0 0 35px rgba(184, 117, 37, 0.25);
  position: relative;
  text-align: center;
}

.bundle-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.bundle-image {
  max-width: 420px;
  margin: 1.25rem auto 1.5rem auto;
}

.bundle-bullets-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bundle-bullets-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.94rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

.bullet-check-icon {
  color: #38E07A;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 800;
}

.confirm-grid-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  text-align: left;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(214, 172, 89, 0.25);
}

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

.confirm-item {
  background: rgba(81, 21, 43, 0.4);
  border: 1px solid rgba(214, 172, 89, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.confirm-item strong {
  color: var(--color-gold-light);
}

/* ==========================================================================
   DOBRA 8: BÔNUS EXCLUSIVOS (GRID 4 - 512x512)
   ========================================================================== */
.bonus-badge-top {
  display: block;
  width: fit-content;
  margin: 0 auto 1.5rem auto;
}

.bonus-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .bonus-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

.bonus-card-item {
  background: linear-gradient(160deg, #28101A 0%, #15060D 100%);
  border: 1.5px solid var(--color-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.bonus-card-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

.bonus-img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #11050B;
}

.bonus-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-content-box {
  padding: 1.35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bonus-stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  letter-spacing: 3px;
}

.bonus-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF3D4;
  margin-bottom: 0.45rem;
}

.bonus-desc {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}

.bonus-price-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(81, 21, 43, 0.5);
  border: 1px solid rgba(214, 172, 89, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.15rem;
  font-size: 0.9rem;
  font-family: var(--font-title);
}

.bonus-price-old {
  text-decoration: line-through;
  color: var(--color-text-subtle);
  font-weight: 500;
}

.bonus-price-free {
  color: var(--color-gold);
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   DOBRA 9: OFERTA / PLANOS (ÂNCORA DA PÁGINA)
   REGRA 1: Básico SEM bônus. Completo com itens principais (✓) + bônus (🎁)
   REGRA 2: Plano Básico SEMPRE é PRIMEIRO que o Completo
   ========================================================================== */
.pricing-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at 50% 50%, rgba(81, 21, 43, 0.45) 0%, transparent 80%);
}

.plans-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 2rem;
}

@media (min-width: 860px) {
  .plans-wrapper {
    flex-direction: row;
    align-items: stretch;
  }
}

/* Card 1: PLANO BÁSICO (PRIMEIRO NA HIERARQUIA CONFORME REGRA 2) */
.plan-card-basic {
  flex: 1;
  background: linear-gradient(160deg, #200D15 0%, #12060C 100%);
  border: 1.5px solid rgba(214, 172, 89, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  position: relative;
}

/* Card 2: PLANO COMPLETO (SEGUNDO NA HIERARQUIA, DESTACADO COM MAIS VENDIDO) */
.plan-card-complete {
  flex: 1.15;
  background: linear-gradient(160deg, #3A1224 0%, #1D0813 100%);
  border: 2.5px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 50px rgba(184, 117, 37, 0.4), 0 0 0 1px rgba(255, 240, 200, 0.4) inset;
  position: relative;
}

.plan-top-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFF0C8, #D6AC59, #B87525);
  color: #12090D;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(214, 172, 89, 0.55);
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.plan-title {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.plan-card-complete .plan-title {
  color: #FFF3D4;
  font-size: 1.75rem;
}

.plan-subtitle {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.plan-preview-image {
  max-width: 230px;
  margin: 0.85rem auto 1.1rem auto;
}

.plan-price-block {
  text-align: center;
  margin: 1.25rem 0 1.6rem 0;
  padding: 1.15rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 172, 89, 0.2);
}

.price-anchor {
  font-size: 0.98rem;
  color: var(--color-text-subtle);
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.25rem;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-title);
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #FFF3D4;
  line-height: 1;
}

.price-installments {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  display: block;
}

/* Bullets da Oferta (Regra 1) */
.plan-bullets {
  list-style: none;
  margin-bottom: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  flex-grow: 1;
}

.plan-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text-main);
}

.bullet-icon-check {
  color: #38E07A;
  font-size: 1.05rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.bullet-icon-gift {
  color: #FFB703;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.bonus-text-highlight {
  color: var(--color-gold-light);
  font-weight: 600;
}

.pricing-closing-text {
  text-align: center;
  font-size: 0.94rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 2.2rem auto 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   DOBRA 10: GARANTIA (30 DIAS)
   ========================================================================== */
.guarantee-card {
  background: linear-gradient(160deg, #2A101C 0%, #15060E 100%);
  border: 1.8px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-card), 0 0 35px rgba(184, 117, 37, 0.2);
}

.guarantee-seal-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.35rem auto;
}

.guarantee-title {
  font-size: 1.65rem;
  color: #FFF3D4;
  margin-bottom: 0.85rem;
}

.guarantee-text {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   DOBRA 11: COMO FUNCIONA O ACESSO (PASSO A PASSO)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.step-box {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  position: relative;
  text-align: left;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFF0C8, #D6AC59, #B87525);
  color: #12090D;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(214, 172, 89, 0.4);
}

.step-box h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 0.45rem;
}

.step-box p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.step-checklist {
  list-style: none;
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-checklist li {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.step-checklist li svg {
  color: #38E07A;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ==========================================================================
   DOBRA 12: F.A.Q. (10 DÚVIDAS EM ACORDEÃO)
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-card-bg);
  border: 1.5px solid var(--color-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item.active {
  border-color: var(--color-gold);
  background: var(--color-card-hover);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.35rem;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.35rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 380px;
  padding: 0 1.35rem 1.35rem 1.35rem;
}

/* ==========================================================================
   DOBRA 13: RODAPÉ PROFISSIONAL
   ========================================================================== */
.footer {
  background: #0A0407;
  border-top: 1px solid rgba(214, 172, 89, 0.25);
  padding: 3.5rem 1.25rem 2.2rem 1.25rem;
  font-size: 0.8rem;
  color: var(--color-text-subtle);
  line-height: 1.7;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.footer-disclaimer {
  max-width: 680px;
  margin: 1.25rem auto;
  opacity: 0.85;
}

.footer-copyright {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

/* Suporte Touch e Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .marquee-track {
    animation-duration: 40s;
  }
  .cta-button::after {
    animation: none;
  }
}

@media (min-width: 900px) {
  body {
    background-attachment: fixed;
  }
}
