@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Alex+Brush&display=swap');

/* ==========================================
   DESIGN SYSTEM - HICK 333HZ & RESET MENTAL 7
   ========================================== */

:root {
  --bg-dark-950: #040508;
  --bg-dark-900: #090b12;
  --bg-dark-800: #121624;
  --bg-dark-700: #192033;
  
  --color-emerald: #ff8c00; /* Sunset Orange */
  --color-emerald-dark: #e55b00; /* Darker Sunset Orange */
  --color-green: #e5a93b; /* Brushed Gold */
  --color-gold: #d4af37; /* Luxury Gold */
  --color-gold-light: #fbeba5; /* Bright Light Gold */
  --color-text-primary: #f8fafc;
  --color-text-secondary: #cbd5e1;
  --color-text-muted: #64748b;
  
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --glass-bg: rgba(10, 13, 20, 0.55);
  --glass-bg-hover: rgba(20, 25, 38, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-emerald: rgba(255, 140, 0, 0.25);
  --glass-border-gold: rgba(212, 175, 55, 0.25);
  
  --shadow-glow-emerald: 0 0 30px rgba(255, 140, 0, 0.15);
  --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-950);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-950);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-emerald);
}

/* Background Canvas & Ambient Lights */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.ambient-light-1 {
  position: fixed;
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  animation: pulse-light 15s infinite alternate;
}

.ambient-light-2 {
  position: fixed;
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  animation: pulse-light-slow 22s infinite alternate;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.04) 0%, rgba(212, 175, 55, 0.01) 40%, transparent 75%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  filter: blur(40px);
}

@keyframes pulse-light {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  100% { transform: scale(1.15) translate(3vw, 2vw); opacity: 1; }
}

@keyframes pulse-light-slow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.2) translate(-3vw, -2vw); opacity: 0.9; }
}

/* ==========================================
   TYPOGRAPHY & UTILITIES
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
}

p {
  color: var(--color-text-secondary);
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-mixed {
  background: linear-gradient(135deg, #ffffff 10%, var(--color-emerald) 60%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 242, 254, 0.15);
  z-index: -1;
  border-radius: 4px;
}

/* ==========================================
   HEADER / MENU
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6%;
  z-index: 100;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(4, 5, 8, 0.85);
  height: 70px;
  border-bottom: 1px solid rgba(0, 242, 254, 0.08);
}

.logo-container {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-main span {
  color: var(--color-emerald);
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  margin-top: 1px;
}

/* Audio Wave & Toggle */
.audio-controller {
  display: flex;
  align-items: center;
  gap: 15px;
}

.audio-toggle-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.audio-toggle-btn:hover {
  background: rgba(0, 242, 254, 0.06);
  border-color: var(--color-emerald);
  color: var(--color-text-primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.audio-toggle-btn.active {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--color-emerald);
  color: var(--color-emerald);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

/* Wave Animation */
.wave-animation {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  width: 20px;
}

.wave-bar {
  width: 2px;
  height: 3px;
  background-color: var(--color-text-secondary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.audio-toggle-btn.active .wave-bar {
  background-color: var(--color-emerald);
  animation: bounce-wave 1s ease-in-out infinite alternate;
}

.audio-toggle-btn.active .wave-bar:nth-child(2) { animation-delay: 0.15s; }
.audio-toggle-btn.active .wave-bar:nth-child(3) { animation-delay: 0.3s; }
.audio-toggle-btn.active .wave-bar:nth-child(4) { animation-delay: 0.45s; }

@keyframes bounce-wave {
  0% { height: 3px; }
  100% { height: 14px; }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 40px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
  color: #040508;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 242, 254, 0.3), var(--shadow-glow-emerald);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: #040508;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3), var(--shadow-glow-gold);
}

.btn-ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.section-hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 6% 60px;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(25, 32, 51, 0.5) 0%, var(--bg-dark-950) 90%);
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  z-index: 2;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid var(--glass-border-emerald);
  padding: 6px 20px;
  border-radius: 20px;
  color: var(--color-emerald);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: inline-block;
}

.hero-title {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-subtitle {
  max-width: 620px;
  font-size: clamp(1rem, 1vw + 0.6rem, 1.15rem);
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-actions {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

/* Hero Visual Columns */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  animation: fade-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.floating-phone-wrapper {
  position: relative;
  border-radius: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 140, 0, 0.05);
  animation: float-phone 6s ease-in-out infinite;
  z-index: 2;
}

.floating-phone-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 32px;
  display: block;
  filter: saturate(110%);
}

.phone-glow-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}

.neural-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(255, 140, 0, 0.25);
  border-radius: 40px;
  transform: translate(-50%, -50%) scale(1);
  z-index: -1;
  pointer-events: none;
  animation: neural-wave-pulse 4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.neural-pulse-ring.ring-2 {
  animation-delay: 2s;
  border-color: rgba(212, 175, 55, 0.15);
}

@keyframes neural-wave-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
    filter: blur(4px);
  }
}

@keyframes float-phone {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1.2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Advanced Pulse Animation for CTA Button */
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.45), var(--shadow-glow-emerald);
    transform: scale(1) translateY(0);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 140, 0, 0), 0 0 40px rgba(255, 140, 0, 0.4);
    transform: scale(1.045) translateY(-5px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0), var(--shadow-glow-emerald);
    transform: scale(1) translateY(0);
  }
}

.btn-pulse {
  animation: cta-pulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.btn-pulse:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.25), var(--shadow-glow-emerald);
}

/* Sound Wave Graphics on Hero */
.frequency-soundwave-svg {
  margin-top: 50px;
  width: 100%;
  max-width: 500px;
  height: 80px;
  opacity: 0;
  transform: scale(0.95);
  animation: fade-in 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.wave-line {
  stroke: var(--color-emerald);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  animation: wave-motion 4s ease-in-out infinite alternate;
}

.wave-line-gold {
  stroke: var(--color-gold);
  stroke-width: 1.2;
  opacity: 0.4;
  fill: none;
  stroke-linecap: round;
  animation: wave-motion 6s ease-in-out infinite alternate-reverse;
}

@keyframes wave-motion {
  0% { stroke-dashoffset: 0; transform: translateY(0); }
  100% { stroke-dashoffset: 200; transform: translateY(5px); }
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================
   IDENTIFICATION SECTION
   ========================================== */

.section-identify {
  padding: 100px 8% 80px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-header .tag {
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  margin-bottom: 20px;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.symptom-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px 35px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.symptom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--transition-smooth);
}

.symptom-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--glass-bg-hover);
}

.symptom-card.alert-emerald:hover {
  border-color: var(--glass-border-emerald);
  box-shadow: var(--shadow-glow-emerald), var(--shadow-card);
}

