/* ==============================
   A BÚSSOLA — V2: ALICE EDITION
   ============================== */

:root {
  --bg-deep: #08070e;
  --bg-section: #0d0c16;
  --bg-card: #13121f;
  --bg-card-hover: #1a1930;
  --gold: #d4af37;
  --gold-bright: #f0d060;
  --gold-dim: #8a7235;
  --gold-glow: rgba(212, 175, 55, 0.2);
  --gold-glow-strong: rgba(212, 175, 55, 0.4);
  --purple: #6b3fa0;
  --purple-deep: #2d1b4e;
  --purple-glow: rgba(107, 63, 160, 0.3);
  --red-queen: #9b2335;
  --red-dim: #6b1a27;
  --teal: #2a7a6e;
  --text: #e8e4dc;
  --text-dim: #9a968e;
  --text-muted: #5a5750;
  --white: #f5f0e8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

/* === NOISE TEXTURE OVERLAY === */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* === FLOATING CARD SUITS === */
.floating-suits {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-suits span {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0;
  animation: floatSuit 20s linear infinite;
  color: var(--gold-dim);
}

@keyframes floatSuit {
  0% { opacity: 0; transform: translateY(100vh) rotate(0deg); }
  10% { opacity: 0.06; }
  90% { opacity: 0.06; }
  100% { opacity: 0; transform: translateY(-10vh) rotate(360deg); }
}

.floating-suits span:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 25s; }
.floating-suits span:nth-child(2) { left: 15%; animation-delay: 3s; animation-duration: 22s; }
.floating-suits span:nth-child(3) { left: 28%; animation-delay: 7s; animation-duration: 28s; }
.floating-suits span:nth-child(4) { left: 42%; animation-delay: 2s; animation-duration: 20s; }
.floating-suits span:nth-child(5) { left: 55%; animation-delay: 5s; animation-duration: 24s; }
.floating-suits span:nth-child(6) { left: 68%; animation-delay: 8s; animation-duration: 26s; }
.floating-suits span:nth-child(7) { left: 78%; animation-delay: 1s; animation-duration: 23s; }
.floating-suits span:nth-child(8) { left: 90%; animation-delay: 6s; animation-duration: 21s; }

/* === LAYOUT === */
.content-wrap {
  position: relative;
  z-index: 1;
}

section {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 28px;
  position: relative;
}

/* === DIVIDERS — Alice themed === */
.divider-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  opacity: 0.2;
  font-size: 0.9rem;
  color: var(--gold);
}

.divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* === TYPOGRAPHY === */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 32px;
  line-height: 1.5;
}

p { margin-bottom: 20px; }
strong, b { font-weight: 500; color: var(--white); }
.highlight { color: var(--gold-bright); font-weight: 500; }

.isolated {
  font-size: 1.05em;
  color: var(--text-dim);
  margin: 28px 0;
}

blockquote {
  border-left: 2px solid var(--purple);
  padding-left: 24px;
  margin: 36px 0;
  font-style: italic;
  color: var(--text-dim);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25em;
  line-height: 1.6;
}

/* === BANNER === */
.banner {
  background: linear-gradient(90deg, var(--bg-deep), var(--purple-deep), var(--bg-deep));
  text-align: center;
  padding: 14px 24px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* === HERO === */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image:
    linear-gradient(180deg, rgba(8,7,14,0.88) 0%, rgba(8,7,14,0.91) 40%, rgba(8,7,14,0.97) 75%, var(--bg-deep) 100%),
    url('../assets/Artboard 1.jpg');
  background-size: cover, cover;
  background-position: center, center 15%;
  background-repeat: no-repeat, no-repeat;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg-deep));
  pointer-events: none;
  z-index: 2;
}

.hero {
  text-align: center;
  padding: 60px 28px 72px;
  position: relative;
  z-index: 3;
}

