/* =====================================================
   style-three.css — "Cosmos & Oráculo" v3
   Base: style-two.css + efeitos místicos
   ===================================================== */

:root {
  --bg:        #060010;
  --bg2:       #0E0025;
  --bg3:       #16003A;
  --gold:      #FFD700;
  --gold2:     #E8B84B;
  --violet:    #9B30FF;
  --red:       #FF2060;
  --white:     #FFFFFF;
  --offwhite:  #EDE0FF;
  --muted:     #C8B0F0;
}

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

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--bg);
  color: var(--offwhite);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#starsCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

section, footer, nav { position: relative; z-index: 1; }

.modal-backdrop { z-index: 1040 !important; }
.modal          { z-index: 1055 !important; }
.modal-dialog   { z-index: 1056 !important; }

/* Modal dark */
.modal-dark {
  background-color: var(--bg2);
  color: var(--offwhite);
  border: 1px solid var(--gold);
}
.modal-dark .btn-close { filter: invert(1); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =====================================================
   KEYFRAMES GLOBAIS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 40px rgba(255,32,96,0.5), 0 0 0 0 rgba(255,32,96,0.3); }
  50%       { box-shadow: 0 6px 60px rgba(255,32,96,0.8), 0 0 0 14px rgba(255,32,96,0); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}

@keyframes borderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

@keyframes runeFloat {
  0%         { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  8%         { opacity: 0.6; }
  92%        { opacity: 0.4; }
  100%       { transform: translateY(-15vh)  rotate(280deg); opacity: 0; }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.12); opacity: 0.7; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes photoPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,215,0,0.12), 0 0 40px rgba(255,215,0,0.25); }
  50%       { box-shadow: 0 0 0 12px rgba(255,215,0,0.06), 0 0 65px rgba(255,215,0,0.45); }
}

@keyframes btnShine {
  0%         { left: -80%; }
  35%, 100%  { left: 160%; }
}

@keyframes urgencyBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.75; }
}

/* =====================================================
   NEBULA ORBS (CSS, dentro das sections)
   ===================================================== */
.nebula-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.nebula-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orbPulse 10s ease-in-out infinite;
}
.nebula-orb.orb-v { background: radial-gradient(circle, rgba(155,48,255,0.18), transparent 70%); }
.nebula-orb.orb-r { background: radial-gradient(circle, rgba(255,32,96,0.12),  transparent 70%); }
.nebula-orb.orb-b { background: radial-gradient(circle, rgba(0,120,255,0.10),  transparent 70%); }

/* =====================================================
   RUNAS FLUTUANTES (hero)
   ===================================================== */
.mystic-runes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.rune {
  position: absolute;
  bottom: -60px;
  color: rgba(255,215,0,0.18);
  animation: runeFloat linear infinite;
  user-select: none;
}
.rune.r1 { left:  6%; font-size: 22px; animation-duration: 13s; animation-delay:  0s; }
.rune.r2 { left: 16%; font-size: 14px; animation-duration: 18s; animation-delay: -5s; }
.rune.r3 { left: 30%; font-size: 18px; animation-duration: 15s; animation-delay: -9s; }
.rune.r4 { left: 55%; font-size: 12px; animation-duration: 20s; animation-delay: -3s; }
.rune.r5 { left: 72%; font-size: 20px; animation-duration: 11s; animation-delay: -7s; }
.rune.r6 { left: 85%; font-size: 16px; animation-duration: 16s; animation-delay: -2s; }
.rune.r7 { left: 92%; font-size: 10px; animation-duration: 22s; animation-delay:-12s; }

/* =====================================================
   WAVE DIVIDERS
   ===================================================== */
.wave-top, .wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* =====================================================
   HERO
   ===================================================== */