.symptom-card.alert-gold:hover {
  border-color: var(--glass-border-gold);
  box-shadow: var(--shadow-glow-gold), var(--shadow-card);
}

.symptom-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.icon-emerald {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid var(--glass-border-emerald);
  color: var(--color-emerald);
}

.icon-gold {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--glass-border-gold);
  color: var(--color-gold);
}

.symptom-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.symptom-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   PURPOSE SECTION
   ========================================== */

.section-purpose {
  padding: 80px 8% 100px;
  background: radial-gradient(circle at 50% 50%, rgba(15, 19, 34, 0.6) 0%, transparent 80%);
}

.purpose-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.purpose-content h2 {
  margin-bottom: 24px;
}

.purpose-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.purpose-bullets {
  margin-top: 35px;
}

.purpose-bullet {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.bullet-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

.purpose-bullet h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Sacred Geometry Representation */
.purpose-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 380px;
}

.geometry-ring {
  position: absolute;
  border: 1px solid rgba(0, 242, 254, 0.08);
  border-radius: 50%;
  animation: rotate-ring 30s linear infinite;
}

.geometry-ring:nth-child(1) {
  width: 280px;
  height: 280px;
  border-color: rgba(0, 242, 254, 0.15);
  animation-duration: 20s;
}

.geometry-ring:nth-child(2) {
  width: 200px;
  height: 200px;
  border-color: rgba(212, 175, 55, 0.12);
  animation-duration: 35s;
  animation-direction: reverse;
}

.geometry-ring:nth-child(3) {
  width: 120px;
  height: 120px;
  border-color: rgba(255, 255, 255, 0.05);
  animation-duration: 15s;
}

.geometry-center {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--color-emerald) 0%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--color-emerald);
  position: relative;
  z-index: 2;
  animation: pulse-center 3s ease-in-out infinite alternate;
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

@keyframes pulse-center {
  0% { transform: scale(0.85); opacity: 0.7; box-shadow: 0 0 15px var(--color-emerald); }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 35px var(--color-emerald), 0 0 50px rgba(0, 242, 254, 0.3); }
}

/* ==========================================
   QUIZ COMPONENT CONTAINER
   ========================================== */