/* Hero SVG decorations */
.hero-key {
  position: absolute;
  opacity: 0.07;
  animation: slowSpin 60s linear infinite;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-key-left {
  top: 20%;
  left: 8%;
  width: 60px;
}

.hero-key-right {
  top: 30%;
  right: 10%;
  width: 50px;
  animation-direction: reverse;
}

/* Hero lockup — título + subtítulo mesmo width */
.hero-lockup {
  display: block;
  text-align: center;
  margin: 0 auto 36px;
  max-width: 480px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 6rem);
  margin-bottom: 0;
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 50%, var(--white) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease-in-out infinite;
  width: 100%;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero .hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.5rem, 1.2vw, 0.62rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 10px;
  display: block;
  text-align: center;
}

.hero h3 {
  display: none;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 20px;
  color: var(--text-dim);
}

/* Compass SVG */
.compass-svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* === CTA === */
.cta-wrap { text-align: center; margin: 32px 0 0; }

.cta {
  display: inline-block;
  padding: 18px 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200% 200%;
  color: var(--bg-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.cta:hover::after { left: 100%; }

.cta:hover {
  box-shadow: 0 0 40px var(--gold-glow-strong), 0 0 80px var(--gold-glow);
  transform: translateY(-2px);
}

/* === SECTION WITH SIDE DECORATION === */
.section-decorated {
  position: relative;
}

.section-decorated::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg, transparent, var(--purple), var(--gold-dim), transparent);
  opacity: 0.2;
}

/* === PULL QUOTE (inline, sem caixa) === */
.card-quote {
  text-align: center;
  padding: 32px 20px;
  margin: 40px 0;
  position: relative;
}

.card-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 20px;
  opacity: 0.4;
}

.card-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 20px auto 0;
  opacity: 0.4;
}

.card-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
}

/* === SECTION BANNER (4 + 4 = 1) === */
.section-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 44px 28px;
  max-width: 720px;
  margin: 0 auto;
}

.section-banner .banner-stat {
  text-align: center;
}

.section-banner .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
}

.section-banner .stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

.section-banner .banner-op {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold-dim);
  opacity: 0.5;
  font-style: italic;
}

.section-banner .banner-result .stat-number {
  font-size: 3.8rem;
  color: var(--gold-bright);
  text-shadow: 0 0 30px var(--gold-glow);
}

.section-banner .banner-result .stat-label {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* === WEEK CARDS — diagonal cut === */
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
}

.week-card {
  padding: 24px 20px 28px;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  background: var(--bg-card);
  margin-left: -14px;
  min-height: 200px;
}

.week-card:first-child {
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  margin-left: 0;
}

.week-card:last-child {
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.week-card:hover {
  background: var(--bg-card-hover);
}

.week-card .week-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  display: block;
  padding-left: 10px;
}

.week-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
  padding: 0 10px;
}

.week-card p {
  color: var(--text-dim);
  margin-bottom: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  padding: 0 10px;
}

/* === JORNADA / MAPA === */
.journey-map {
  margin-top: 48px;
  position: relative;
  padding: 20px 0;
}

.journey-map svg {
  display: block;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  overflow: visible;
}

/* === STACK — PROGRESSIVE LAYERS === */
.stack-container {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.stack-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
  opacity: 0.4;
}

.stack-a {
  padding: 28px 0 0;
}

.stack-a .stack-a-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 28px;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
}

.stack-a .stack-a-item:hover {
  padding-left: 34px;
}

.stack-a .stack-a-item .item-marker {
  font-size: 0.5rem;
  flex-shrink: 0;
  position: relative;
  top: -1px;
  transition: all 0.3s ease;
}