.hero-two {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(120,0,255,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(255,32,96,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0E0025 0%, #060010 100%);
  overflow: hidden;
}

/* Aurora animada atrás do hero */
.hero-two::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 25% at 25% 15%, rgba(155,48,255,0.22), transparent),
    radial-gradient(ellipse 55% 25% at 75% 85%, rgba(255,32,96,0.12), transparent);
  animation: auroraShift 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes auroraShift {
  0%   { transform: scale(1)    rotate(0deg);  opacity: 0.7; }
  50%  { transform: scale(1.12) rotate(4deg);  opacity: 1;   }
  100% { transform: scale(1)    rotate(0deg);  opacity: 0.7; }
}

.hero-content { padding-right: 20px; position: relative; z-index: 2; }
.card-col      { position: relative; z-index: 2; }

/* Animações de entrada do hero */
.hero-eyebrow    { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.hero-title      { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero-divider    { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero-price-block{ animation: fadeUp 0.7s ease both; animation-delay: 0.52s; }
.hero-response   { animation: fadeUp 0.7s ease both; animation-delay: 0.64s; }
.btn-hero-cta    { animation: fadeUp 0.7s ease both, ctaPulse 2.5s 1.5s ease-in-out infinite; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid rgba(255,215,0,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  background: rgba(255,215,0,0.06);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(155,48,255,0.5);
}

.hero-title-highlight {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255,215,0,0.7), 0 0 80px rgba(255,215,0,0.3);
  display: block;
  font-size: 96px;
  line-height: 0.95;
}

.hero-title-today {
  color: var(--white);
  font-size: 54px;
  display: block;
  opacity: 0.9;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
  border-radius: 2px;
}

.hero-price-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 4px 0 22px;
}

.hero-price-old {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

.hero-price-value {
  font-family: 'Cinzel', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,215,0,0.5);
  line-height: 1;
}

.hero-price-sub {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.hero-response {
  font-size: 15px;
  color: var(--offwhite);
  margin-bottom: 36px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  display: inline-block;
}

.hero-response strong { color: var(--white); }
.hero-response span   { color: var(--muted); font-size: 13px; }

/* Botão CTA — shine sweep */
.btn-hero-cta {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, #FF2060 0%, #CC003A 100%);
  padding: 22px 30px;
  border-radius: 14px;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(255,32,96,0.55);
  transition: transform 0.2s ease, filter 0.2s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-hero-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: btnShine 3.5s ease-in-out infinite;
  pointer-events: none;
}

.btn-hero-cta:hover {
  color: #fff;
  transform: scale(1.05) translateY(-2px);
  filter: brightness(1.15);
}

/* Carta de Tarot */
.tarot-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  animation: cardFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.45)) drop-shadow(0 0 60px rgba(155,48,255,0.25));
}

.tarot-card-border { animation: borderPulse 3.5s ease-in-out infinite; }

@media (max-width: 991px) {
  .hero-two             { padding: 60px 0 50px; text-align: center; }
  .hero-title           { font-size: 52px; }
  .hero-title-highlight { font-size: 68px; }
  .hero-title-today     { font-size: 40px; }
  .hero-content         { order: 2; padding-right: 0; }
  .card-col             { order: 1; margin-bottom: 20px; }
  .hero-divider         { margin: 16px auto; }
  .hero-price-block     { align-items: center; margin: 4px auto 18px; }
  .hero-response        { display: block; text-align: left; margin-bottom: 24px; }
  .tarot-card-wrap      { width: 180px; }
}

@media (max-width: 575px) {
  .hero-two             { padding: 24px 0 40px; }
  .hero-title           { font-size: 38px; }
  .hero-title-highlight { font-size: 50px; }
  .hero-title-today     { font-size: 32px; }
  .hero-price-value     { font-size: 44px; }
  .tarot-card-wrap      { width: 200px; }
  .card-col             { margin-bottom: 16px; }
  .hero-eyebrow         { display: none; }
  .hero-divider         { display: none; }
  .btn-hero-cta {
    width: 88%;
    font-size: 19px;
    padding: 18px 20px;
  }
}

/* =====================================================
   COMO FUNCIONA
   ===================================================== */
.steps-two {
  background: linear-gradient(180deg, #0E0025 0%, #160038 100%);
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(155,48,255,0.4);
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 56px;
}

.step-card-two {
  background: linear-gradient(145deg, #16003A 0%, #0E0025 100%);
  border: 1px solid rgba(255,215,0,0.25);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  padding: 36px 20px 28px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card-two::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.step-card-two:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(155,48,255,0.3), 0 0 0 1px rgba(255,215,0,0.4);
  border-color: var(--gold);
}

.step-num-bg {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 80px;
  font-weight: 700;
  color: rgba(255,215,0,0.05);
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
  user-select: none;
}

.step-icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: radial-gradient(circle, rgba(255,215,0,0.18) 0%, rgba(255,215,0,0.04) 100%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px rgba(255,215,0,0.07),
    0 0 24px rgba(255,215,0,0.35),
    inset 0 0 18px rgba(255,215,0,0.08);
  transition: box-shadow 0.3s;
}

.step-card-two:hover .step-icon-wrap {
  box-shadow:
    0 0 0 8px rgba(255,215,0,0.1),
    0 0 40px rgba(255,215,0,0.55),
    inset 0 0 24px rgba(255,215,0,0.12);
}

.step-circle-num {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  text-shadow:
    0 0 16px rgba(255,215,0,0.9),
    0 0 40px rgba(255,215,0,0.5),
    0 0 70px rgba(255,215,0,0.2);
  line-height: 1;
  user-select: none;
}

.step-num-label {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

.step-text {
  font-size: 19px !important;
  color: var(--offwhite);
  line-height: 1.7;
  margin: 0;
}

.gold-text { font-weight: 800; color: var(--gold); }
.step-em   { color: var(--muted); font-style: italic; }

.btn-violeta {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, #7B00FF 0%, #9B30FF 100%);
  padding: 18px 48px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(155,48,255,0.55);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-violeta::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: btnShine 4s ease-in-out infinite;
  pointer-events: none;
}

.btn-violeta:hover {
  background: linear-gradient(135deg, #9B30FF 0%, #C060FF 100%);
  box-shadow: 0 10px 60px rgba(155,48,255,0.8);
  transform: scale(1.04) translateY(-2px);
  color: #fff;
}

@media (max-width: 768px) {
  .step-col      { padding: 6px; }
  .step-card-two { padding: 24px 14px 20px; }
  .step-text     { font-size: 13px; }
  .section-title { font-size: 28px; }
  .btn-violeta   { font-size: 16px; padding: 15px 28px; }
}

/* =====================================================
   DEPOIMENTOS
   ===================================================== */
.testimonials-two {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #060010 0%, #0A001E 100%);
  text-align: center;
  overflow: hidden;
}

.tl-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}

.tl-photo {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--gold);
  animation: photoPulse 3.5s ease-in-out infinite;
}

.tl-stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 5px;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.tl-quote {
  font-size: 26px;
  font-style: italic;
  color: var(--white);
  padding: 0 20px 16px;
  min-height: 150px;
  margin: 0;
  line-height: 1.6;
}

.tl-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
  margin-top: 4px;
}

.tl-indicators { margin-top: 24px !important; }

.tl-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,215,0,0.4) !important;
  border: none;
  transition: all 0.3s;
}