.section-quiz-container {
  padding: 60px 6% 100px;
  position: relative;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-wrapper {
  width: 100%;
  max-width: 780px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 50px 60px;
  backdrop-filter: blur(25px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.quiz-wrapper.active-border-emerald {
  border-color: var(--glass-border-emerald);
  box-shadow: var(--shadow-glow-emerald), var(--shadow-card);
}

.quiz-wrapper.active-border-gold {
  border-color: var(--glass-border-gold);
  box-shadow: var(--shadow-glow-gold), var(--shadow-card);
}

/* Quiz Header & Progress */
.quiz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.quiz-step-count {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.quiz-step-count span {
  color: var(--color-emerald);
}

.quiz-progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 45px;
  position: relative;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-emerald) 0%, var(--color-gold) 100%);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

/* Question Area */
.question-container {
  transition: var(--transition-smooth);
}

.question-text {
  font-size: clamp(1.4rem, 2vw + 0.5rem, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 35px;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option-button {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}

.option-letter {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.option-button:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.option-button.selected {
  background: rgba(0, 242, 254, 0.06);
  border-color: var(--color-emerald);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.option-button.selected .option-letter {
  background: var(--color-emerald);
  border-color: var(--color-emerald);
  color: #040508;
  box-shadow: 0 0 10px var(--color-emerald);
}

.option-button:active {
  transform: translateX(2px) scale(0.99);
}

/* Transition Animations */
.slide-exit {
  opacity: 0;
  transform: translateY(-20px);
}

.slide-enter {
  opacity: 0;
  transform: translateY(20px);
}

/* ==========================================
   LEAD CAPTURE SECTION
   ========================================== */

.lead-container {
  text-align: center;
}

.lead-illustration {
  margin-bottom: 25px;
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-circle-loader {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(0, 242, 254, 0.1);
  border-top-color: var(--color-emerald);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.lead-icon-complete {
  font-size: 2.2rem;
  color: var(--color-emerald);
  animation: pop-scale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes pop-scale {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lead-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.lead-subtitle {
  max-width: 520px;
  margin: 0 auto 35px;
  font-size: 0.95rem;
}

.lead-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-emerald);
  background: rgba(0, 242, 254, 0.02);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.lead-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 5px;
  cursor: pointer;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
  color: #000;
  transition: var(--transition-fast);
}

.lead-form-checkbox input {
  display: none;
}

.lead-form-checkbox input:checked + .checkbox-custom {
  background: var(--color-emerald);
  border-color: var(--color-emerald);
}

.checkbox-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.lead-form .btn {
  margin-top: 15px;
}

/* ==========================================
   RESULTS PAGE / PERSONALIZED PROFILE
   ========================================== */

.result-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Radar / Level Meter Style */
.result-level-gauge {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 8px;
}

.gauge-fill {
  fill: none;
  stroke: var(--color-emerald);
  stroke-width: 8px;
  stroke-dasharray: 565.48; /* 2 * PI * r (90) */
  stroke-dashoffset: 565.48;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gauge-inner-info {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gauge-level-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.gauge-level-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-top: 5px;
}

.result-header {
  text-align: center;
  margin-bottom: 45px;
}

.result-profile-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.result-badge {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--glass-border-gold);
  color: var(--color-gold);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.result-badge.level-1 {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.result-badge.level-2 {
  background: rgba(0, 242, 254, 0.06);
  border-color: var(--glass-border-emerald);
  color: var(--color-emerald);
}

.result-badge.level-3 {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--glass-border-gold);
  color: var(--color-gold);
}

.result-badge.level-4 {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.result-intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* Diagnostic Blocks */
.diagnostic-blocks {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
  text-align: left;
}

.diag-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.diag-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.diag-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-emerald);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diag-card-title.gold { color: var(--color-gold); }

.diag-card-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.diag-card-content ul {
  list-style-type: none;
}

.diag-card-content li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.diag-card-content li::before {
  content: "•";
  color: var(--color-emerald);
  font-weight: bold;
  flex-shrink: 0;
}

/* CTA Final RESET MENTAL 7 */
.cta-reset-block {
  width: 100%;
  background: linear-gradient(135deg, rgba(13, 18, 33, 0.9) 0%, rgba(20, 27, 49, 0.9) 100%);
  border: 1px solid var(--glass-border-emerald);
  border-radius: 24px;
  padding: 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow-emerald), var(--shadow-card);
}

.cta-reset-block::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
  top: -75px;
  right: -75px;
  filter: blur(20px);
}

.cta-reset-tag {
  color: var(--color-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.cta-reset-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-reset-desc {
  max-width: 580px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  padding: 60px 6% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  background: #040508;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--color-emerald);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-emerald);
}

.footer-copyright {
  margin-top: 20px;
  font-size: 0.75rem;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .floating-phone-img {
    max-width: 290px;
    margin: 0 auto;
  }
  
  .frequency-soundwave-svg {
    margin-left: auto;
    margin-right: auto;
  }

  .purpose-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .purpose-bullet {
    justify-content: center;
    text-align: left;
  }
  
  .purpose-visual {
    height: 300px;
    order: -1;
  }
  
  .diagnostic-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 4%;
  }
  
  .audio-toggle-btn span {
    display: none;
  }
  
  /* Global mobile typography resets to make sure text is not giant */
  h1 {
    font-size: 1.8rem !important;
    line-height: 1.25 !important;
  }
  h2 {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
  }
  h3 {
    font-size: 1.15rem !important;
  }
  
  /* Hero specific overrides */
  .hero-title {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 25px !important;
  }
  .section-hero {
    padding: 90px 4% 40px !important;
    min-height: auto !important; /* Let height adapt naturally on mobile */
  }

  .section-identify {
    padding: 60px 4% 40px;
  }
  .section-purpose {
    padding: 50px 4% 60px;
  }
  .symptoms-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .symptom-card {
    padding: 25px 20px !important;
    border-radius: 18px !important;
  }
  .symptom-card h3 {
    font-size: 1.1rem !important;
  }
  .symptom-card p {
    font-size: 0.88rem !important;
  }
  .section-header h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }
  
  /* Purpose (Antes de continuar...) overrides */
  .purpose-container p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
  }
  .purpose-bullet p {
    font-size: 0.88rem !important;
  }

  .section-quiz-container {
    padding: 40px 12px 60px;
  }
  
  .quiz-wrapper {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .quiz-progress-bar-container {
    margin-bottom: 25px;
  }
  
  .question-text {
    font-size: 1.15rem !important;
    margin-bottom: 20px;
    line-height: 1.35;
  }
  
  .option-button {
    padding: 12px 14px !important;
    font-size: 0.88rem !important;
    gap: 12px;
    border-radius: 12px;
  }
  
  .option-letter {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 0.8rem;
  }
  
  .diagnostic-blocks {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .diag-card {
    padding: 18px;
  }
  
  .cta-reset-block {
    padding: 25px 15px;
  }
  
  .cta-reset-title {
    font-size: 1.4rem;
  }
}

/* ==========================================
   COUNTDOWN TIMER & SINTONIZACAO STYLES
   ========================================== */

.timer-circle-visual {
  border-color: var(--color-emerald) !important;
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.15), inset 0 0 25px rgba(255, 140, 0, 0.08);
  background: rgba(10, 13, 20, 0.4);
}

.countdown-msg {
  transition: all 0.3s ease-out;
}

@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================
   CINEMATIC VIDEO SIMULATION PLAYER
   ========================================== */

.video-player-container {
  position: relative;
  width: 100%;
  max-width: 380px; /* Taller portrait-optimized container width */
  aspect-ratio: 800 / 1243; /* Matches the exact aspect ratio of the video_hick.jpg image (800x1243) */
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index: 1;
}

.video-speaker-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.video-speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  transform: scale(1.0) translateY(0);
  transition: transform 3.8s cubic-bezier(0.1, 0.8, 0.2, 1);
  filter: brightness(0.92) contrast(1.02) saturate(95%);
}

.video-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 35%, rgba(4, 5, 8, 0.82) 100%),
              linear-gradient(to bottom, rgba(4, 5, 8, 0.4) 0%, transparent 20%, transparent 70%, rgba(4, 5, 8, 0.95) 100%);
  pointer-events: none;
  z-index: 2;
}

.video-recording-indicator {
  position: absolute;
  top: 20px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 5, 8, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.15em;
  z-index: 3;
  backdrop-filter: blur(5px);
  pointer-events: none;
}

.red-dot {
  width: 7px;
  height: 7px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse-red-dot 1.2s infinite alternate;
}

@keyframes pulse-red-dot {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

.video-audio-wave {
  position: absolute;
  top: 20px;
  right: 25px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 25px;
  z-index: 3;
  opacity: 0.4;
  background: rgba(4, 5, 8, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.audio-bar {
  width: 2.2px;
  height: 4px;
  background-color: var(--color-emerald);
  border-radius: 1px;
  transition: height 0.15s ease-out;
}

.audio-bar:nth-child(2) { background-color: var(--color-green); }
.audio-bar:nth-child(3) { background-color: var(--color-emerald); }
.audio-bar:nth-child(4) { background-color: var(--color-green); }
.audio-bar:nth-child(5) { background-color: var(--color-emerald); }

.video-subtitles-box {
  position: absolute;
  bottom: 25px;
  left: 5%;
  right: 5%;
  background: rgba(9, 11, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 22px;
  border-radius: 16px;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 4;
  transition: all 0.3s ease;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.15);
  border: 2px solid var(--color-emerald);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-overlay-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 140, 0, 0.28);
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.55);
}

.video-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 5;
  pointer-events: none;
}

.video-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-emerald) 0%, var(--color-gold) 100%);
  transition: width 0.1s linear;
}

/* Responsive custom spacing overrides for modern phones */
@media (max-width: 576px) {
  .video-player-container {
    aspect-ratio: 800 / 1243;
    border-radius: 16px;
  }
  
  .video-subtitles-box {
    bottom: 12px;
    padding: 10px 14px;
    font-size: 0.84rem;
    min-height: 60px;
    border-radius: 12px;
  }
  
  .video-recording-indicator, .video-audio-wave {
    top: 12px;
    padding: 4px 8px;
    font-size: 0.6rem;
  }
  
  .video-recording-indicator {
    left: 15px;
  }
  
  .video-audio-wave {
    right: 15px;
    height: 20px;
  }
}

/* ==========================================
   OFFER PAGE INTERMEDIATE SECTIONS
   ========================================== */

.offer-section {
  animation: fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: var(--color-text-primary);
  text-align: center;
  padding: 20px 0;
}

.offer-title-group {
  margin-bottom: 45px;
}

.offer-title-group h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 15px;
}