.stack-a .stack-a-item .item-name {
  flex: 1;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.stack-a .stack-a-item .item-value {
  font-size: 0.8rem;
  text-decoration: line-through;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Progressive intensity — gold only */
.stack-a .stack-a-item:nth-child(1)  { background: rgba(212,175,55,0.01); }
.stack-a .stack-a-item:nth-child(2)  { background: rgba(212,175,55,0.015); }
.stack-a .stack-a-item:nth-child(3)  { background: rgba(212,175,55,0.02); }
.stack-a .stack-a-item:nth-child(4)  { background: rgba(212,175,55,0.025); }
.stack-a .stack-a-item:nth-child(5)  { background: rgba(212,175,55,0.03); }
.stack-a .stack-a-item:nth-child(6)  { background: rgba(212,175,55,0.035); }
.stack-a .stack-a-item:nth-child(7)  { background: rgba(212,175,55,0.04); }
.stack-a .stack-a-item:nth-child(8)  { background: rgba(212,175,55,0.05); }
.stack-a .stack-a-item:nth-child(9)  { background: rgba(212,175,55,0.055); }
.stack-a .stack-a-item:nth-child(10) { background: rgba(212,175,55,0.065); }

/* Progressive marker brightness */
.stack-a .stack-a-item:nth-child(1)  .item-marker { color: rgba(212,175,55,0.12); }
.stack-a .stack-a-item:nth-child(2)  .item-marker { color: rgba(212,175,55,0.18); }
.stack-a .stack-a-item:nth-child(3)  .item-marker { color: rgba(212,175,55,0.24); }
.stack-a .stack-a-item:nth-child(4)  .item-marker { color: rgba(212,175,55,0.32); }
.stack-a .stack-a-item:nth-child(5)  .item-marker { color: rgba(212,175,55,0.40); }
.stack-a .stack-a-item:nth-child(6)  .item-marker { color: rgba(212,175,55,0.50); }
.stack-a .stack-a-item:nth-child(7)  .item-marker { color: rgba(212,175,55,0.60); }
.stack-a .stack-a-item:nth-child(8)  .item-marker { color: rgba(212,175,55,0.72); }
.stack-a .stack-a-item:nth-child(9)  .item-marker { color: rgba(212,175,55,0.85); }
.stack-a .stack-a-item:nth-child(10) .item-marker { color: var(--gold); }

/* Progressive value text fade */
.stack-a .stack-a-item:nth-child(1)  .item-value { color: rgba(90,87,80,0.35); }
.stack-a .stack-a-item:nth-child(2)  .item-value { color: rgba(90,87,80,0.40); }
.stack-a .stack-a-item:nth-child(3)  .item-value { color: rgba(90,87,80,0.45); }
.stack-a .stack-a-item:nth-child(4)  .item-value { color: rgba(90,87,80,0.50); }
.stack-a .stack-a-item:nth-child(5)  .item-value { color: rgba(90,87,80,0.55); }
.stack-a .stack-a-item:nth-child(6)  .item-value { color: rgba(90,87,80,0.60); }
.stack-a .stack-a-item:nth-child(7)  .item-value { color: rgba(90,87,80,0.65); }
.stack-a .stack-a-item:nth-child(8)  .item-value { color: rgba(90,87,80,0.70); }

/* Last item (garantia) — gold accent */
.stack-a .stack-a-item:nth-child(10) .item-name {
  color: var(--gold);
  font-weight: 400;
}

.stack-a-total {
  margin: 0;
  padding: 24px 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  text-align: center;
  background: rgba(212,175,55,0.04);
}

.stack-a-total .old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 6px;
}

.stack-a-total .real-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold-bright);
  font-weight: 700;
  text-shadow: 0 0 30px var(--gold-glow);
}


/* === PRICING CARD === */
.pricing-card {
  max-width: 560px;
  margin: 48px auto;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
  opacity: 0.6;
}