.tl-indicators button.active {
  background-color: var(--gold) !important;
  width: 28px;
  border-radius: 5px;
}

.testimonials-two .carousel-control-prev,
.testimonials-two .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials-two .carousel-control-prev { left: 0; }
.testimonials-two .carousel-control-next { right: 0; }

@media (max-width: 768px) {
  .tl-quote { font-size: 16px; min-height: 130px; }
  .tl-name  { font-size: 16px; }
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-two {
  background: linear-gradient(180deg, #0A001E 0%, #060010 100%);
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}

.faq-two .section-title { margin-bottom: 48px; }

.faq-item {
  background: transparent !important;
  border: none !important;
  margin-bottom: 8px;
}

.faq-btn {
  background: linear-gradient(135deg, #16003A 0%, #0E0025 100%) !important;
  color: var(--white) !important;
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  border: 1px solid rgba(255,215,0,0.2) !important;
  border-radius: 10px !important;
  padding: 18px 20px !important;
  box-shadow: none !important;
  transition: border-color 0.25s, background 0.25s !important;
}

.faq-btn:not(.collapsed) {
  background: linear-gradient(135deg, #220050 0%, #160038 100%) !important;
  color: var(--gold) !important;
  border-color: rgba(255,215,0,0.6) !important;
  border-radius: 10px 10px 0 0 !important;
}

.faq-btn::after { display: none !important; }

.faq-btn .faq-chevron {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  margin-left: auto;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-btn:not(.collapsed) .faq-chevron { transform: rotate(45deg); }

.faq-play {
  color: var(--gold);
  opacity: 0.8;
  margin-right: 10px;
  font-size: 10px;
}

.faq-body {
  background: linear-gradient(135deg, #1C0042 0%, #120030 100%) !important;
  color: var(--offwhite) !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  border: 1px solid rgba(255,215,0,0.2) !important;
  border-top: none !important;
  border-radius: 0 0 10px 10px !important;
  padding: 20px 24px !important;
}

/* =====================================================
   PREÇO / CTA FINAL
   ===================================================== */
.pricing-two {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(120,0,255,0.2) 0%, transparent 70%),
    linear-gradient(180deg, #060010 0%, #0A001E 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.price-card-two {
  background: linear-gradient(145deg, #1C0042 0%, #0E0028 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.1),
    0 0 60px rgba(255,215,0,0.25),
    0 0 120px rgba(155,48,255,0.15),
    inset 0 1px 0 rgba(255,215,0,0.15);
  padding: 56px 44px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.price-card-two::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px; right: -60px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255,215,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.price-urgency {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: urgencyBlink 2s ease-in-out infinite;
}

.price-card-title {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.price-card-from {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 8px;
  position: relative;
}

.strikethrough-two {
  display: inline-block;
  position: relative;
}

.strikethrough-two svg {
  position: absolute;
  top: 0; left: 0;
  transform: translateY(-3px);
}

/* Preço com shimmer dourado */
.price-card-value {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  margin: 4px 0 16px;
  background: linear-gradient(90deg, #E8A800 0%, #FFD700 30%, #FFF5A0 50%, #FFD700 70%, #E8A800 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.price-card-small {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: block;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
  margin-top: 8px;
}

.btn-price-two {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, #FF2060 0%, #CC003A 100%);
  padding: 22px 30px;
  border-radius: 14px;
  width: 100%;
  margin: 20px auto 0;
  display: block;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(255,32,96,0.55);
  animation: ctaPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, filter 0.2s;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-price-two::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btnShine 3s ease-in-out infinite;
  pointer-events: none;
}

.btn-price-two:hover {
  color: #fff;
  transform: scale(1.03) translateY(-2px);
  filter: brightness(1.1);
}

.price-card-icons { margin-top: 28px; }
.price-card-icons img { width: 600px; max-width: 90%; opacity: 0.9; }

@media (max-width: 768px) {
  .price-card-two   { padding: 36px 20px; max-width: 96%; }
  .price-card-value { font-size: 54px; }
  .price-card-title { font-size: 19px; }
  .btn-price-two    { font-size: 19px; padding: 18px 20px; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-two {
  background-color: #030008;
  color: #C8B0F0;
  font-size: 11px;
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,215,0,0.1);
}

.footer-two p { margin-bottom: 10px; color: #A090C8; }
.footer-two strong { color: #C8B0F0; }

.footer-two a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-two a:hover { color: #fff; text-decoration: underline; }

/* =====================================================
   ACESSIBILIDADE — prefere movimento reduzido
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .rune, .hero-two::before,
  .tl-photo, .btn-hero-cta::after, .btn-price-two::after,
  .btn-violeta::after, .price-card-value {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn-hero-cta {
    box-shadow: 0 6px 40px rgba(255,32,96,0.5);
    animation: none;
  }
}