.offer-title-group p {
  color: var(--color-text-secondary);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CAROUSEL DIA 1 - DIA 7 */
.modules-carousel-container {
  margin: 35px auto;
  max-width: 100%;
  position: relative;
}

.carousel-scroll-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  padding: 15px 5px;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-card {
  flex: 0 0 135px;
  height: 195px;
  scroll-snap-align: center;
  background: #090b12;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.carousel-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  animation: floating-wavy 6s ease-in-out infinite;
}

.carousel-card:nth-child(1) .carousel-card-inner { animation-delay: 0s; }
.carousel-card:nth-child(2) .carousel-card-inner { animation-delay: 0.4s; }
.carousel-card:nth-child(3) .carousel-card-inner { animation-delay: 0.8s; }
.carousel-card:nth-child(4) .carousel-card-inner { animation-delay: 1.2s; }
.carousel-card:nth-child(5) .carousel-card-inner { animation-delay: 1.6s; }
.carousel-card:nth-child(6) .carousel-card-inner { animation-delay: 2s; }
.carousel-card:nth-child(7) .carousel-card-inner { animation-delay: 2.4s; }

@keyframes floating-wavy {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.carousel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.6) saturate(95%);
}

.carousel-card:hover .carousel-card-img {
  transform: scale(1.08);
  filter: brightness(0.75) saturate(100%);
}

.carousel-card.active .carousel-card-img {
  filter: brightness(0.85) saturate(105%);
}

.carousel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 140, 0, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.carousel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 0, 0.25);
}

.carousel-card.active {
  border-color: var(--color-emerald);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.25);
  transform: scale(1.04);
}

.carousel-card.active::before {
  opacity: 1;
}

.carousel-card-day {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-emerald);
  text-transform: uppercase;
}

.carousel-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 12px;
  background: linear-gradient(to top, rgba(9, 11, 18, 0.95) 0%, rgba(9, 11, 18, 0.4) 60%, transparent 100%);
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.carousel-card-lock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(4, 5, 8, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-secondary);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  z-index: 3;
}

.carousel-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-top: 4px;
}

.carousel-desc-box {
  background: rgba(18, 22, 36, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 15px;
  min-height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.carousel-desc-day-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.carousel-desc-text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

/* PRÉVIA DA ÁREA DE MEMBROS */
.members-preview-section {
  margin: 50px 0;
}

.members-mockup-container {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.7) 0%, rgba(5, 7, 12, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 0, 0, 0.5);
  max-width: 580px;
  margin: 25px auto;
  overflow: hidden;
  position: relative;
}

.members-mockup-header {
  height: 34px;
  background: rgba(10, 13, 20, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 5px;
}

.mockup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}
.mockup-dot:nth-child(1) { background-color: #ef4444; }
.mockup-dot:nth-child(2) { background-color: #f59e0b; }
.mockup-dot:nth-child(3) { background-color: #10b981; }

.members-mockup-body {
  background: #080a10;
  border-radius: 0 0 16px 16px;
  padding: 16px;
  text-align: left;
}

.mockup-sidebar-layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
}

.mockup-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-nav-item {
  height: 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 5px;
  width: 80%;
}
.mockup-nav-item.active {
  background: var(--color-emerald);
  width: 90%;
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-video-box {
  aspect-ratio: 800 / 1243;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(25, 32, 51, 0.7) 0%, rgba(10, 13, 20, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.mockup-video-overlay {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.25);
  border: 1px solid var(--color-emerald);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.25);
  color: #fff;
  font-size: 1rem;
  z-index: 2;
}

.mockup-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(1px);
}

.mockup-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.015);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.mockup-progress-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  width: 100px;
  position: relative;
  overflow: hidden;
}

.mockup-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 43%;
  background: var(--color-emerald);
}

.mockup-lessons-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-lesson-item {
  height: 32px;
  background: rgba(255, 255, 255, 0.015);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  gap: 8px;
}

.mockup-lesson-item span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.mockup-lesson-item.completed span {
  background: #10b981;
}

/* PARA QUEM É ESSA JORNADA */
.para-quem-section {
  margin: 50px 0;
  text-align: left;
}

.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 25px;
}

.para-quem-item {
  background: rgba(20, 25, 40, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.3s ease;
}

.para-quem-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 0, 0.12);
}

.para-quem-icon {
  color: var(--color-emerald);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.para-quem-text {
  font-size: 0.94rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* MÓDULOS BÔNUS */
.bonus-section {
  margin: 50px 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.5) 0%, rgba(8, 10, 18, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.bonus-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--color-gold);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  margin-bottom: 18px;
}

.bonus-mockup {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 3 / 4;
  margin: 0 auto 18px;
  background: #090b12;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.bonus-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
  border-radius: 10px 0 0 10px;
  z-index: 2;
}

.bonus-mockup-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.bonus-mockup-author {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.bonus-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.bonus-desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.bonus-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
  margin-top: auto;
}

.bonus-value-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.bonus-value-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-gold);
}

/* TIMELINE COMO FUNCIONA */
.timeline-section {
  margin: 50px 0;
}

.timeline-container {
  margin: 30px auto 20px;
  max-width: 540px;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-emerald) 0%, var(--color-gold) 100%);
  opacity: 0.2;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-circle {
  position: absolute;
  left: -26px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-dark-900);
  border: 2px solid var(--color-emerald);
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-circle {
  border-color: var(--color-gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 12px 16px;
}

.timeline-day-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.timeline-item:nth-child(even) .timeline-day-badge {
  color: var(--color-gold);
}

.timeline-day-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

/* VALOR PERCEBIDO */
.perceived-section {
  margin: 50px 0;
}

.perceived-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin: 25px auto;
}

.perceived-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.perceived-card-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.perceived-card-price {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
}

.perceived-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  margin-top: 6px;
}

.perceived-total-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.perceived-total-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* OFERTA FINAL & ANIMAÇÃO DE DESTAQUE */
.final-offer-section {
  margin: 70px 0 35px;
}

.final-offer-card {
  background: #040508;
  border: 1px solid rgba(212, 175, 55, 0.15); /* detalhe dourado extremamente discreto */
  border-radius: 26px;
  padding: 60px 40px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.9);
  max-width: 620px;
  margin: 25px auto;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.final-offer-card.scrolled-active {
  border-color: rgba(212, 175, 55, 0.3);
}

.final-offer-card::before {
  display: none;
}

.final-offer-badge {
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid var(--glass-border-emerald);
  color: var(--color-emerald);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
}

.offer-parcelas-intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 3px;
}