.pricing-card-header {
  text-align: center;
  padding: 28px 40px 36px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.pricing-card-header .installment {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.pricing-card-header .price-main {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  color: var(--gold-bright);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 30px var(--gold-glow);
}

.pricing-card-header .price-main span {
  font-size: 1.4rem;
  vertical-align: super;
}

.pricing-card-header .price-alt {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.pricing-card-body {
  padding: 28px 40px 36px;
}

.pricing-card-body .includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card-body .includes-list li {
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  border-bottom: 1px solid rgba(212, 175, 55, 0.04);
}

.pricing-card-body .includes-list li:last-child {
  border-bottom: none;
}

.pricing-card-body .includes-list li::before {
  content: '♦';
  color: var(--gold-dim);
  font-size: 0.5rem;
  position: absolute;
  left: 0;
  top: 16px;
}

.pricing-card-body .includes-list li strong {
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 2px;
}

.pricing-card-body .includes-list .item-desc {
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.5;
  display: block;
}

/* === GUARANTEE === */
.guarantee {
  text-align: center;
  padding: 48px 28px;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  position: relative;
}

/* transition-section removed */

/* === DENY LIST === */
.deny-list p {
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
}

.deny-list p::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red-queen);
  font-size: 0.85rem;
  font-weight: 600;
}

.welcome {
  color: var(--gold) !important;
  font-weight: 400;
  margin-top: 32px;
  padding-left: 28px !important;
}

.welcome::before {
  content: '✓' !important;
  color: var(--gold) !important;
}

/* === RABBIT HOLE SECTION BREAK === */
.rabbit-hole-break {
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.rabbit-hole-break svg {
  opacity: 0.12;
}

/* === CLOCK DECORATION === */
.clock-break {
  text-align: center;
  padding: 20px 0;
  color: var(--gold-dim);
  opacity: 0.3;
}

.clock-break .clock-face {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
  animation: tickTock 2s ease-in-out infinite;
}

@keyframes tickTock {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.clock-break .clock-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

/* === MUSHROOM SECTION (PRA QUEM É) === */
.mushroom-decoration {
  text-align: center;
  font-size: 2rem;
  opacity: 0.08;
  margin-bottom: 20px;
}

/* === CHESHIRE GRIN === */
.cheshire-break {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--purple);
  opacity: 0.4;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.15em;
}

/* === DEPOIMENTOS CARROSSEL === */
.testimonials-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 28px;
}

.carousel-wrapper {
  overflow: hidden;
  margin-top: 32px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.carousel-track {
  display: flex;
  gap: 16px;
  animation: carouselScroll 35s linear infinite;
  width: max-content;
}

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

@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  width: 280px;
  min-height: 320px;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  opacity: 0.04;
  transform: rotate(-15deg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

/* Ícones por profissão */
.testimonial-card[data-prof="mentor"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Ccircle cx='50' cy='40' r='25'/%3E%3Cpath d='M38 65v15h24V65'/%3E%3Cline x1='50' y1='65' x2='50' y2='80'/%3E%3Cline x1='42' y1='85' x2='58' y2='85'/%3E%3Cpath d='M40 30 Q50 15 60 30'/%3E%3C/svg%3E");
}

.testimonial-card[data-prof="ecommerce"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Crect x='20' y='30' width='60' height='50' rx='4'/%3E%3Cpath d='M20 45h60'/%3E%3Cpath d='M35 20 L20 30'/%3E%3Cpath d='M65 20 L80 30'/%3E%3Ccircle cx='40' cy='60' r='6'/%3E%3Ccircle cx='60' cy='60' r='6'/%3E%3C/svg%3E");
}

.testimonial-card[data-prof="trafego"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Cpath d='M15 80 L15 20'/%3E%3Cpath d='M15 80 L85 80'/%3E%3Cpath d='M25 65 L40 45 L55 55 L70 25 L85 20'/%3E%3Ccircle cx='40' cy='45' r='3'/%3E%3Ccircle cx='70' cy='25' r='3'/%3E%3Ccircle cx='85' cy='20' r='3'/%3E%3C/svg%3E");
}

.testimonial-card[data-prof="designer"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Cpath d='M70 20 L25 65 Q20 70 22 76 L28 82 Q32 84 38 78 L82 34 Z'/%3E%3Cpath d='M65 25 L78 38'/%3E%3Ccircle cx='30' cy='74' r='4'/%3E%3C/svg%3E");
}

.testimonial-card[data-prof="videomaker"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Crect x='15' y='30' width='50' height='40' rx='4'/%3E%3Cpath d='M65 42 L85 30 V70 L65 58'/%3E%3Ccircle cx='40' cy='50' r='8'/%3E%3Cpath d='M37 46 L45 50 L37 54 Z'/%3E%3C/svg%3E");
}

.testimonial-card[data-prof="terapeuta"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23d4af37' stroke-width='1.5'%3E%3Cpath d='M50 85 C50 85 20 65 20 42 C20 28 32 20 50 35 C68 20 80 28 80 42 C80 65 50 85 50 85Z'/%3E%3Cpath d='M40 50 L48 58 L62 42'/%3E%3C/svg%3E");
}

/* Faixa diagonal decorativa */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(212,175,55,0.04) 50%);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.18);
}

