:root {
  --primary-orange: #FC7301;
  --secondary-orange: #FF8E2B;
  --orange-gradient: linear-gradient(135deg, #FC7301 0%, #FF8E2B 100%);
  --orange-shadow: 0 20px 40px rgba(252, 115, 1, 0.2);
  
  --black: #000000;
  --dark: #0A0A0A;
  --gray-900: #121212;
  --gray-800: #1A1A1A;
  --gray-100: #F5F5F7;
  
  --white: #FFFFFF;
  --text-main: #000000;
  --text-muted: #6E6E73;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 1.2s var(--ease-out);
  --transition-medium: all 0.6s var(--ease-out);

  /* Safe-Area Utility Variables for Mobile Devices */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* Staggered Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* Grain Texture via Data URI - Disabled for cleaner modern UI */
body::after {
  display: none;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none; /* Removed fog to restore contrast */
  pointer-events: none;
  z-index: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: #0d0d0d;
}

select option,
.quiz-input option,
.select-box option {
  background-color: #121214 !important;
  color: #ffffff !important;
}


body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-medium);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  transition: var(--transition-medium);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

 .btn-primary-new, .btn-primary-pill {
  background: var(--orange-gradient);
  color: var(--white);
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 
    0 10px 30px rgba(252, 115, 1, 0.3),
    inset 0 -4px 0 rgba(0,0,0,0.1);
  display: inline-block;
  text-align: center;
  transition: var(--transition-medium);
}

 .btn-primary-new:hover, .btn-primary-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(252, 115, 1, 0.4);
  filter: brightness(1.1);
}

/* Icons */
[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
  vertical-align: middle;
  flex-shrink: 0;
}

.stars [data-lucide] {
  width: 18px;
  height: 18px;
  fill: #FFB800;
  color: #FFB800;
}

.btn-primary-new [data-lucide], .btn-primary-pill [data-lucide] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}


/* Utils */
.py-large { padding: 5rem 0; }
.py-medium { padding: 3rem 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 3rem; }
.mb-4 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.bg-dark { background-color: #111; color: white; }
.bg-black { background-color: #000; color: white; }
.bg-soft { background-color: #F9F9F9; }
.text-orange { color: var(--primary-orange) !important; }
.text-muted { color: rgba(0,0,0,0.5); }
.text-white { color: white !important; }

/* Announcement Bar */
.announcement-bar {
  background: radial-gradient(circle, #150307 0%, #050505 100%);
  width: 100%;
  position: relative;
  z-index: 100;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}

/* Ambient glow on the sides of the video */
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 80%;
  background: #ff3366;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .announcement-bar {
    padding: 0;
  }

  /* CTA Buttons mobile touch optimization */
  .btn-primary-new, .btn-primary-pill {
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
    gap: 0.7rem;
  }

  .btn-primary-new [data-lucide], .btn-primary-pill [data-lucide] {
    width: 24px;
    height: 24px;
    stroke-width: 2.2px;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 70px; /* Force header height to match header-content, preventing vertical offset mismatch */
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo svg {
  max-width: 180px;
  height: auto;
}

@media (max-width: 768px) {
  .logo svg {
    max-width: 140px;
  }
}

.nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav a {
  font-weight: 500;
  font-size: 0.9rem;
  color: white;
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 0.8;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #111 !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 700 !important;
  font-size: 0.85rem;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav-outline:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-nav-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: white !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.85rem;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}


.btn-nav-gold::after, .btn-primary-new::after, .btn-primary-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.btn-nav-gold:hover::after, .btn-primary-new:hover::after, .btn-primary-pill:hover::after {
  left: 100%;
}

.btn-nav-gold:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  filter: brightness(1.2);
}

/* Hero (New Editorial Layout) */
.hero {
  padding: 6rem 0 4rem;
  background: radial-gradient(circle at top right, rgba(252, 115, 1, 0.04) 0%, rgba(255, 255, 255, 1) 60%), 
              radial-gradient(circle at bottom left, rgba(252, 115, 1, 0.02) 0%, rgba(255, 255, 255, 1) 80%);
  position: relative;
  overflow: hidden;
}

/* Subtle abstract light glow under the hero content */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 115, 1, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(50px);
}

.hero-new-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text-content {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0;
}

.tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 800;
  background: rgba(252, 115, 1, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(252, 115, 1, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 1.05;
  color: #111115;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  text-align: left;
}

.gradient-text {
  background: linear-gradient(135deg, #FC7301 0%, #FF8E2B 50%, #FC7301 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a4a52;
  margin: 0 0 2.5rem;
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
  max-width: 560px;
}

.btn-primary-new {
  background: var(--orange-gradient);
  color: white;
  padding: 1.1rem 2.8rem;
  border-radius: 16px; /* macOS Style rounded box */
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 
    0 10px 25px rgba(252, 115, 1, 0.25),
    0 1px 2px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: none; /* remove default uppercase for a more elegant SaaS look */
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(252, 115, 1, 0.2);
}

.btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 15px 35px rgba(252, 115, 1, 0.35),
    0 1px 3px rgba(0,0,0,0.1);
  filter: brightness(1.05);
}

.btn-primary-new:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 
    0 5px 15px rgba(252, 115, 1, 0.2),
    inset 0 2px 4px rgba(0,0,0,0.1);
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}

.hero-trust .stars {
  display: flex;
  gap: 3px;
}

.hero-trust .stars i {
  width: 18px;
  height: 18px;
  fill: #FFB800;
  color: #FFB800;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
}

.hero-trust p {
  font-size: 0.92rem;
  color: #51525d;
  margin: 0;
}

.hero-trust p strong {
  color: #111;
  font-weight: 700;
}

.hero-visual-wrapper {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  width: 100%;
}

/* Smartphone Mockup */
.smartphone-mockup {
  position: relative;
  width: 300px;
  height: 604px; /* Proporção do SVG exata (152670x307380) */
  background: transparent;
  border: none;
  border-radius: 40px;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.35));
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  /* NOTE: transform-style: preserve-3d was removed because it prevents overflow:hidden
     from clipping child elements, causing the video iframe to bleed outside the phone frame. */
}

.smartphone-mockup:hover {
  transform: translateY(-8px) rotateY(-4px) rotateX(2px);
  filter: drop-shadow(0 30px 60px rgba(252, 115, 1, 0.25)) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
}

.phone-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.smartphone-screen {
  position: absolute;
  /* Offsets EXATOS calculados do SVG path (viewBox 152670×307380).
     Buraco da tela (3° subpath, sentido anti-horário = hole):
     Left edge x=7320 → 4.795%, Right edge x=144910 → right inset 5.083%,
     Top edge y=5860 → 1.906%, Bottom edge y=301530 → bottom inset 1.903%.
     Corner radius: 17560 SVG units → 34.5px at 300px mockup width. */
  top: 1.906%;
  bottom: 1.903%;
  left: 4.795%;
  right: 5.083%;
  border-radius: 34.5px;
  overflow: hidden;
  background: #000;
  z-index: 1;
}

/* Vimeo iframe base positioning — JavaScript will adjust dimensions dynamically */
.smartphone-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* Static placeholder image — simple cover */
.smartphone-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.smartphone-speaker {
  position: absolute;
  top: 7px; /* Senta perfeitamente sobre a área do speaker na moldura superior */
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 3px;
  background: #2a2a2e;
  border-radius: 10px;
  z-index: 15;
}

.smartphone-home-bar {
  position: absolute;
  bottom: 24px; /* Posicionado acima do bezel inferior */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  z-index: 15;
}

/* Subtle gloss effect on the glass */
.smartphone-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 40.1%
  );
  z-index: 12;
  pointer-events: none;
}