.offer-parcelas-value {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 10%, var(--color-emerald) 60%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.offer-parcelas-sub {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.offer-vista-price {
  font-size: 0.98rem;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
}

.offer-vista-price strong {
  color: #fff;
}

/* Bloco Economia */
.offer-economy-box {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 14px 20px;
  margin: 0 auto 25px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.economy-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.economy-row.total-original span:last-child {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.economy-row.total-hoje span:last-child {
  font-weight: 700;
  color: #fff;
}

.economy-row.total-saved {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 6px;
  margin-top: 4px;
  font-weight: 800;
  color: var(--color-emerald);
}

.economy-row.total-saved span:last-child {
  font-size: 0.98rem;
}

/* Microcopia de Reforço */
.offer-reforco-list {
  text-align: left;
  max-width: 340px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-reforco-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.offer-reforco-check {
  color: var(--color-emerald);
  font-weight: bold;
}

/* Bloco de Segurança */
.offer-security-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SEÇÃO DE OBJEÇÕES */
.objections-section {
  margin: 50px auto 30px;
  max-width: 580px;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
  text-align: left;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.015);
}

.accordion-icon {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.accordion-item.active {
  border-color: rgba(255, 140, 0, 0.12);
  background: rgba(20, 25, 40, 0.15);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-emerald);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

/* FLOATING CTA BAR */
.floating-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(4, 5, 8, 0.92);
  border-top: 1px solid rgba(255, 140, 0, 0.2);
  backdrop-filter: blur(20px);
  padding: 12px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.floating-cta-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta-price-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.floating-cta-price-info span:first-child {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-cta-price-info span:last-child {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.floating-cta-price-info strong {
  color: var(--color-emerald);
}

.btn-floating-cta {
  padding: 8px 20px;
  font-size: 0.82rem;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.2);
}

/* RESPONSIVE DESIGN FOR NEW SECTIONS */
@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .final-offer-card {
    padding: 30px 18px;
  }
  
  .mockup-sidebar-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .mockup-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .mockup-nav-item {
    width: 30%;
  }
  
  .floating-cta-bar {
    padding: 10px 14px;
  }
  
  .floating-cta-price-info span:last-child {
    font-size: 1.05rem;
  }
  
  .btn-floating-cta {
    padding: 7px 15px;
    font-size: 0.78rem;
  }
}

/* ==========================================
   HICK BIOGRAPHY SECTION & HUMANSUPPORT CSS
   ========================================== */

.hick-bio-container {
  max-width: 800px;
  margin: 100px auto;
  text-align: left;
  padding: 0 20px;
}

.hick-bio-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  margin-top: 30px;
  align-items: start;
}

.hick-bio-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 715 / 1191; /* Matches the exact aspect ratio of the Marcelo.jpg image (715x1191) */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hick-bio-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.02);
}

.hick-bio-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(4, 5, 8, 0.9) 100%);
  pointer-events: none;
}

.hick-bio-text-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hick-bio-text-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.hick-bio-text-content strong {
  color: #fff;
}

.hick-bio-quote-signature {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.hick-bio-quote-text {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-gold) !important;
  font-weight: 700;
  margin-bottom: 8px;
}

.hick-bio-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 2px;
}

.hick-bio-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SUPORTE HUMANO SECTION */
.suporte-humano-section {
  margin: 60px auto 30px;
  max-width: 580px;
  width: 100%;
}

.suporte-card {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.7) 0%, rgba(10, 13, 20, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.suporte-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.suporte-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.suporte-text.font-italic {
  font-style: italic;
  color: var(--color-gold);
  margin-top: 15px;
  font-weight: 600;
}

.suporte-action {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  background: #20ba5a;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}

.suporte-microcopy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .hick-bio-container {
    text-align: center;
  }
  
  .hick-bio-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .hick-bio-image-wrapper {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ==========================================
   AUDIO TOAST NOTIFICATION
   ========================================== */

.audio-toast {
  position: fixed;
  top: 90px;
  right: 20px;
  max-width: 380px;
  width: calc(100% - 40px);
  background: rgba(9, 11, 18, 0.94);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 140, 0, 0.1);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.audio-toast.show {
  transform: translateX(0);
}

.audio-toast-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  animation: pulse-center 1.8s infinite alternate;
}

.audio-toast-title {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-align: left;
}

.audio-toast-text {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

@media (max-width: 576px) {
  .audio-toast {
    right: 20px;
    left: 20px;
    width: auto;
    max-width: none;
    top: auto;
    bottom: 20px;
    transform: translateY(150%);
  }
  
  .audio-toast.show {
    transform: translateY(0);
  }
}

/* ==========================================
   MODO PRESENÇA & TRANSFORMAÇÃO SECTIONS
   ========================================== */

.modo-presenca-section {
  margin: 40px auto 20px;
  max-width: 680px;
  width: 100%;
}

.presenca-card {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.7) 0%, rgba(10, 13, 20, 0.85) 100%);
  border: 1px solid rgba(255, 140, 0, 0.15);
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: var(--shadow-card);
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  animation: fade-in 0.8s ease-out forwards;
}

.presenca-badge {
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.35);
  color: #ff8c00;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 20px;
}

.presenca-title {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.01em;
}

.presenca-text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto 30px;
}

.presenca-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-presenca-toggle {
  background: rgba(9, 11, 18, 0.6);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 18px 40px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-presenca-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.btn-presenca-toggle.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 140, 0, 0.15) 100%);
  border-color: #ff8c00;
  color: #ff8c00;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.2);
  animation: pulse-active-gold 2.5s infinite alternate;
}

.btn-presenca-img-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  filter: invert(1); /* Invert black outline to white for dark mode blending */
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-presenca-toggle.active .btn-presenca-img-icon {
  transform: scale(1.1);
  filter: invert(1) sepia(1) saturate(5) hue-rotate(330deg); /* Shift color from white to gold/orange */
}

.presenca-microcopy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  max-width: 420px;
  line-height: 1.4;
}

@keyframes pulse-active-gold {
  0% {
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.15);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.35);
  }
}