.testimonial-card:hover::before {
  opacity: 0.07;
}

.testimonial-card .tq-text {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-card .tq-text strong {
  color: var(--gold-bright);
  font-weight: 500;
  font-style: normal;
}

.testimonial-card .tq-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  position: relative;
  z-index: 1;
}

.testimonial-card .tq-author strong {
  color: var(--text);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.testimonials-insta {
  text-align: center;
  margin-top: 28px;
}

.testimonials-insta a {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 40px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials-insta a:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

@media (max-width: 640px) {
  .testimonial-card { width: 260px; min-height: 300px; padding: 24px 20px; }
  .carousel-track { animation-duration: 30s; }
}

/* === LOGO CAROUSEL === */
.logos-section {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 0.5px solid rgba(212, 175, 55, 0.06);
  overflow: hidden;
}

.logos-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.logos-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-bottom: 8px;
  animation: logo-scroll 20s linear infinite;
}

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

.logo-circle {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  background: var(--bg-card);
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-item:hover .logo-circle img {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === FAQ === */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 28px;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  font-size: 0.7rem;
  color: var(--gold-dim);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 48px 28px 32px;
  color: var(--text-muted);
  font-size: 0.8rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.3;
}

footer a { color: var(--gold-dim); text-decoration: none; }

footer .footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dim);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

footer .footer-suits {
  margin-top: 20px;
  opacity: 0.15;
  letter-spacing: 0.5em;
  font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .banner { font-size: 0.55rem; padding: 10px 16px; letter-spacing: 0.06em; }
  section { padding: 36px 20px; }
  .hero { padding: 0 20px 50px; min-height: auto; }
  .hero-lockup { margin-bottom: 28px; }
  .hero .hero-subtitle { letter-spacing: 0.15em; }
  .section-banner { gap: 14px; padding: 32px 20px; }
  .section-banner .stat-number { font-size: 2.2rem; }
  .section-banner .banner-result .stat-number { font-size: 2.6rem; }
  .section-banner .banner-op { font-size: 1.4rem; }
  .weeks-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .week-card { clip-path: none !important; margin-left: 0 !important; padding: 24px 18px; border-left: 2px solid var(--purple); min-height: auto; }
  .journey-map svg { max-width: 100%; }
  .stack-a .stack-a-item { padding: 10px 20px; }
  .stack-a .stack-a-item:hover { padding-left: 24px; }
  .stack-a .stack-a-item .item-name { font-size: 0.84rem; }
  .stack-a-total { padding: 20px; }
  .stack-a-total .real-price { font-size: 2.2rem; }
  .pricing-card-header { padding: 32px 24px 24px; }
  .pricing-card-header .price-main { font-size: 3rem; }
  .pricing-card-body { padding: 20px 24px 28px; }
  .pricing-card-body .includes-list li { font-size: 0.84rem; }
  .hero-key { display: none; }
  .card-quote { padding: 20px 16px; }
}