/* Custom Play button overlaying smartphone mockup */
.smartphone-mockup .btn-play-example {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5); /* Fundo escuro translúcido para contraste perfeito */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border: none;
  z-index: 20;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.smartphone-mockup .btn-play-example:hover {
  transform: translateX(-50%) translateY(-3px);
  background: var(--orange-gradient);
  box-shadow: 
    0 15px 35px rgba(252, 115, 1, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.smartphone-mockup .btn-play-example:active {
  transform: translateX(-50%) translateY(-1px) scale(0.96);
}

.smartphone-mockup .btn-play-example i {
  width: 18px;
  height: 18px;
}

/* Media queries for Hero section */
@media (max-width: 991px) {
  .hero {
    padding: 4rem 0;
  }
  .hero-new-layout {
    flex-direction: column;
    gap: 3.5rem;
    max-width: 650px;
    margin: 0 auto;
  }
  .hero-text-content {
    align-items: center;
    text-align: center;
  }
  .main-title {
    font-size: 2.8rem;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 1.15rem;
    text-align: center;
    margin: 0 auto 2rem;
  }
  .hero-cta-wrapper {
    align-items: center;
  }
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .trust-divider {
    width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
  }
  .hero-visual-wrapper {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.2rem;
  }
  .smartphone-mockup {
    width: 250px;
    height: 503px; /* Proporção 152670x307380 para 250px de largura */
    border: none;
    border-radius: 34px;
  }
  .smartphone-screen {
    /* 17560/152670 × 250px = 28.8px */
    border-radius: 29px;
  }
  .smartphone-speaker {
    top: 6px;
    width: 35px;
    height: 2.5px;
  }
  .btn-primary-new, .btn-primary-pill {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Section Headers */
.section-title-serif {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.25;
  padding: 0.1rem 0;
  width: 100%;
  display: block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.process-step {
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.step-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(252, 115, 1, 0.12) 0%, rgba(252, 115, 1, 0.01) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .step-num {
  transform: translateX(-50%) translateY(-6px) scale(1.06);
  background: linear-gradient(180deg, rgba(252, 115, 1, 0.22) 0%, rgba(252, 115, 1, 0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ffffff 0%, #f6f6f9 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-size: 2rem;
  color: var(--primary-orange);
  position: relative;
  z-index: 2;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.06),
    0 5px 15px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(252, 115, 1, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: var(--orange-gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .step-icon {
  transform: translateY(-6px) scale(1.04);
  color: var(--white);
  box-shadow: 
    0 20px 40px rgba(252, 115, 1, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: transparent;
}

.process-step:hover .step-icon::after {
  opacity: 1;
}

.step-icon [data-lucide] {
  width: 32px;
  height: 32px;
  stroke-width: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .step-icon [data-lucide] {
  transform: rotate(-8deg) scale(1.08);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.process-step:hover h4 {
  color: var(--primary-orange);
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Premium WA How It Works */
.wa-container-premium {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.wa-header {
  background: #075E54;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.wa-avatar {
  position: relative;
}

.wa-avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.wa-user-info strong {
  display: block;
  font-size: 1rem;
}

.wa-user-info span {
  font-size: 0.75rem;
  opacity: 0.8;
}

.wa-chat-body {
  padding: 1.5rem;
  background: #e5ddd5;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-bubble-received {
  background: white;
  padding: 0.8rem 1rem;
  border-radius: 0 15px 15px 15px;
  max-width: 85%;
  align-self: flex-start;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wa-bubble-received p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.wa-time {
  font-size: 0.7rem;
  color: #999;
  float: right;
}

.wa-voice-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 280px;
}

.wa-play-main {
  width: 40px;
  height: 40px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.wa-play-main:hover {
  transform: scale(1.1);
  background-color: #20ba59;
}

.wa-play-main:active {
  transform: scale(0.95);
}

.wa-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}

.wa-waveform span {
  width: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: background-color 0.15s ease;
}

.wa-waveform span.active {
  background: #25D366;
}

.wa-waveform span:nth-child(even) { height: 12px; }
.wa-waveform span:nth-child(odd) { height: 18px; }

.wa-audio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #666;
  margin-top: 4px;
}

.wa-audio-meta i {
  color: #34b7f1;
  width: 14px;
  height: 14px;
}

.btn-primary-pill {
  background: var(--orange-gradient);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--orange-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(252, 115, 1, 0.4);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(252, 115, 1, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(252, 115, 1, 0); }
  100% { box-shadow: 0 0 0 0 rgba(252, 115, 1, 0); }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Testimonials Carousel (Premium Layout) */

/* Song Card Type */

.song-card .play-trigger {
  position: absolute;
  bottom: 80px;
  left: 24px;
}

.song-card .play-circle {
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 20px rgba(252, 115, 1, 0.3);
  transition: transform 0.3s ease;
}

.song-card:hover .play-circle {
  transform: scale(1.1);
}

/* WhatsApp Card Type */
.wa-testi-card {
  background: #f0ebe3;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.wa-card-header {
  margin-bottom: 24px;
  background: rgba(255,255,255,0.6);
  padding: 12px;
  border-radius: 16px;
}

.wa-header-user {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.wa-header-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
}

.wa-header-user strong {
  display: block;
  font-size: 0.95rem;
}

.wa-header-user span {
  font-size: 0.75rem;
  color: #666;
}

.wa-bubbles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-bubble-item {
  background: #d9fdd3;
  padding: 12px 16px;
  border-radius: 0 16px 16px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
}

.wa-bubble-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 10px 10px 0;
  border-color: transparent #d9fdd3 transparent transparent;
}

.wa-bubble-play {
  width: 44px;
  height: 44px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.wa-bubble-progress {
  flex-grow: 1;
}

.wa-progress-line {
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  margin-bottom: 6px;
  position: relative;
}
.wa-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #25d366;
  border-radius: 2px;
  width: 0%;
}

.wa-progress-dot {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid white;
}

.wa-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #666;
  font-weight: 600;
}

/* Text Testimonial Type */

/* Carousel Navigation */

/* Spotify Section Refinement */
.spotify-section {
  position: relative;
}

.spotify-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Genre Grid Players */
.genre-grid-players {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

/* Music Styles (Modern Layout) */
.music-styles {
  background: radial-gradient(circle at center, #121214 0%, #0d0d0f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.music-styles::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(circle, rgba(252, 115, 1, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
}

.music-styles .container {
  position: relative;
  z-index: 1;
}

.music-styles .tag-badge {
  background: rgba(252, 115, 1, 0.1) !important;
  border: 1px solid rgba(252, 115, 1, 0.2) !important;
  color: var(--primary-orange) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.music-styles .section-title-serif {
  color: var(--white) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.music-styles .section-title-serif em {
  background: linear-gradient(135deg, #FC7301 0%, #FF9F43 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 700;
  text-shadow: none;
}

.music-styles .section-subtitle {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.music-styles .search-icon {
  color: rgba(255, 255, 255, 0.4) !important;
}

.music-styles .search-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.music-styles .search-input:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--primary-orange) !important;
  box-shadow: 0 0 20px rgba(252, 115, 1, 0.2) !important;
}

.music-styles .search-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.music-styles .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: inline-block;
}

.music-styles .btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.music-styles .btn-outline:active {
  transform: translateY(0);
}

.tag-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--gray-100);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.styles-controls {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.search-icon [data-lucide] {
  width: 18px;
  height: 18px;
}

.search-input {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: white;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: var(--transition-medium);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 4px 20px rgba(252, 115, 1, 0.1);
}

.genre-grid-players {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.style-player-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1.5rem;
}

.style-player-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-orange);
  background: rgba(252, 115, 1, 0.015);
  box-shadow: 0 10px 25px rgba(252, 115, 1, 0.06);
}

.audio-card-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  overflow: hidden;
}

.wa-play-small.player-card-play-btn {
  width: 44px;
  height: 44px;
  background: var(--orange-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 15px rgba(252, 115, 1, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.style-player-card:hover .wa-play-small.player-card-play-btn {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(252, 115, 1, 0.3);
}

.audio-card-details {
  text-align: left;
}

.genre-name-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genre-example-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.audio-card-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.equalizer-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  width: 57px;
}

.eq-bar {
  width: 3px;
  height: 24px;
  background: var(--primary-orange);
  border-radius: 2px;
  transform-origin: bottom;
  transform: scaleY(0.1667);
  transition: transform 0.2s ease;
}

/* Animations for active bars */
.style-player-card.playing .eq-bar {
  animation: bounce 0.8s ease-in-out infinite alternate;
}

.style-player-card.playing .bar-1 { animation-delay: 0.1s; animation-duration: 0.7s; }
.style-player-card.playing .bar-2 { animation-delay: 0.3s; animation-duration: 0.9s; }
.style-player-card.playing .bar-3 { animation-delay: 0.0s; animation-duration: 0.6s; }
.style-player-card.playing .bar-4 { animation-delay: 0.5s; animation-duration: 0.8s; }
.style-player-card.playing .bar-5 { animation-delay: 0.2s; animation-duration: 0.7s; }
.style-player-card.playing .bar-6 { animation-delay: 0.4s; animation-duration: 0.9s; }
.style-player-card.playing .bar-7 { animation-delay: 0.1s; animation-duration: 0.5s; }
.style-player-card.playing .bar-8 { animation-delay: 0.3s; animation-duration: 0.8s; }
.style-player-card.playing .bar-9 { animation-delay: 0.0s; animation-duration: 0.7s; }
.style-player-card.playing .bar-10 { animation-delay: 0.2s; animation-duration: 0.6s; }

@keyframes bounce {
  0% {
    transform: scaleY(0.1667);
  }
  100% {
    transform: scaleY(1);
  }
}

.wa-time-small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 32px;
  text-align: right;
}

/* Why Choose Us Grid */

/* Categories Section - Story Cards */
.categories-section {
  overflow: hidden;
  position: relative;
  background: #000;
}

.categories-section::before,
.categories-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.categories-section::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.categories-section::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.container-full {
  width: 100%;
  padding: 0; /* Remove padding to allow cards to go edge to edge under the fade */
}

.scroll-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-orange);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.categories-carousel {
  width: 100%;
  overflow-x: auto;
  padding: 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories-carousel::-webkit-scrollbar {
  display: none;
}

.cat-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 1rem;
  animation: auto-scroll 120s linear infinite;
}

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

@keyframes auto-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); } /* -50% because we duplicated items */
}

.cat-story-card {
  position: relative;
  flex: 0 0 280px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 45px rgba(0,0,0,0.4);
  background: #111;
  perspective: 1000px; /* For 3D feel */
}

.cat-story-card img {
  width: 100%;
  height: 110%; /* Extra height for parallax */
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.8;
}

.cat-story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.5rem;
  transition: all 0.5s ease;
  z-index: 2;
}

.cat-story-card h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.cat-story-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(252, 115, 1, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.cat-story-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(252, 115, 1, 0.3);
}

.cat-story-card:hover img {
  transform: scale(1.1) translateY(-5%);
  opacity: 1;
}

.cat-story-card:hover .cat-story-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(252, 115, 1, 0.3) 50%, transparent 100%);
}

.cat-story-card:hover h4 {
  transform: translateY(0);
  color: var(--primary-orange);
}

.cat-story-card:hover::after {
  opacity: 1;
}

/* Interactive Vinyl Player Section */
.experience-section {
  background: #f8f9fa;
  overflow: hidden;
}

.player-scene {
  background: #ffffff;
  border-radius: 40px;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  max-width: 1000px;
  margin: 4rem auto;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.02),
    0 40px 100px rgba(0,0,0,0.05);
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
}

.player-top {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: center;
  width: 100%;
}

.player-info {
  flex: 1;
  text-align: left;
  max-width: 320px;
}

.track-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.player-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.player-tags .tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8B6E30;
  border: 1px solid rgba(139, 110, 48, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  background: rgba(201,153,58,0.05);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vol-icon {
  color: rgba(0,0,0,0.2);
  width: 16px !important;
}

.player-footer {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.song-pill {
  background: #f1f1f1;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
}

.song-pill:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(252, 115, 1, 0.28);
}

.song-pill:hover .pill-text {
  color: #fff;
}

.song-pill:hover .pill-dot {
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.song-pill.active {
  background: white;
  border-color: var(--primary-orange);
  box-shadow: 0 8px 20px rgba(252, 115, 1, 0.18);
  transform: scale(1.02);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.song-pill.active .pill-dot {
  background: var(--primary-orange);
  box-shadow: 0 0 10px rgba(252, 115, 1, 0.7);
}

.pill-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  transition: color 0.25s ease;
}

.song-pill.active .pill-text {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .player-top {
    flex-direction: column;
    gap: 2rem;
  }
  .player-scene {
    padding: 3rem 1.5rem;
  }
  .player-info {
    text-align: center;
    max-width: 100%;
  }
  .player-controls {
    justify-content: center;
  }
}

/* Security and FAQ */
.h-30 { height: 30px; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

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

.plus {
  font-size: 1.5rem;
  transition: 0.3s;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

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

/* Responsive Fixes */
@media (max-width: 768px) {
   .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Benefits */

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2rem;
}

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

.footer h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
}

/* Interactive Enhancements */
.btn-magnetic {
  transition: transform 0.2s var(--ease-out) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reveal {
  will-change: transform, opacity;
}

/* Ensure em tags in titles have a distinct look */
.section-title-serif em, .main-title em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  color: var(--primary-orange);
  display: inline-block;
  padding-right: 0.05em;
  padding-left: 0.05em;
}

/* Fix for any overlapping reveal/magnetic transforms */
.btn-magnetic.reveal.visible {
  transition: transform 0.2s var(--ease-out), opacity 1.2s var(--ease-out), background 0.3s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
}

.plus {
  font-size: 1.5rem;
  color: var(--primary-orange);
  transition: var(--transition-medium);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding-bottom: 1rem;
  color: var(--text-muted);
}

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

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

/* Reactions Premium Carousel */

.card-inner {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

/* Video Type */

/* WA Type */
.wa-type {
  background: #fdfdfd;
}

.wa-premium-header {
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.wa-premium-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wa-premium-header strong { display: block; font-size: 1.05rem; }
.wa-premium-header span { font-size: 0.8rem; color: #25D366; font-weight: 600; }

.wa-icon-top {
  position: absolute;
  right: 1.8rem;
  color: #25D366;
  width: 20px;
  height: 20px;
}

.wa-premium-body {
  padding: 2.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-image: radial-gradient(#25d366 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  background-color: rgba(37, 211, 102, 0.02);
}

.wa-voice-bubble {
  background: #E1FFC7;
  padding: 0.8rem 1.2rem;
  border-radius: 0 20px 20px 20px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  width: fit-content;
}

.wa-play-btn {
  width: 42px;
  height: 42px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-wave-visual {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 15px;
  margin-bottom: 4px;
}

.wa-wave-visual span {
  width: 2px;
  background: #999;
  border-radius: 2px;
}

.wa-wave-visual span:nth-child(2n) { height: 10px; }
.wa-wave-visual span:nth-child(3n) { height: 15px; }

.wa-duration { font-size: 0.7rem; color: #666; }

.wa-status-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: #444;
}

/* Text Type */

/* Carousel Navigation */
/* Testimonials */

/* Reactions */


.grayscale {
  filter: grayscale(1);
}


.security-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.subtitle-small {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.grayscale {
  filter: grayscale(1);
  opacity: 0.4;
  transition: var(--transition-medium);
}

.grayscale:hover {
  filter: grayscale(0);
  opacity: 1;
}

.h-30 {
  height: 30px;
}

/* FAQ Refinement */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

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

/* Reactions Section */

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-medium);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.pricing-card.popular {
  background: var(--black);
  color: white;
  padding: 4rem 2rem;
  border-color: var(--primary-orange);
  z-index: 2;
}

.pricing-card.popular h3 { color: white; }
.pricing-card.popular .price { color: var(--primary-orange); }

.pricing-card h3 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

/* Artists Section */


/* ==========================================================================
   Vinyl Player Master Edition (Experience Section)
   ========================================================================== */
.player-scene {
  background: white;
  border-radius: 40px;
  padding: 50px;
  max-width: 1000px;
  margin: 3rem auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
}

.player-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.player-info {
  display: flex;
  flex-direction: column;
}

.track-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-orange);
  margin-bottom: 0.8rem;
}

.player-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.tag {
  padding: 6px 14px;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Progress Bar */

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Volume */

/* Experience Feature Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 4rem auto 0;
}

.exp-card {
  text-align: center;
  padding: 3.5rem 2.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.03), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.exp-card:hover {
  transform: translateY(-10px) scale(1.01);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-color: rgba(252, 115, 1, 0.25);
  box-shadow: 
    0 30px 60px -10px rgba(252, 115, 1, 0.12),
    0 10px 20px -5px rgba(252, 115, 1, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.exp-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(252, 115, 1, 0.08) 0%, rgba(255, 77, 109, 0.06) 100%);
  color: var(--primary-orange);
  border-radius: 18px;
  border: 1px solid rgba(252, 115, 1, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover .exp-icon {
  background: linear-gradient(135deg, #FC7301 0%, #FF8E2B 100%);
  color: white;
  border-color: transparent;
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 10px 20px rgba(252, 115, 1, 0.25);
}

.exp-icon i {
  width: 24px;
  height: 24px;
}

.exp-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111115;
  letter-spacing: -0.02em;
}

.exp-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #51525d;
}

@media (max-width: 1100px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.experience-cta {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

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

.vol-icon {
  color: #888;
  width: 18px;
  height: 18px;
}

/* Playlist */
.player-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.song-pill {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #f8f8f8;
  color: #666;
  font-weight: 600;
  font-size: 0.9rem;
  user-select: none;
}

.song-pill:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(252, 115, 1, 0.28);
}

.song-pill.active {
  background: #111;
  border-color: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transform: scale(1.02);
}

.song-pill.active .pill-text {
  color: #fff !important;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .player-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .player-controls {
    justify-content: center;
  }
}

/* Footer Grid Alignment */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links h4, .footer-contact h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

/* Footer Social Buttons styling */
.footer-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.25rem;
}

.footer-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  max-width: 180px !important;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

.footer-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2) !important;
}

/* Warranty Section */
.warranty-card-premium {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
  background: #FFFBF5;
  border-radius: 40px;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(252, 115, 1, 0.1);
  box-shadow: 0 15px 35px rgba(252, 115, 1, 0.05);
}

.warranty-icon-circle {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}

.warranty-text-content {
  text-align: left;
}

.warranty-text-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.warranty-text-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

/* Reactions CTA */

.btn-social-ig, .btn-social-sp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-social-ig i, .btn-social-sp i,
.btn-social-ig svg, .btn-social-sp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-social-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.btn-social-sp {
  background: #1DB954;
  color: white;
}

.btn-social-ig:hover, .btn-social-sp:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 968px) {
  
  .warranty-card-premium {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
  }
  
  .warranty-text-content {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .section-title-serif {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
  }
}

/* Horizontal Pricing Quiz Step */
.quiz-pricing-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card-horizontal {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 16px;
}

.pricing-card-horizontal:hover {
  border-color: #ccc;
  background: #fafafa;
}

.pricing-card-horizontal.active {
  border: 2px solid var(--primary-orange);
  box-shadow: 0 6px 24px rgba(252, 115, 1, 0.1);
  background: rgba(252, 115, 1, 0.02);
}

.plan-icon-box {
  width: 44px;
  height: 44px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-icon-box i {
  color: #444;
  width: 22px;
  height: 22px;
}

.plan-info {
  flex: 1;
}

.plan-info h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.plan-info h3 span {
  font-weight: 500;
  color: #666;
}

.plan-info p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.4;
}

.plan-info p b {
  color: #333;
}

.plan-price {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 15px;
}

.plan-radio {
  width: 24px;
  height: 24px;
  border: 2px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.active .plan-radio {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

.plan-radio i {
  color: white;
  width: 14px;
  height: 14px;
}

/* Badges */
.plan-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: white;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.plan-badge-top-vip {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #C4A66D; /* Gold for VIP */
  color: white;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.pricing-card-horizontal.vip {
  border-color: #EBD3FF;
}

.pricing-card-horizontal.vip.active {
  border-color: #C4A66D;
}

/* Satisfaction Box */
.quiz-satisfaction-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: #F2FCF6;
  border-radius: 18px;
  border: 1px solid #DDF7E8;
  text-align: left;
  margin-top: 10px;
}

.satisfaction-icon {
  color: #00B341;
  flex-shrink: 0;
}

.satisfaction-icon i {
  width: 28px;
  height: 28px;
}

.satisfaction-text h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: #004D1C;
  margin-bottom: 2px;
}

.satisfaction-text p {
  font-size: 0.9rem;
  color: #00B341;
  font-weight: 500;
}

@media (max-width: 600px) {
  .pricing-card-horizontal {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 14px;
  }
  .plan-icon-box {
    width: 38px;
    height: 38px;
  }
  .plan-icon-box i {
    width: 18px;
    height: 18px;
  }
  .plan-info h3 {
    font-size: 0.95rem;
  }
  .plan-info p {
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .plan-price {
    font-size: 1.15rem;
    margin: 0 8px;
  }
  .plan-radio {
    width: 20px;
    height: 20px;
  }
  .plan-radio i {
    width: 12px;
    height: 12px;
  }
  .quiz-satisfaction-box {
    padding: 16px 18px;
    gap: 12px;
    border-radius: 14px;
  }
  .satisfaction-icon i {
    width: 22px;
    height: 22px;
  }
  .satisfaction-text h4 {
    font-size: 0.88rem;
  }
  .satisfaction-text p {
    font-size: 0.8rem;
  }
  .quiz-pricing-options {
    gap: 14px;
  }
  .plan-badge-top,
  .plan-badge-top-vip {
    font-size: 0.62rem;
    padding: 3px 10px;
    top: -10px;
  }
}


/* Quiz Overlay */
.quiz-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quiz-overlay.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 1;
}

.quiz-modal-inner {
  max-width: 720px;
  margin: 40px auto;
  padding: 32px 40px 40px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

/* ── Quiz Header (compacto e elegante) ── */
.quiz-header {
  margin-bottom: 2.5rem;
  padding-top: 8px;
}

.quiz-progress-bar {
  width: 100%;
  height: 3px;
  background: #e8e8e8;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), #ff9a44);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #aaa;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quiz-logo-small {
  background: #111;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quiz-logo-small svg {
  height: 18px;
  width: auto;
}

/* ── Quiz Body ── */
.quiz-body {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.quiz-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.quiz-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #888;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* ── Labels ── */
.quiz-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  text-align: left;
  letter-spacing: -0.01em;
}

/* ── Pill Options (seleção) ── */
.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.pill-option {
  padding: 11px 22px;
  border-radius: 50px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-user-select: none;
}

.pill-option:hover {
  border-color: #bbb;
  background: #f5f5f5;
  transform: translateY(-1px);
}

.pill-option.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
  box-shadow: 0 4px 18px rgba(252, 115, 1, 0.25);
  transform: translateY(-1px);
}

/* ── Inputs ── */
.quiz-input-group {
  text-align: left;
}

.quiz-input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1.5px solid #e0e0e0;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 8px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quiz-input:focus, .quiz-textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(252, 115, 1, 0.08);
}

.quiz-textarea {
  width: 100%;
  height: 180px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1.5px solid #e0e0e0;
  font-family: var(--font-body);
  font-size: 1rem;
  resize: none;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  line-height: 1.6;
}



.quiz-hint {
  font-size: 0.82rem;
  color: #aaa;
  font-style: italic;
  margin-top: 4px;
}

/* ── Quiz Footer (botões de navegação) ── */
.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-bottom: 1rem;
}

.btn-quiz-back {
  background: none;
  border: 1.5px solid #e0e0e0;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #555;
}

.btn-quiz-back:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.btn-quiz-next {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9a44 100%);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(252, 115, 1, 0.3);
}

.btn-quiz-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252, 115, 1, 0.4);
}

.btn-quiz-next:disabled,
.btn-quiz-next.disabled {
  background: #d5d5d5;
  color: #888;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: auto;
}

/* ── Botão fechar ── */
.quiz-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 2001;
}

.quiz-close:hover {
  color: #333;
  transform: rotate(90deg);
}

/* ── Textos legais ── */
.quiz-legal {
  text-align: center;
  font-size: 0.72rem;
  color: #bbb;
  margin-top: 1.5rem;
}

.quiz-legal a {
  color: #bbb;
  text-decoration: underline;
}

.quiz-copyright {
  text-align: center;
  font-size: 0.68rem;
  color: #ddd;
  letter-spacing: 2px;
  margin-top: 0.8rem;
  text-transform: uppercase;
}

.word-count {
  font-size: 0.78rem;
  color: #ccc;
  margin-top: 4px;
}

/* ── Responsivo Mobile ── */
@media (max-width: 768px) {
  .quiz-overlay {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .quiz-overlay.active {
    display: block;
  }
  .quiz-modal-inner {
    padding: 20px 20px 28px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    background: #ffffff;
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* Header mobile: logo escondida, layout compacto */
  .quiz-header {
    margin-bottom: 1.2rem;
    padding-top: 0;
  }
  .quiz-progress-bar {
    margin-bottom: 8px;
  }
  .quiz-logo-small {
    display: none;
  }
  .quiz-top-info {
    font-size: 0.72rem;
  }

  /* Tipografia mobile */
  .quiz-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  .quiz-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  /* Labels e opções compactas */
  .quiz-label {
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
  }
  .quiz-options {
    gap: 8px;
    margin-bottom: 1.5rem;
  }
  .pill-option {
    padding: 8px 18px;
    font-size: 0.88rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Inputs mobile */
  .quiz-input {
    padding: 13px 16px;
    font-size: 0.92rem;
    border-radius: 12px;
  }
  .quiz-textarea {
    padding: 14px 16px;
    height: 150px;
    font-size: 0.92rem;
    border-radius: 12px;
  }

  /* Botões de navegação mobile */
  .quiz-footer {
    margin-top: 1.5rem;
    gap: 10px;
  }
  .btn-quiz-next {
    padding: 12px 20px;
    font-size: 0.88rem;
    gap: 8px;
  }
  .btn-quiz-back {
    padding: 10px 16px;
    font-size: 0.82rem;
    gap: 6px;
  }

  /* Fechar no mobile */
  .quiz-close {
    top: 10px;
    right: 14px;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Textos legais mais compactos */
  .quiz-legal {
    margin-top: 1rem;
    font-size: 0.68rem;
  }
  .quiz-copyright {
    margin-top: 0.5rem;
    font-size: 0.62rem;
  }

  /* Hint e word-count */
  .quiz-hint {
    font-size: 0.76rem;
  }
  .word-count {
    font-size: 0.72rem;
  }
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: calc(80px + var(--safe-top));
  left: 0;
  width: 100%;
  padding: 2rem;
  padding-bottom: calc(2rem + var(--safe-bottom));
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--black);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 12px 0;
  display: block;
}

@media (max-width: 768px) {
  .header-content {
    position: relative;
    justify-content: flex-start;
  }
  .header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
  }
  .nav {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    margin-left: -12px; /* Aligns the button icon with the container edge */
    z-index: 11;
  }
  .mobile-menu {
    display: flex;
  }
}

/* Pricing Refinement on Landing */
#pricing {
  scroll-margin-top: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 4rem auto 0;
}

.pricing-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: var(--primary-orange);
}

.pricing-card.popular {
  border: 2px solid var(--primary-orange);
  position: relative;
}

.pricing-card.popular:hover {
  border-color: var(--secondary-orange);
  box-shadow: 0 30px 60px rgba(252, 115, 1, 0.25);
}

.pricing-card.vip {
  border: 1px solid rgba(205, 168, 81, 0.25);
}

.pricing-card.vip:hover {
  border-color: #cda851;
  box-shadow: 0 30px 60px rgba(205, 168, 81, 0.15);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 2rem;
  white-space: nowrap;
}

.plan-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: top;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Specific theme rules for the popular black card */
.pricing-card.popular .plan-price,
.pricing-card.popular .plan-price .currency,
.pricing-card.popular .plan-price .amount {
  color: var(--white) !important;
}

.pricing-card.popular .plan-price .period {
  color: rgba(255, 255, 255, 0.6) !important;
}

.pricing-card.popular .plan-features li {
  color: rgba(255, 255, 255, 0.85) !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.pricing-card.popular .plan-features li strong {
  color: var(--white) !important;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.8rem 0;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #f5f5f5;
}

.plan-features li svg,
.plan-features li i {
  color: #25d366 !important;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}


/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  right: calc(20px + var(--safe-right));
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.float-btn.wa-float {
  background-color: #25D366;
  color: white;
  text-decoration: none;
}

.float-btn.wa-float:hover {
  background-color: #1EBE5D;
  transform: scale(1.1);
}

.float-btn.scroll-top {
  background-color: var(--black);
  color: white;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-btn.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn.scroll-top:hover {
  background-color: var(--primary-orange);
}

/* --- CHECKOUT & REVIEW SECTION --- */
.quiz-review-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  padding: 0;
  border-radius: 16px;
  margin-top: 12px;
  border: 1.5px solid #eee;
  overflow: hidden;
}
.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 20px;
}
.review-item:last-child {
  border-bottom: none;
}
.review-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-info i {
  color: var(--primary-orange);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.review-info strong {
  display: block;
  font-size: 0.88rem;
  color: #222;
  margin-bottom: 2px;
}
.review-info p {
  font-size: 0.82rem;
  color: #999;
  margin: 0;
}
.btn-review-edit {
  background: none;
  border: 1.5px solid #e0e0e0;
  color: #666;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-review-edit:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background: rgba(252, 115, 1, 0.04);
}
.quiz-capture-section {
  background: #fff;
  border: 1.5px solid #eee;
  padding: 24px;
  border-radius: 16px;
}

/* Custom Modal Overlays for Legal Pages */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  max-height: 80dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.modal-content {
  padding: 40px;
  overflow-y: auto;
  color: #ccc;
  font-family: var(--font-body);
  line-height: 1.6;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.modal-content h2 {
  font-family: var(--font-heading);
  color: white;
  font-size: 2rem;
  margin-bottom: 8px;
}

.modal-content h3 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.modal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Checkout Step (Step 7 Custom Layout)
   ========================================================================== */
.checkout-step-inner {
  max-width: 620px !important;
  margin: 30px auto !important;
  padding: 15px !important;
  min-height: auto !important;
}

.checkout-header {
  margin-bottom: 2rem !important;
}

.checkout-body {
  text-align: center;
  width: 100%;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.checkout-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.checkout-subtitle strong {
  color: #111;
  font-weight: 700;
}

/* Badges Row */
.checkout-badges-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f7;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #444;
  border: 1px solid #e5e5ea;
}

.checkout-badge i {
  width: 14px;
  height: 14px;
  color: #666;
}

/* Cards System */
.checkout-card, .checkout-details-card {
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 20px;
  padding: 24px;
  margin-top: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.main-capture-card {
  border-color: #e5e5ea;
}

/* Inputs */
.checkout-input-group {
  text-align: left;
}

.checkout-input-group label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.label-required {
  color: #d93838;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 4px;
}

.label-optional {
  color: #8e8e93;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 4px;
}

.phone-prefix-select {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-right: 1px solid #e0e0e0;
  background: #f9f9fb;
  height: 100%;
}

.phone-prefix-select .flag-icon {
  font-size: 1.2rem;
}

.phone-prefix-select .prefix-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.checkout-phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  height: 60px;
  transition: border-color 0.3s ease;
}

.checkout-phone-input-wrapper:focus-within {
  border-color: var(--primary-orange);
}

.checkout-phone-input {
  border: none !important;
  margin-bottom: 0 !important;
  height: 100% !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
  font-size: 1rem !important;
}

/* Custom Checkbox */
.checkout-checkbox-group {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.checkout-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  user-select: none;
}

.checkout-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox {
  position: relative;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1.5px solid #d1d1d6;
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.checkout-checkbox-label input:checked ~ .custom-checkbox {
  background-color: #2e5a44;
  border-color: #2e5a44;
}

.custom-checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

.checkout-checkbox-label input:checked ~ .custom-checkbox:after {
  display: block;
}

.checkout-checkbox-label .custom-checkbox:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* CTA Green Button */
.btn-checkout-cta {
  width: 100%;
  background: #2e5a44;
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(46, 90, 68, 0.2);
  transition: all 0.3s ease;
  border: none;
}

.btn-checkout-cta:hover {
  background: #224332;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 90, 68, 0.3);
}

.btn-checkout-cta:active {
  transform: translateY(0);
}

.btn-checkout-cta i {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

.checkout-guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #2e5a44;
  font-weight: 700;
}

.checkout-guarantee-badge i {
  width: 16px;
  height: 16px;
}

/* Order Summary Receipt Card */


.checkout-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  padding: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.checkout-option-item:hover {
  border-color: #acacb0;
  background: #fafafb;
  transform: translateY(-1px);
}

.option-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.option-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-icon-box i {
  width: 20px;
  height: 20px;
}

.bg-light-green { background: #e8f8f0; }
.bg-light-blue { background: #eef7fc; }
.bg-light-purple { background: #f7f2fa; }

.text-green { color: #2e5a44; }
.text-blue { color: #007aff; }
.text-orange { color: var(--primary-orange); }
.text-purple { color: #af52de; }

.option-details h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.option-details p {
  font-size: 0.78rem;
  color: #8e8e93;
  margin: 0;
  font-weight: 500;
}

.option-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.option-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
}

.option-right i {
  width: 16px;
  height: 16px;
  color: #8e8e93;
}

/* Extras collapsible list */

/* Trust Box */
.checkout-satisfaction-card {
  background: #edf9f4;
  border: 1px solid #c6efdb;
  border-radius: 20px;
  padding: 24px;
  text-align: left;
}

.satisfaction-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.satisfaction-header i {
  width: 22px;
  height: 22px;
}

.satisfaction-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2e5a44;
  margin: 0;
}

.satisfaction-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.satisfaction-bullets li, .details-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  background: #2e5a44;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.satisfaction-bullets li strong {
  font-size: 0.85rem;
  color: #2e5a44;
  display: block;
}

.satisfaction-bullets li p, .details-list li p {
  font-size: 0.75rem;
  color: #4a6b5c;
  margin: 2px 0 0 0;
}

/* Recebe list */
.details-list li p {
  color: #666;
}

.details-list li strong {
  font-size: 0.88rem;
  color: #111;
  display: block;
}

.checkout-details-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.why-choose-list li i {
  width: 16px;
  height: 16px;
  color: #2e5a44;
  stroke-width: 2.5px;
}

/* Prompt text below bottom button */
.checkout-prompt-note {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  font-weight: 500;
}

/* Testimonial slider */

/* Quiz overlay style adjustments merged into main quiz-overlay block */

/* =============================================
   EXTRAS MODAL
   ============================================= */
.extras-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.extras-modal-overlay.active {
  display: flex;
}

@keyframes slideUpModal {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.extras-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #f2f2f7;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.extras-modal-close:hover { background: #e5e5ea; }

.extras-modal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid #e5e5ea;
  border-radius: 16px;
  padding: 14px 14px 14px 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}

.extras-modal-item:hover {
  border-color: #c7c7cc;
  background: #fafafa;
}

.extras-modal-item.selected {
  border-color: #2e5a44;
  background: #f4fbf7;
}

.extras-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #c7c7cc;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.extras-radio-circle.checked {
  border-color: #2e5a44;
  background: #2e5a44;
  box-shadow: inset 0 0 0 4px #fff;
}

/* Modal Footer */

.btn-extras-save {
  width: 100%;
  background: #c05a1f;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-extras-save:hover {
  background: #a84d18;
  transform: translateY(-1px);
}

.btn-extras-clear {
  width: 100%;
  background: #fff;
  color: #333;
  border: 1.5px solid #d1d1d6;
  border-radius: 14px;
  padding: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-extras-clear:hover {
  background: #f5f5f7;
  border-color: #acacb0;
}


/* =============================================
   STORY EDIT MODAL
   ============================================= */
.story-edit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(15, 15, 15, 0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.story-edit-overlay.active {
  display: flex;
}

.story-edit-modal {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow: hidden;
  animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Header */
.story-edit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 12px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.story-edit-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #1c1c1e;
  margin: 0;
}

.story-edit-close {
  background: #f2f2f7;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #8e8e93;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.story-edit-close:hover {
  background: rgba(252, 115, 1, 0.1);
  color: var(--primary-orange);
  transform: rotate(90deg);
}

/* Sub-header: tag + hint */
.story-edit-subheader {
  padding: 0 28px 18px;
  background: #ffffff;
  border-bottom: 1px solid #f2f2f7;
}

.story-edit-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(252, 115, 1, 0.08);
  color: var(--primary-orange);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-edit-hint {
  font-size: 0.82rem;
  color: #636366;
  margin: 0;
  line-height: 1.5;
}

.story-edit-hint em {
  font-style: normal;
  color: var(--primary-orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Scrollable body */
.story-edit-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

/* Each section card */
.story-edit-section {
  background: #fffcf9;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f9eedf;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.story-edit-section:focus-within {
  border-color: rgba(252, 115, 1, 0.4);
  box-shadow: 0 0 0 4px rgba(252, 115, 1, 0.08);
}

.story-section-header {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #2c2c2e;
  margin-bottom: 4px;
}

.story-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8e8e93;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.story-edit-textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  resize: vertical;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #2c2c2e;
  background: #ffffff;
  line-height: 1.55;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.story-edit-textarea:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(252, 115, 1, 0.08);
}

.story-edit-textarea::placeholder {
  color: #c7c7cc;
}

/* Sticky footer */
.story-edit-footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px 24px;
  background: #ffffff;
  border-top: 1px solid #f2f2f7;
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.btn-story-back {
  flex: 1;
  background: #ffffff;
  color: #48484a;
  border: 1.5px solid #d1d1d6;
  border-radius: 14px;
  padding: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-story-back:hover {
  background: #f2f2f7;
  border-color: #aeaeb2;
}

.btn-story-save {
  flex: 2;
  background: linear-gradient(135deg, var(--primary-orange), #ff9a44);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(252, 115, 1, 0.2);
}
.btn-story-save:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(252, 115, 1, 0.3);
}
.btn-story-save:active {
  transform: translateY(0);
}

@media (max-width: 680px) {
  .story-edit-overlay {
    padding: 0;
  }
  .story-edit-modal {
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }
  .story-edit-header {
    padding: 16px 20px 10px;
  }
  .story-edit-subheader {
    padding: 0 20px 14px;
  }
  .story-edit-body {
    padding: 16px 20px 24px;
  }
  .story-edit-footer {
    padding: 14px 20px 20px;
  }
}

/* ==========================================================================
   Spotify Player Theme Overrides
   ========================================================================== */
/* ==========================================================================
   Spotify Official Mobile Player Replica Theme
   ========================================================================== */
.spotify-card-container {
  max-width: 400px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.spotify-card {
  background: #121212 !important;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.spotify-art-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  background: #282828;
  margin-bottom: 24px;
}

.spotify-art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotify-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  text-align: left;
}

.spotify-info-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 80%;
}

.spotify-device-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #1DB954;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spotify-device-label i {
  width: 12px;
  height: 12px;
}

.spotify-song-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.spotify-song-artist {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #b3b3b3 !important;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotify-heart-btn {
  background: transparent;
  border: none;
  color: #b3b3b3;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.spotify-heart-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.spotify-heart-btn i {
  width: 22px;
  height: 22px;
}

/* Progress bar section */
.spotify-progress-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.spotify-card .prog-bar-container {
  height: 4px;
  background: #535353 !important;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: height 0.1s ease;
}

.spotify-card .prog-bar-container:hover {
  height: 6px;
}

.spotify-card .prog-fill {
  background: #ffffff !important; /* white progress indicator in Spotify */
  border-radius: 4px;
  height: 100%;
  position: relative;
}

.spotify-card .prog-bar-container:hover .prog-fill {
  background: #1DB954 !important; /* Green on hover */
}

/* Slider thumb handle */
.spotify-card .prog-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transition: transform 0.1s ease;
}

.spotify-card .prog-bar-container:hover .prog-fill::after {
  transform: translateY(-50%) scale(1);
}

.spotify-card .prog-times {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #b3b3b3 !important;
  font-weight: 500;
}

/* Controls */
.spotify-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 8px;
}

.spotify-controls-row .ctrl-btn {
  background: transparent;
  border: none;
  color: #b3b3b3 !important;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.spotify-controls-row .ctrl-btn:hover {
  color: #ffffff !important;
  transform: scale(1.08);
}

.spotify-controls-row .ctrl-btn.active {
  color: #1DB954 !important;
}

.spotify-controls-row .ctrl-btn i {
  width: 20px;
  height: 20px;
}

/* Specific play button: large solid white circle with black icon */
.spotify-play-btn {
  background: #ffffff !important;
  color: #000000 !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.spotify-play-btn:hover {
  transform: scale(1.06);
}

.spotify-play-btn:active {
  transform: scale(0.95);
}

.spotify-play-btn i {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Bottom row: Volume and Device Status */
.spotify-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.spotify-bottom-row .vol-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spotify-bottom-row .vol-control .ctrl-btn {
  background: transparent;
  border: none;
  color: #b3b3b3 !important;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.spotify-bottom-row .vol-control .vol-bar-container {
  height: 4px;
  background: #535353 !important;
  border-radius: 4px;
  width: 80px;
  position: relative;
  cursor: pointer;
}

.spotify-bottom-row .vol-control .vol-fill {
  background: #ffffff !important;
  height: 100%;
  border-radius: 4px;
}

.spotify-bottom-row .vol-control .vol-bar-container:hover .vol-fill {
  background: #1DB954 !important;
}

.spotify-device-info {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.spotify-device-info i {
  width: 14px;
  height: 14px;
}

/* Playlist Wrapper below card */
.spotify-playlist-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 24px;
  text-align: left;
}

.spotify-playlist-wrapper .playlist-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotify-playlist-wrapper .playlist-title i {
  color: #1DB954;
  width: 18px;
  height: 18px;
}

.spotify-playlist-wrapper .player-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Playlist Song Pills stylized as flat list items (rows) */
.spotify-playlist-wrapper .song-pill {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  width: 100%;
}

.spotify-playlist-wrapper .song-pill .pill-text {
  color: #b3b3b3 !important;
  transition: color 0.2s ease;
}

.spotify-playlist-wrapper .song-pill:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-1px);
}

.spotify-playlist-wrapper .song-pill:hover .pill-text {
  color: #ffffff !important;
}

.spotify-playlist-wrapper .song-pill.active {
  background: rgba(29, 185, 84, 0.15) !important;
  border-color: #1DB954 !important;
}

.spotify-playlist-wrapper .song-pill.active .pill-text {
  color: #1DB954 !important;
}

.spotify-playlist-wrapper .song-pill.active .pill-dot {
  background: #1DB954 !important;
}

/* Mobile responsive fixes */
@media (max-width: 480px) {
  .spotify-card-container {
    max-width: 100%;
    margin: 1.5rem 0;
    padding: 0;
  }

  .spotify-card {
    border-radius: 28px;
    padding: 20px;
  }

  .spotify-song-title {
    font-size: 1.2rem;
  }

  .spotify-play-btn {
    width: 48px;
    height: 48px;
  }

  .spotify-bottom-row .vol-control {
    display: none; /* Hide volume bar on small screens to fit Devices Available perfectly */
  }
  
  .spotify-bottom-row {
    justify-content: center;
  }
}


/* ==========================================================================
   PROVA SOCIAL (SOCIAL PROOF SECTION)
   ========================================================================== */
.social-proof-section {
  position: relative;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

/* Video Grid */

.proof-video-card:not(.smartphone-mockup) {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.proof-video-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.proof-video-card:not(.smartphone-mockup):hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.video-cover-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 133.33%; /* 3:4 aspect ratio for reels look */
  overflow: hidden;
  background: #111;
}

.video-cover-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.proof-video-card:hover .video-cover-wrap img {
  transform: scale(1.06);
}

.video-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.video-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-duration i {
  width: 12px;
  height: 12px;
}

.video-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.play-btn-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.play-btn-circle i {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 2px; /* optical alignment */
}

.proof-video-card:hover .play-btn-circle {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(252, 115, 1, 0.4);
}

.video-card-info {
  padding: 1.5rem;
}

.video-card-info h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

/* Comments Wall */

/* WhatsApp Bubble Card style */
.wa-bubble-card {
  background: #E8F7F0; /* Soft WhatsApp green tint */
  border: 1px solid #D1ECD9;
}

.wa-bubble-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.wa-contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar-text {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #128C7E;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
}

.wa-contact-info div {
  display: flex;
  flex-direction: column;
}

.wa-contact-info strong {
  font-size: 0.95rem;
  color: #075E54;
}

.wa-contact-info .verified-badge {
  font-size: 0.75rem;
  color: #128C7E;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wa-contact-info .verified-badge i {
  width: 10px;
  height: 10px;
}

.wa-logo-icon {
  color: #25D366;
  width: 20px;
  height: 20px;
}

.wa-bubble-message {
  background: #ffffff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 16px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.wa-bubble-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #ffffff transparent transparent;
}

.wa-bubble-message p {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
}

.wa-msg-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #999;
}

.wa-msg-meta i {
  width: 14px;
  height: 14px;
}

/* Instagram Card style */

/* Google Card style */

/* Video Player Modal CSS (UX/UI Optimized) */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.video-modal-wrapper, .image-modal-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  z-index: 3005;
}

.image-modal-wrapper {
  max-width: 420px;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 400px; /* Perfeita proporção vertical de celular no desktop */
  aspect-ratio: 9/16;
  height: calc(min(90vw, 400px) * 16 / 9); /* Fallback robusto contra colapso de flexbox */
  max-height: 80vh;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(252, 115, 1, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.video-modal-overlay.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(90deg);
}

/* Setas de navegação do modal de vídeo */
.video-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10005;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-nav i {
  width: 24px;
  height: 24px;
  color: #fff;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-nav.prev-btn {
  left: 40px;
}

.video-modal-nav.next-btn {
  right: 40px;
}

.video-modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.video-modal-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.video-modal-nav.prev-btn:hover i {
  transform: translateX(-3px);
}

.video-modal-nav.next-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .video-modal-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
  }
  .video-modal-nav {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
  }
  .video-modal-nav.prev-btn {
    left: 20px;
  }
  .video-modal-nav.next-btn {
    right: 20px;
  }
}

/* Responsividade da Prova Social */

@media (max-width: 600px) {
  .video-modal-content {
    width: 95%;
    border-radius: 20px;
  }
  .video-modal-close {
    top: 15px;
    right: 15px;
  }
  .video-modal-nav {
    width: 44px;
    height: 44px;
  }
  .video-modal-nav.prev-btn {
    left: 10px;
  }
  .video-modal-nav.next-btn {
    right: 10px;
  }
}

/* ==========================================================================
   MURAL DE PRINTS DE AVALIAÇÕES (LIGHTBOX E CARDS)
   ========================================================================== */
.comment-img-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.comment-img-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.comment-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.comment-img-card:hover img {
  transform: scale(1.02);
}

.img-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.comment-img-card:hover .img-card-overlay {
  opacity: 1;
}

.img-card-overlay i {
  color: #fff;
  width: 28px;
  height: 28px;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.comment-img-card:hover .img-card-overlay i {
  transform: scale(1.1);
}

/* Lightbox Image Modal */
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.image-modal-content-lightbox {
  position: relative;
  width: 90%;
  max-width: 420px; /* Simula tamanho de tela de smartphone para máxima nitidez de prints no desktop */
  max-height: 85vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(252, 115, 1, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-overlay.active .image-modal-content-lightbox {
  transform: scale(1) translateY(0);
}

#lightboxImage {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

#imageModalCloseBtn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#imageModalCloseBtn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(90deg);
}

@media (max-width: 768px) {
  #imageModalCloseBtn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
  }
}

/* ==========================================================================
   BENTO GRID SOCIAL PROOF
   ========================================================================== */
.proof-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
  grid-auto-flow: dense;
  margin-top: 3rem;
}

.bento-item {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.bento-portrait {
  grid-row: span 2;
}

.bento-square {
  grid-row: span 1;
  grid-column: span 1;
}

/* Adjust video-cover-wrap to fill height in bento cards */
.bento-item .video-cover-wrap {
  flex: 1;
  height: 100%;
  padding-bottom: 0; /* remove fixed aspect ratio padding */
  position: relative;
  overflow: hidden;
}

.bento-item .video-cover-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-item .video-card-info {
  padding: 1.25rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 2;
}

.bento-item .video-card-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin: 0;
}

/* Close button on playing inline video */

/* Image comments card in Bento */
.comment-img-card.bento-item {
  cursor: zoom-in;
}

.comment-img-card.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.comment-img-card.bento-item:hover img {
  transform: scale(1.04);
}

/* Bento responsive rules */
@media (max-width: 991px) {
  .proof-bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  .proof-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .bento-portrait {
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .proof-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1.5rem;
  }
  .bento-portrait, .bento-square {
    grid-row: span 1;
    grid-column: span 1;
  }
  .bento-item .video-cover-wrap {
    aspect-ratio: 1/1;
  }
  .bento-item.bento-portrait .video-cover-wrap {
    aspect-ratio: 9/16;
  }
  .comment-img-card.bento-item {
    aspect-ratio: 1/1;
  }
}

/* Mobile Footer Alignment Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 3.5rem 0 1.5rem;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .footer-brand, .footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 1.25rem;
  }
  .footer-social-buttons .footer-btn {
    margin: 0 auto;
  }
}

/* ==========================================================================
   Preloader Loading Screen Styling (Vibrant Orange & White Logo)
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #ff8224 0%, #e05e00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05) translateY(-10px);
}

#preloader.fade-out .preloader-content {
  transform: scale(0.95) translateY(-8px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-in;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 20px;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease-out;
}

.preloader-logo {
  width: 280px;
  max-width: 85vw;
  margin-bottom: 0.5rem;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  will-change: transform;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0) rotate(-0.5deg) scale(1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  }
  50% {
    transform: translateY(-8px) rotate(0.5deg) scale(1.02);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
  }
}

/* Soundwave Equalizer Anim (White) */
.preloader-equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 24px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.preloader-equalizer .eq-bar {
  width: 3.5px;
  background-color: #ffffff;
  border-radius: 3px;
  transform-origin: bottom;
  animation: eqBounce 0.8s ease-in-out infinite alternate;
}

.preloader-equalizer .bar-1 { height: 35%; animation-duration: 0.7s; }
.preloader-equalizer .bar-2 { height: 75%; animation-duration: 0.5s; animation-delay: 0.15s; }
.preloader-equalizer .bar-3 { height: 95%; animation-duration: 0.6s; animation-delay: 0.3s; }
.preloader-equalizer .bar-4 { height: 50%; animation-duration: 0.8s; animation-delay: 0.05s; }
.preloader-equalizer .bar-5 { height: 80%; animation-duration: 0.55s; animation-delay: 0.2s; }

@keyframes eqBounce {
  0% { transform: scaleY(0.25); }
  100% { transform: scaleY(1); }
}

/* Translucent Loading bar */
.premium-progress-bar {
  width: 150px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
}

.premium-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  position: absolute;
  left: 0;
  transform: translateX(-100%);
  animation: progressPulse 1.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

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

/* App Initial State for Fade In - Reset App Container to render instantly */
#app {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* Staggered Transition System for Premium Fluid Reveal */

/* Phase 1: Video Announcement Bar (Top) Initial State */
.announcement-bar {
  opacity: 0;
  transform: translateY(-50px);
  filter: blur(8px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

/* Phase 2: Navigation Bar (Header) Initial State */
.header {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Phase 3: Main Page Content & Footer Initial State */
main {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(12px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.footer, .floating-actions {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

/* --- Trigger States --- */

/* Video Bar Reveal */
body.video-ready .announcement-bar {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Header & Content Reveal */
body.content-ready .header {
  opacity: 1;
  transform: translateY(0);
}

body.content-ready main {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.content-ready .footer,
body.content-ready .floating-actions {
  opacity: 1;
}

/* --- Bypass / Resets for Admin Panel and Subpages --- */
body.admin-mode #app,
body.admin-mode main,
body.admin-mode .header,
body.admin-mode .footer,
body.admin-mode .floating-actions,
body:not(.is-home-route) #app,
body:not(.is-home-route) main,
body:not(.is-home-route) .header,
body:not(.is-home-route) .footer,
body:not(.is-home-route) .floating-actions {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* ==========================================================================
   TELA DE CHECKOUT SIMULADO & ACOMPANHAMENTO
   ========================================================================== */
.checkout-grid-container {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .checkout-grid-container {
    grid-template-columns: 1fr;
  }
}

.checkout-form-side {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 35px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.checkout-summary-side .summary-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 100px;
}

.checkout-summary-side h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.summary-item .item-label {
  color: #aaa;
}

.summary-item .item-val {
  color: #fff;
  font-weight: 500;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 20px;
}

.summary-total span {
  font-size: 1rem;
  color: #aaa;
}

.summary-total .total-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.summary-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #a6a6a6;
}

.summary-badges .badge-item i {
  color: #4ade80;
  width: 14px;
  height: 14px;
}

.payment-methods-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  padding-bottom: 5px;
}

.pay-tab {
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #aaa;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.pay-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.pay-tab.active {
  background: rgba(252, 115, 1, 0.1);
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.payment-content {
  display: none;
}

.payment-content.active {
  display: block;
}

.pix-instructions {
  display: flex;
  gap: 25px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 18px;
  flex-wrap: wrap;
}

.pix-qr-container {
  position: relative;
  background: #white;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  overflow: hidden;
}

.pix-qr-svg {
  display: block;
  border-radius: 10px;
}

.pix-scan-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-orange);
  animation: scanLine 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--primary-orange);
  opacity: 0.8;
}

@keyframes scanLine {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(166px); }
}

.pix-text-details {
  flex: 1;
  min-width: 200px;
}

.pix-text-details h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.pix-text-details p {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.4;
  margin-bottom: 15px;
}

.pix-copy-box {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 4px 6px;
}

.pix-copy-box input {
  background: transparent !important;
  border: none !important;
  color: #ccc;
  font-size: 0.8rem;
  margin: 0;
  padding: 6px;
  flex: 1;
}

.btn-copy-pix {
  background: var(--orange-gradient) !important;
  color: white;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-copy-pix:hover {
  filter: brightness(1.1);
}

/* Simulação de Cartão com Efeito Flip 3D */
.card-simulator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.credit-card-preview {
  width: 100%;
  height: 200px;
  perspective: 1000px;
  margin-bottom: 2rem;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.credit-card-preview.flip .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-front {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.card-back {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  transform: rotateY(180deg);
  padding: 20px 0;
  justify-content: flex-start;
  gap: 15px;
}

.card-chip {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #f0c27b 0%, #4b1248 100%);
  background: radial-gradient(circle, #ffe699 0%, #cca329 100%);
  border-radius: 6px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3);
}

.card-number {
  font-family: monospace;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 15px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.75rem;
  color: #ccc;
  letter-spacing: 0.05em;
}

.card-holder {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.card-expiry {
  text-align: right;
  color: #fff;
}

.card-magnetic-strip {
  width: 100%;
  height: 38px;
  background: #000;
}

.card-signature-cvv {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-signature {
  height: 32px;
  background: rgba(255, 255, 255, 0.8);
  flex: 1;
  border-radius: 4px;
}

.card-cvv-box {
  width: 50px;
  height: 32px;
  background: #fff;
  color: #111;
  text-align: center;
  line-height: 32px;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
}

.card-back-brand {
  margin-top: 10px;
  padding: 0 24px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.credit-card-form {
  width: 100%;
}

.form-col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-row {
  margin-bottom: 12px;
}

.form-row label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 6px;
  display: block;
}

/* Timeline do Acompanhamento */
.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 25px;
  padding-bottom: 10px;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.timeline-step .step-bullet {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #555;
  font-size: 0.85rem;
  transition: all 0.4s ease;
}

.timeline-step .step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #a0a0a0;
  text-align: center;
  max-width: 110px;
  line-height: 1.3;
  transition: all 0.4s ease;
}

.timeline-step.active .step-bullet {
  border-color: var(--primary-orange);
  background: rgba(252, 115, 1, 0.1);
  color: var(--primary-orange);
  box-shadow: 0 0 10px rgba(252, 115, 1, 0.3);
}

.timeline-step.active .step-label {
  color: var(--primary-orange);
}

.timeline-step.completed .step-bullet {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.timeline-step.completed .step-label {
  color: #ccc;
}

.timeline-step.completed::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #25d366;
  z-index: -1;
}

.timeline-step:last-child.completed::after {
  display: none;
}

@media (max-width: 580px) {
  .timeline-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 20px;
  }
  .timeline-steps::before {
    top: 15px;
    left: 36px;
    width: 2px;
    height: calc(100% - 40px);
  }
  .timeline-step {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  .timeline-step .step-bullet {
    margin-bottom: 0;
  }
  .timeline-step .step-label {
    text-align: left;
  }
  .timeline-step.completed::after {
    display: none;
  }
}

/* ==========================================================================
   PAINEL ADMINISTRATIVO (UX/UI Premium Redesign)
   ========================================================================== */

/* Classes utilitárias de alinhamento de texto ausentes */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}

/* Fundo totalmente preto puro para máxima elegância e contraste */
.admin-dashboard-page, .admin-login-page {
  background: #000000 !important;
  position: relative;
  overflow: hidden;
}

/* Centralização refinada para a tela de login */
.admin-login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* Card de Login Glassmorphism de Alta Qualidade */
.login-card-glass {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 100px rgba(252, 115, 1, 0.02) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 28px !important;
  padding: 50px 40px !important;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.login-card-glass:hover {
  border-color: rgba(252, 115, 1, 0.15) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 120px rgba(252, 115, 1, 0.04) !important;
}

/* Grid de Métricas com Design Elevado */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Card de Métricas Glassmorphism + Micro-animação */
.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.metric-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(252, 115, 1, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(252, 115, 1, 0.08);
}

/* Ícones das Métricas com Visual de Alta Tecnologia */
.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.metric-card:hover .metric-icon {
  transform: scale(1.1) rotate(3deg);
}

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

.metric-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Card Principal da Listagem */
.admin-orders-list-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 24px !important;
  padding: 30px !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Customização dos Inputs de Busca e Filtros */
.list-card-search input, .list-card-search select {
  border-radius: 12px !important;
  padding: 10px 16px !important;
  font-size: 0.85rem !important;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.list-card-search input:focus, .list-card-search select:focus {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: var(--primary-orange) !important;
  box-shadow: 0 0 0 3px rgba(252, 115, 1, 0.2) !important;
  outline: none !important;
}

/* Tabela Administrativa Polida */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.admin-table th {
  padding: 16px 12px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08) !important;
  text-transform: uppercase;
}

.admin-table td {
  padding: 18px 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.admin-table tr {
  transition: all 0.25s ease;
  position: relative;
}

/* Hover Interativo na Linha */
.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02) !important;
}

/* Badges Elegantes */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.badge-pending {
  background: rgba(255, 184, 0, 0.1);
  color: #ffb800;
  border: 1px solid rgba(255, 184, 0, 0.15);
}

.badge-paid {
  background: rgba(37, 211, 102, 0.1);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.15);
}

.badge-production {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.badge-completed {
  background: rgba(168, 85, 247, 0.1);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.plan-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: capitalize;
}

/* Painel Lateral Deslizante (Drawer Overlay) */
.admin-order-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-order-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.admin-order-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  z-index: 2005;
  box-shadow: -25px 0 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.drawer-cols-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .drawer-cols-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}


.admin-order-drawer-overlay.active .admin-order-drawer {
  right: 0;
}

.drawer-order-id {
  font-family: monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #eee;
}

.btn-drawer-close {
  background: rgba(255, 255, 255, 0.04);
  color: #aaa;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: rotate(90deg);
}

/* Detalhes do Pedido no Drawer */

/* Área de trabalho do Agente IA no Admin */
.agent-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  padding: 14px;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.agent-textarea:focus {
  border-color: var(--primary-orange);
  outline: none;
}

.btn-text-action {
  background: transparent;
  color: var(--primary-orange);
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}

.btn-text-action:hover {
  opacity: 0.8;
  text-decoration: none;
}

.spin {
  animation: loadingSpin 1s linear infinite;
}

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

.select-all {
  user-select: all;
  -webkit-user-select: all;
}

/* --- PERFORMANCE OPTIMIZATIONS (NEXT-GEN RENDERING) --- */
@media (min-width: 768px) {
  .pricing-section,
  .music-styles,
  .social-proof-section,
  .categories-section,
  .experience-section,
  .how-it-works,
  .faq {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
  }
}

/* Custom validation states for checkout and quiz inputs */
.quiz-input.error {
  border-color: #ff4d6d !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.15) !important;
}

.btn-checkout-cta:disabled,
.btn-checkout-cta.disabled {
  background: #e0e0e0 !important;
  color: #a0a0a0 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: auto !important;
}


/* ============================================================
   MODAL: ACOMPANHAR PEDIDO
   ============================================================ */

#track-order-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#track-order-modal.active {
  display: flex;
}

.track-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: trackFadeIn 0.2s ease;
}

.track-modal-box {
  position: relative;
  z-index: 1;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 440px;
  margin: 1rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(252, 115, 1, 0.08);
  animation: trackSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes trackFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes trackSlideUp {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Botão fechar */
.track-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}
.track-modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Ícone topo */
.track-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(252, 115, 1, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

/* Título e subtítulo */
.track-modal-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 0.4rem;
  font-family: var(--font-serif, Georgia, serif);
}

.track-modal-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

/* Abas */
.track-modal-tabs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border-radius: 99px;
  padding: 4px;
  margin-bottom: 1.5rem;
}

.track-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 99px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.track-tab.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.track-tab:hover:not(.active) {
  color: rgba(255,255,255,0.7);
}

/* Painéis de aba */
.track-panel {
  display: none;
}
.track-panel.active {
  display: block;
}

/* Label */
.track-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* Input */
.track-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 1.25rem;
}

.track-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.track-input:focus {
  border-color: #FC7301;
  box-shadow: 0 0 0 3px rgba(252, 115, 1, 0.15);
}

/* Mensagem de erro */
.track-modal-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.87rem;
  color: #fca5a5;
  margin-bottom: 1rem;
  text-align: center;
  animation: trackFadeIn 0.2s ease;
}

/* Botão de busca */
.track-modal-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #FC7301 0%, #e86200 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(252, 115, 1, 0.25);
}

.track-modal-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(252, 115, 1, 0.35);
}

.track-modal-btn:active {
  transform: translateY(0);
}

.track-modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Botão "Acompanhar pedido" na navbar vira button com visual igual */
#btn-track-order,
#btn-track-order-mobile {
  cursor: pointer;
  font-family: inherit;
}

/* Mobile */
@media (max-width: 480px) {
  .track-modal-box {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 20px;
    margin: 0.5rem;
  }
  .track-modal-title {
    font-size: 1.15rem;
  }
}

/* Rastro de Corações (Dia dos Namorados) - Otimizado */
.heart-trail {
  position: fixed;
  pointer-events: none;
  z-index: 100000;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
  opacity: 0;
  display: none;
}

.heart-trail.active {
  display: block;
  animation: heartFadeDrift 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heartFadeDrift {
  0% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(0.4) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-50% + var(--drift-x)), calc(-50% + var(--drift-y)), 0) scale(1.3) rotate(var(--rotate));
  }
}

.bento-item-hidden {
  display: none !important;
}

.genre-card-hidden {
  display: none !important;
}

/* ============================================================
   CUSTOM TOAST NOTIFICATIONS (Premium Apple/SaaS Style)
   ============================================================ */
#toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90%;
  max-width: 440px;
  pointer-events: none;
}

.custom-toast {
  pointer-events: auto;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 20px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.custom-toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.toast-content-wrap {
  flex: 1;
}

.toast-content-wrap p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
}

.toast-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-top: -2px;
  margin-right: -6px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.toast-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Mobile responsive optimizations for Toasts */
@media (max-width: 480px) {
  #toast-container {
    top: auto;
    bottom: 24px;
    transform: translateX(-50%);
    width: 92%;
  }

  .custom-toast {
    padding: 14px 16px;
    border-radius: 16px;
    transform: translateY(20px) scale(0.95);
  }

  .custom-toast.active {
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   ADMINISTRATIVE DASHBOARD STYLING
   ============================================================ */

.admin-login-page {
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}

.login-card-glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.admin-dashboard-page {
  background-color: var(--dark);
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  padding: 3rem 0;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.admin-header-row h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.admin-header-row p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.admin-actions {
  display: flex;
  gap: 12px;
}

.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 115, 1, 0.25);
  box-shadow: 0 12px 30px rgba(252, 115, 1, 0.05);
}

.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.metric-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.admin-orders-list-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 30px;
}

.list-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.list-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.list-card-search {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .list-card-search {
    justify-content: flex-start;
    max-width: 100%;
  }
  .list-card-search input, .list-card-search select {
    flex: 1;
    min-width: 150px;
  }
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.order-row {
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out);
}

.order-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.order-row:hover .btn-manage-order {
  background: var(--orange-gradient) !important;
  color: #fff !important;
}

.btn-manage-order {
  transition: all 0.3s var(--ease-out);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-pending {
  background: rgba(255, 184, 0, 0.1);
  color: #ffb800;
  border: 1px solid rgba(255, 184, 0, 0.15);
}

.badge-paid {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.badge-production {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.15);
}

.badge-completed {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.plan-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: monospace;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.drawer-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.drawer-section-highlight {
  background: rgba(252, 115, 1, 0.03);
  border: 1px solid rgba(252, 115, 1, 0.15);
}

.drawer-section:hover {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.drawer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font-size: 0.85rem;
}

@media (min-width: 576px) {
  .drawer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-span-2 {
    grid-column: span 2;
  }
}

/* Responsive adjustments for mobile layouts */
@media (max-width: 991px) {
  .admin-dashboard-page {
    padding: 2rem 0;
  }
  .admin-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .admin-actions {
    width: 100%;
  }
  .admin-actions button {
    flex: 1;
    justify-content: center;
  }
  .admin-order-drawer {
    padding: 30px 20px;
  }
  .drawer-cols-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 992px) {
  .admin-order-drawer {
    width: 65%;
    max-width: 960px;
  }
}