/* PONTE EMOCIONAL SECTION */
.ponte-emocional-section {
  padding: 60px 20px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ponte-emocional-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ponte-badge {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.ponte-lead-text {
  font-size: 1.15rem;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.ponte-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.ponte-paragraphs p {
  margin: 0;
}

.ponte-highlight {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-left: 2px solid #ff8c00;
  padding-left: 20px;
  text-align: left;
  max-width: 540px;
  margin: 5px auto !important;
}

.ponte-keys {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.ponte-key-item {
  font-size: 1.05rem;
  color: var(--color-text-primary);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 14px;
}

.ponte-key-item span {
  color: #ff8c00;
  font-weight: 800;
}

.ponte-footer-text {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  font-weight: 700;
  margin-top: 10px;
}

/* TRANSFORMAÇÃO SECTION */
.transformacoes-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 80px;
}

.transformacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 45px auto;
  max-width: 1000px;
  width: 100%;
}

@media (max-width: 900px) {
  .transformacoes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .transformacoes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.transformation-card {
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.transformation-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

.transformation-card-icon {
  font-size: 2.2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 4px;
}

.transformation-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* Before and After States block inside cards */
.transformation-card-states {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.trans-state {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.trans-state.antes {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.trans-state.antes .state-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.trans-state.antes p {
  color: var(--color-text-secondary);
  margin: 0;
}

.trans-state.depois {
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.trans-state.depois .state-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.trans-state.depois p {
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.transformation-card-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 14px;
  width: 100%;
}

/* Transformations End of Section Block */
.transformations-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .transformations-footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

.transformations-msg-block {
  flex: 1;
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.4) 0%, rgba(10, 13, 20, 0.6) 100%);
  border: 1px solid rgba(255, 140, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  backdrop-filter: blur(10px);
}

.transformations-msg-icon {
  font-size: 2.5rem;
  line-height: 1;
  animation: pulse-center 1.8s ease-in-out infinite alternate;
  flex-shrink: 0;
}

.transformations-msg-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.transformations-cta-block {
  width: 320px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 1px dashed rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .transformations-cta-block {
    width: 100%;
  }
}

.transformations-cta-block:hover {
  border-style: solid;
  border-color: var(--color-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 140, 0, 0.08) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.05);
}

.transformations-cta-icon {
  font-size: 2.2rem;
  line-height: 1;
  animation: pulse-center 1.5s infinite alternate;
}

.transformations-cta-text {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
  
  .ponte-keys {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .ponte-key-item {
    width: 100%;
    max-width: 280px;
  }
  
  .presenca-card {
    padding: 30px 20px;
  }
}

/* Quiz Hero Image (Facilitator - Round Style in Quiz Card) */
.quiz-hero-image-wrapper {
  width: 190px;
  height: 190px;
  margin: 0 auto 24px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-gold));
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: visible; /* Prevents overflow:hidden from cutting border in some engines */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-hero-image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35), 0 0 15px rgba(255, 140, 0, 0.2);
}

.quiz-hero-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.quiz-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  animation: boomerang-zoom-img 16s ease-in-out infinite alternate;
}

/* Hero Image (Facilitator - Rectangular Style in Hero Section) */
.hero-image-rectangular-wrapper {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 28px;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-gold));
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: visible; /* Let inner wrapper handle clipping */
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-rectangular-wrapper:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.35), 0 0 20px rgba(255, 140, 0, 0.25);
}

.hero-image-rectangular-inner {
  width: 100%;
  border-radius: 18.5px;
  overflow: hidden;
  position: relative;
  display: block;
}

.hero-image-rectangular-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18.5px;
  animation: boomerang-zoom-img 16s ease-in-out infinite alternate;
}

/* Skip Quiz Link */
.skip-quiz-link {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
  transition: color 0.3s ease, opacity 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  display: inline-block;
}

.skip-quiz-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-emerald);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.skip-quiz-link:hover {
  color: var(--color-text-primary);
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
}

.skip-quiz-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Boomerang Zoom Animation (Very slow & soft loop) */
@keyframes boomerang-zoom-img {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

/* Social Proof Text Above CTAs */
.social-proof-text {
  color: var(--color-gold);
  opacity: 0.85;
  font-size: 0.84rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: block;
}

/* Social Proof Toast Notification (20% smaller, slow side slide-in, alternated corners) */
.social-proof-toast {
  position: fixed;
  bottom: 110px; /* Posicionado mais acima da tela */
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(20, 20, 20, 0.85); /* Obsidian escuro translúcido */
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 140, 0, 0.22); /* Borda Sunset Orange fina */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 15px rgba(255, 140, 0, 0.05);
  opacity: 0;
  max-width: 256px; /* 20% menor que 320px */
  width: calc(100vw - 40px);
  /* Surgimento mais lento vindo pela lateral */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cantonment Left */
.social-proof-toast.left-corner {
  left: 24px;
  right: auto;
  transform: translateX(-150%) scale(0.95);
}

/* Cantonment Right */
.social-proof-toast.right-corner {
  right: 24px;
  left: auto;
  transform: translateX(150%) scale(0.95);
}

/* Visible State */
.social-proof-toast.visible {
  transform: translateX(0) scale(1) !important;
  opacity: 1;
}

.social-proof-avatar {
  width: 38px; /* 20% menor que 48px */
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-gold); /* Detalhe em ouro */
  flex-shrink: 0;
}

.social-proof-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.social-proof-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  line-height: 1.2;
}

.social-proof-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.social-proof-flag {
  font-size: 0.78rem;
  margin: 0;
  line-height: 1;
}

.social-proof-bullet {
  color: var(--color-text-muted);
  font-size: 0.55rem;
  opacity: 0.6;
  margin: 0;
}

.social-proof-location {
  font-size: 0.66rem;
  color: var(--color-gold); /* Ouro para a localização */
  font-weight: 500;
  margin: 0;
}

.social-proof-action {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85); /* Tom calmo, premium e sofisticado */
  font-weight: 400;
  line-height: 1.35;
  margin-top: 3px;
  letter-spacing: 0.01em;
}

/* Responsivo para mobile */
@media (max-width: 576px) {
  .social-proof-toast {
    bottom: 125px; /* Sobe um pouco mais no mobile para evitar sobrepor CTAs fixos */
    max-width: 240px;
  }
  .social-proof-toast.left-corner {
    left: 20px;
    right: auto;
    transform: translateX(-150%) scale(0.95);
  }
  .social-proof-toast.right-corner {
    right: 20px;
    left: auto;
    transform: translateX(150%) scale(0.95);
  }
}

/* ==========================================
   LANDING PAGE NEW SECTIONS & RESTRUCTURE
   ========================================== */

/* Colunas do Vídeo do Criador */
.creator-section-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 50px auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 960px;
  text-align: left;
}

.creator-video-col {
  flex: 0 0 420px;
  max-width: 420px;
  width: 100%;
}

.creator-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.6) 0%, rgba(10, 13, 20, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.creator-video-wrapper:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.1);
  transform: translateY(-4px);
}

.creator-video-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.8;
  animation: pulse-center 2s infinite alternate;
}

.creator-video-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(4, 5, 8, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.68rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.creator-text-col {
  flex: 1;
}

.creator-profile-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.creator-profile-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  object-fit: cover;
  background: #090b12;
}

.creator-profile-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.creator-profile-name {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.creator-profile-title {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.creator-quote-p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Novo layout da Minha História */
.hick-bio-container {
  padding: 30px 10px;
}

.hick-bio-text-content p {
  line-height: 1.75 !important;
  font-size: 1.02rem !important;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Título de Benefícios com Linhas */
.benefits-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  opacity: 0.65;
  margin-bottom: 5px;
}

.benefits-divider-line {
  height: 1px;
  flex: 0 0 50px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.benefits-divider-line.right {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.benefits-divider-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  font-weight: 700;
}

/* Micro-animações de Hover nos Benefícios (Transformações) e Módulos */
.transformacao-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.transformacao-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.2) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.04);
}

/* O que você VAI / NÃO VAI encontrar */
.filters-section-layout {
  display: flex;
  gap: 30px;
  margin: 50px auto;
  max-width: 960px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
}

.filter-col {
  flex: 1;
}

.filter-col-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-col-title.negative {
  color: #ff5555;
  background: linear-gradient(135deg, #ff5555 30%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.filter-col-title.positive {
  color: var(--color-emerald);
  background: linear-gradient(135deg, #ffffff 40%, var(--color-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.filter-list-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-item-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.filter-item-card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.filter-item-card.negative {
  border-left: 3px solid rgba(255, 85, 85, 0.4);
}

.filter-item-card.positive {
  border-left: 3px solid rgba(16, 185, 129, 0.4);
}

.filter-item-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.filter-item-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Seção de Depoimentos Carrossel */
.testimonials-carousel-section {
  margin: 55px auto;
  max-width: 960px;
  overflow: hidden;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.testimonials-carousel-wrapper {
  overflow-x: auto;
  width: 100%;
  padding: 20px 0;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.testimonials-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.testimonials-carousel-wrapper:active {
  cursor: grabbing;
}

.testimonials-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.testimonial-card {
  flex: 0 0 300px;
  width: 300px;
  scroll-snap-align: center;
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.7) 0%, rgba(10, 13, 20, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.testimonial-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.testimonial-user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #090b12;
}

.testimonial-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-user-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.testimonial-user-meta {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-rating {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-quote-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
}

/* Seção Garantia Premium */
.garantia-premium-section {
  margin: 50px auto;
  max-width: 580px;
}

.garantia-premium-card {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.4) 0%, rgba(10, 13, 20, 0.7) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 22px;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.garantia-seal-icon {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}

.garantia-content-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.garantia-content-box p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 0;
}

/* CTA Final Card e Estrutura */
.cta-final-section {
  margin: 60px auto 40px;
  max-width: 620px;
}

.cta-final-card {
  text-align: center;
  padding: 50px 35px;
  background: radial-gradient(circle at top, rgba(20, 25, 40, 0.8) 0%, rgba(4, 5, 8, 0.98) 100%);
  border: 2px solid rgba(255, 255, 255, 0.03);
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}

.cta-final-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.cta-final-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-final-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.cta-final-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Animações e Reveals */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .creator-section-layout {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .creator-video-col {
    margin: 0 auto;
  }
  
  .creator-profile-badge {
    justify-content: center;
  }
  
  .filters-section-layout {
    flex-direction: column;
    gap: 35px;
  }
  
  .testimonial-card {
    flex: 0 0 280px;
    width: 280px;
    padding: 20px;
  }
  
  .garantia-premium-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
  }
  
  .garantia-seal-icon {
    margin: 0 auto;
  }
}

/* ==========================================
   SEÇÃO DE CREDIBILIDADE & PARA QUEM É/NÃO É
   ========================================== */

/* Seção de Credibilidade */
.credibility-section {
  margin: 50px auto;
  max-width: 680px;
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.3) 0%, rgba(10, 13, 20, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.credibility-title {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.credibility-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.credibility-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.credibility-bullet {
  color: var(--color-gold);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Blocos de Público-alvo (Para quem é / NÃO é) */
.audience-blocks-section {
  display: flex;
  gap: 30px;
  margin: 50px auto;
  max-width: 960px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
}

.audience-col {
  flex: 1;
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.2) 0%, rgba(10, 13, 20, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.audience-col.positive {
  border-top: 3px solid rgba(16, 185, 129, 0.4);
}

.audience-col.negative {
  border-top: 3px solid rgba(255, 85, 85, 0.4);
}

.audience-header {
  margin-bottom: 25px;
}

.audience-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.audience-col.positive .audience-title {
  background: linear-gradient(135deg, #ffffff 40%, var(--color-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.audience-col.negative .audience-title {
  background: linear-gradient(135deg, #ffffff 40%, #ff5555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.audience-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.audience-icon.check {
  color: var(--color-emerald);
}

.audience-icon.cross {
  color: #ff5555;
}

.audience-footer-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gold);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 15px;
  line-height: 1.4;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
  .audience-blocks-section {
    flex-direction: column;
    gap: 30px;
  }
}

/* ==========================================
   SEÇÃO DO APLICATIVO 333HZ
   ========================================== */
.app-integration-section {
  margin: 70px auto;
  max-width: 960px;
  padding: 0 20px;
}

.app-integration-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .app-integration-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
}

/* Smartphone Mockup */
.phone-frame {
  width: 270px;
  height: 480px;
  background: #040508;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 25px rgba(255, 140, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #090b12 0%, #040508 100%);
  color: #fff;
  font-family: inherit;
  padding: 12px;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.phone-icons {
  display: flex;
  gap: 4px;
}

.phone-app-header {
  text-align: center;
  margin-bottom: 25px;
}

.app-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  display: block;
}

.app-tagline {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
  display: block;
}

.phone-app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-daily-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-daily-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.app-daily-item.active {
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
}

.day-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.day-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.day-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.day-duration {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.day-status-icon {
  font-size: 0.75rem;
  color: var(--color-gold);
  opacity: 0.7;
}

/* App Content Area */
.app-content-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-integration-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-integration-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.app-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .app-benefits-list {
    justify-content: center;
  }
}

.app-benefit-item {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.app-benefit-bullet {
  color: var(--color-gold);
  font-weight: bold;
}

.btn-app-outline {
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.btn-app-outline:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

@media (min-width: 769px) {
  .bonus-carousel-track {
    justify-content: center;
  }
}
/* Custom Progress Bar and Mobile constraints for video page */
.video-progress-bar-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.video-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-emerald) 0%, var(--color-gold) 100%);
  transition: width 0.1s linear;
}

@media (max-width: 768px) {
  .clean-video-wrapper {
    height: 60vh !important; /* Constrain video height to 60% of vertical viewport on mobile */
    width: auto !important;
    aspect-ratio: 9/16 !important;
    max-height: 480px !important; /* Safety cap for tall displays */
    margin: 0 auto 20px auto !important;
  }

  .clean-video-wrapper video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Fills the 9/16 layout perfectly on mobile */
  }
}

/* SINGLE-WINDOW CAROUSEL CARDS STYLING */
.transformacoes-carousel-wrapper {
  overflow-x: auto;
  width: 100%;
  padding: 10px 0;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.transformacoes-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.transformacoes-carousel-wrapper:active {
  cursor: grabbing;
}

.transformacoes-carousel-track {
  display: flex;
  width: max-content;
  gap: 0;
}

/* Override transformations grid cards to fit the single-window viewport */
.transformacoes-carousel-track .transformation-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: 600px;
  scroll-snap-align: center;
  box-sizing: border-box;
}

/* Ensure testimonials carousel items take 100% width for the single-window viewport */
.testimonials-carousel-track .testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: 600px;
  scroll-snap-align: center;
  box-sizing: border-box;
}

/* Premium Navigation Buttons for Single-Window Carousels */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--color-gold);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(5px);
  user-select: none;
  padding: 0 0 4px 0; /* Align character arrow vertically */
}

.carousel-nav-btn:hover {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.carousel-nav-btn.prev {
  left: -55px;
}

.carousel-nav-btn.next {
  right: -55px;
}

/* Responsive adjustment for nav buttons on medium screens */
@media (max-width: 1100px) {
  .carousel-nav-btn.prev {
    left: -15px;
  }
  .carousel-nav-btn.next {
    right: -15px;
  }
}

/* Hide navigation buttons on mobile touch screens to avoid clutter, using swipe gestures */
@media (max-width: 640px) {
  .carousel-nav-btn {
    display: none;
  }
}

/* Dots Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--color-gold);
}

/* Audience Carousel Styling */
.audience-carousel-section {
  margin: 50px auto;
  max-width: 960px;
  overflow: hidden;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.audience-carousel-wrapper {
  overflow-x: auto;
  width: 100%;
  padding: 10px 0;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.audience-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.audience-carousel-wrapper:active {
  cursor: grabbing;
}

.audience-carousel-track {
  display: flex;
  gap: 0;
}

/* Ensure each column takes exactly 100% of the single-window viewport width */
.audience-carousel-track .audience-col {
  flex: 0 0 100%;
  width: 100%;
  max-width: 600px;
  scroll-snap-align: center;
  box-sizing: border-box;
}

/* Mobile Optimization Checklist Updates */
@media (max-width: 640px) {
  /* Give breathing room to all three carousel wrappers */
  .transformacoes-carousel-wrapper,
  .testimonials-carousel-wrapper,
  .audience-carousel-wrapper {
    padding: 10px 16px !important;
    scroll-padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  /* Make sure transformation cards have perfect reading padding and look beautiful on mobile */
  .transformacoes-carousel-track {
    width: max-content !important;
    display: flex !important;
    gap: 12px !important;
  }
  .transformacoes-carousel-track .transformation-card {
    flex: 0 0 285px !important;
    width: 285px !important;
    padding: 24px 20px !important;
    gap: 15px !important;
    border-radius: 20px !important;
    scroll-snap-align: start !important;
  }

  /* Testimonials and Audience carousel mobile card alignment overrides */
  .testimonials-carousel-track {
    width: max-content !important;
    display: flex !important;
    gap: 12px !important;
  }
  .testimonials-carousel-track .testimonial-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    scroll-snap-align: start !important;
  }

  .audience-carousel-track {
    width: max-content !important;
    display: flex !important;
    gap: 12px !important;
  }
  .audience-carousel-track .audience-col {
    flex: 0 0 280px !important;
    width: 280px !important;
    scroll-snap-align: start !important;
  }
  
  .trans-state {
    padding: 10px 12px !important;
    font-size: 0.82rem !important;
  }
  
  .trans-state.antes {
    border-color: rgba(255, 255, 255, 0.05) !important;
  }

  .credibility-section {
    padding: 22px 16px !important;
    margin: 30px auto !important;
    border-radius: 18px !important;
  }

  .transformation-card-text {
    padding-top: 12px !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  .transformation-card-title {
    font-size: 1.05rem !important;
  }
  
  .transformation-card-icon {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.8rem !important;
    border-radius: 12px !important;
    margin-bottom: 2px !important;
  }

  /* Mobile Header adaptation */
  .header {
    height: 60px !important;
  }
  .header-logo img {
    height: 32px !important;
  }

  /* Make sure the quiz is perfectly framed and 100% visible on mobile viewports */
  .section-quiz-container {
    padding-top: 70px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 15px !important;
    min-height: calc(100vh - 90px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .quiz-wrapper {
    padding: 20px 15px !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .quiz-header {
    margin-bottom: 12px !important;
  }

  .quiz-progress-bar-container {
    margin-bottom: 15px !important;
  }

  .question-text {
    font-size: 1.12rem !important;
    margin-bottom: 15px !important;
    line-height: 1.35 !important;
  }

  .options-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .option-button {
    padding: 11px 12px !important;
    font-size: 0.86rem !important;
    gap: 10px !important;
    margin-bottom: 0 !important;
  }

  .option-letter {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.75rem !important;
  }

  /* Expand video to fill the screen as much as possible on mobile */
  #guided-experience-section {
    padding: 10px 0 !important;
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .video-experience-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    gap: 10px !important;
  }

  .clean-video-wrapper {
    width: 100% !important;
    aspect-ratio: auto !important;
    height: calc(100vh - 150px) !important; /* Maximizes vertical video fill */
    border-radius: 16px !important;
  }

  #journey-continue-block {
    margin-top: 5px !important;
    height: 50px !important;
  }

  #btn-journey-continue {
    width: 100% !important;
    max-width: 320px !important;
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
  }
}

/* ==========================================
   IOS WEBVIEW SMART HELPER MODAL
   ========================================== */
.hick-helper-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 8, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30000; /* Overrides checkout bar and standard widgets */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hick-helper-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hick-helper-modal-card {
  background: linear-gradient(135deg, rgba(20, 25, 40, 0.98) 0%, rgba(10, 13, 20, 0.99) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 28px;
  padding: 40px 30px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.1);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-sizing: border-box;
}

.hick-helper-modal-overlay.active .hick-helper-modal-card {
  transform: translateY(0) scale(1);
}

.hick-helper-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.hick-helper-modal-close:hover {
  color: #fff;
  transform: scale(1.1);
}

.hick-helper-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: hick-pulse-lock 2s ease-in-out infinite alternate;
}

.hick-helper-title {
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 40%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hick-helper-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
  font-weight: 300;
}

.hick-helper-steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
}

.hick-helper-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.hick-helper-step-number {
  background: var(--color-gold);
  color: #000;
  font-weight: 700;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.hick-helper-step-text strong {
  color: #fff;
  font-weight: 600;
}

.hick-helper-btn-continue {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  margin-top: 15px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
}

.hick-helper-btn-continue:hover {
  color: #fff;
}

@keyframes hick-pulse-lock {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.1));
  }
  100% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
  }
}
