/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --bg-dark: #0F172A;
  --bg-dark-rgb: 15, 23, 42;
  --bg-card: #1E293B;
  --bg-card-rgb: 30, 41, 59;
  
  /* Cores de Destaque */
  --purple: #7C3AED;
  --purple-rgb: 124, 58, 237;
  --pink: #EC4899;
  --pink-rgb: 236, 72, 153;
  
  /* Cores de Texto */
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-muted-dark: #64748B;
  
  /* Fontes */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Transições padrão */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  line-height: 1.5;
}

/* Scrollbar Premium */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
  transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   CANVAS E GLOW DE FUNDO
   ========================================================================== */
#wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
}

.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.glow-purple {
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.8) 0%, rgba(124, 58, 237, 0) 70%);
}

.glow-pink {
  top: 10%;
  right: -150px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.8) 0%, rgba(236, 72, 153, 0) 70%);
}

/* ==========================================================================
   ESTILOS DE BOTÕES & CTA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-header-cta {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.1);
}

.btn-hero-cta {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: var(--text-main);
  padding: 18px 38px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px -4px rgba(124, 58, 237, 0.45);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.6), 0 0 0 4px rgba(236, 72, 153, 0.2);
}

.btn-hero-cta:hover::before {
  opacity: 1;
}

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

/* ==========================================================================
   HEADER / MENU (FIXADO NO TOPO)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.logo-link {
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.5px;
  transition: var(--transition-slow);
}

.logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.45));
  opacity: 1;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  display: block;
}

/* Menu de Navegação */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
  color: var(--text-main);
}

.nav-item:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburguer Mobile */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 201;
}

/* CTA do menu mobile — controlado via JS */
.mobile-nav-cta {
  display: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Coluna Esquerda - Conteúdo */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.headline {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-main);
}

.headline .emoji {
  display: inline-block;
  animation: wave-hand 2.5s ease-in-out infinite;
  transform-origin: 70% 70%;
}

/* Gradiente no título para destaque premium */
.headline {
  background: linear-gradient(to right, #FFFFFF 40%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 540px;
}

/* Destaques (3 cards pequenos) */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateX(6px) translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.4);
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon {
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.text-purple {
  color: var(--purple);
  filter: drop-shadow(0 0 4px rgba(124, 58, 237, 0.4));
}

.text-pink {
  color: var(--pink);
  filter: drop-shadow(0 0 4px rgba(236, 72, 153, 0.4));
}

.feature-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.feature-info p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* CTA Group */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.cta-subtext {
  font-size: 13px;
  color: var(--text-muted-dark);
  font-weight: 500;
  margin-left: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-subtext::before {
  content: '●';
  color: #10B981; /* Verde online */
  font-size: 10px;
  animation: pulse-green 2s infinite;
}

/* ==========================================================================
   COLUNA DIREITA - CONTAINER DE ANIMAÇÃO 16:9
   ========================================================================== */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.media-container-outer {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  padding: 1px; /* Para borda gradiente perfeitamente alinhada */
}

/* Borda com gradiente animado de brilho */
.glowing-border-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 26px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--purple));
  background-size: 200% 200%;
  z-index: 0;
  opacity: 0.35;
  filter: blur(12px);
  animation: border-glow-move 8s linear infinite;
  transition: opacity 0.5s ease;
}

.media-container-outer:hover .glowing-border-glow {
  opacity: 0.65;
  filter: blur(16px);
}

.media-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 23px;
  background: rgba(30, 41, 59, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-slow);
}

.media-placeholder:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

#media-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  border-radius: 23px;
}

.media-inner-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.05) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  transition: var(--transition-smooth);
}

.media-placeholder:hover .media-inner-glow {
  opacity: 1.3;
}

.placeholder-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

/* Equalizador / Ondas estáticas no SVG */
.visual-waves {
  width: 60%;
  height: auto;
  opacity: 0.6;
  transform: scale(0.95);
  transition: var(--transition-slow);
}

.media-placeholder:hover .visual-waves {
  transform: scale(1.02);
  opacity: 0.95;
}

/* Indicador central de play */
.play-indicator {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.play-indicator::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.3);
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.media-placeholder:hover .play-indicator {
  background: var(--text-main);
  border-color: var(--text-main);
  color: var(--bg-dark);
  transform: scale(1.08);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
}

.media-placeholder:hover .play-indicator::before {
  opacity: 1;
  transform: scale(1.1);
  animation: pulse-ring 2s infinite;
}

.play-icon {
  fill: transparent;
  transform: translateX(2px);
  transition: var(--transition-smooth);
}

.media-placeholder:hover .play-icon {
  fill: var(--bg-dark);
}

/* Tag flutuante */
.visual-tag {
  position: absolute;
  bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.8;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.media-placeholder:hover .visual-tag {
  border-color: rgba(236, 72, 153, 0.25);
  color: var(--text-main);
  background: rgba(236, 72, 153, 0.05);
}

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA & EFEITOS (FADE UP)
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up-1, .fade-up-2, .fade-up-3, .fade-up-4, .fade-up-5 {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-up-1 { animation-delay: 0.15s; }
.fade-up-2 { animation-delay: 0.3s; }
.fade-up-3 { animation-delay: 0.45s; }
.fade-up-4 { animation-delay: 0.6s; }
.fade-up-5 { animation-delay: 0.75s; }

/* Animação do emoji de notas musicais */
@keyframes wave-hand {
  0% { transform: rotate( 0.0deg) }
  10% { transform: rotate(14.0deg) }
  20% { transform: rotate(-8.0deg) }
  30% { transform: rotate(14.0deg) }
  40% { transform: rotate(-4.0deg) }
  50% { transform: rotate(10.0deg) }
  60% { transform: rotate( 0.0deg) }
  100% { transform: rotate( 0.0deg) }
}

/* Animação do Logo */
@keyframes logo-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.05); }
}

/* Animação de pulso no hover do CTA */
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

/* Animação do pulso verde */
@keyframes pulse-green {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

/* Animação da Borda do Container 16:9 */
@keyframes border-glow-move {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animação do anel de pulso no play */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

/* Telas grandes e médias (Desktop) */
@media (max-width: 1200px) {
  .header-container, .hero-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-container {
    gap: 40px;
  }
  .headline {
    font-size: 40px;
  }
}

/* Tablets (Retrato e Paisagem) */
@media (max-width: 991px) {
  .header {
    padding: 20px 0;
  }
  .header-container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
    max-width: 680px;
    margin: 0 auto;
  }
  
  .subheadline {
    max-width: 100%;
  }
  
  .features-list {
    text-align: left;
    width: 100%;
  }
  
  .cta-group {
    align-items: center;
  }
  
  .hero-media {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .btn-header-cta {
    display: none;
  }

  .nav-menu {
    display: none; /* Menu escondido no mobile/tablet por padrão */
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  /* Menu responsivo expandido */
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 40px 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    justify-content: center;
    align-items: center;
  }
  
  .nav-menu.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .nav-menu.active .nav-item {
    font-size: 20px;
  }

  .mobile-nav-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Celulares (Smartphones) */
@media (max-width: 576px) {
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 48px;
  }
  
  .headline {
    font-size: 32px;
    letter-spacing: -1px;
  }
  
  .subheadline {
    font-size: 15px;
  }
  
  .feature-card {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  
  .feature-info h3 {
    font-size: 15px;
  }
  
  .feature-info p {
    font-size: 13px;
  }
  
  .btn-hero-cta {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
  }
}

/* ==========================================================================
   SEÇÃO PROCESSO / COMO FUNCIONA
   ========================================================================== */
.process-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 23, 42, 0.98) 100%);
  overflow: hidden;
}

.decor-waves {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.process-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(236, 72, 153, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(236, 72, 153, 0.04);
  letter-spacing: 1px;
}

.process-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
  line-height: 1.2;
}

.process-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.process-step-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.25);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 25px 50px -25px rgba(0, 0, 0, 0.5);
}

.step-num {
  position: absolute;
  top: 36px;
  right: 36px;
  font-size: 36px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.process-step-card:hover .step-num {
  color: rgba(124, 58, 237, 0.12);
  transform: scale(1.05);
}

.step-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 28px;
  transition: var(--transition-smooth);
}

.process-step-card:hover .step-icon-box {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
}

.process-step-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

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

.process-action {
  text-align: center;
}

/* ==========================================================================
   POP-UP MODAL WIZARD (ESTILO GLOBAL)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 10, 18, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-card {
  width: 90%;
  max-width: 700px;
  max-height: 88vh;
  background: rgba(30, 41, 59, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 
    0 50px 100px -20px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: scale(0.94);
  transition: var(--transition-smooth);
}

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

.modal-close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  transform: rotate(90deg);
}

/* Barra de Progresso do Wizard */
.wizard-progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.wizard-progress-bar {
  height: 100%;
  width: 20%; /* Controlado dinamicamente */
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Form e Passos */
#wizard-form {
  padding: 44px 50px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Scrollbar interno do Modal */
#wizard-form::-webkit-scrollbar {
  width: 6px;
}
#wizard-form::-webkit-scrollbar-track {
  background: transparent;
}
#wizard-form::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.wizard-step {
  display: none;
  flex-direction: column;
  gap: 22px;
}

.wizard-step.active {
  display: flex;
  animation: stepFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  letter-spacing: 0.8px;
}

.wizard-step h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.step-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: -10px;
  line-height: 1.5;
}

/* ==========================================================================
   ELEMENTOS DE FORMULÁRIO E CARDS SELECIONÁVEIS
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.required {
  color: var(--pink);
  margin-left: 2px;
}

.form-group input[type="text"],
.form-group textarea {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-main);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
  background: rgba(15, 23, 42, 0.6);
}

.form-group textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.5;
}

/* Grids do Assistente */
.selection-grid {
  display: grid;
  gap: 10px;
  width: 100%;
}

.grid-relationships {
  grid-template-columns: repeat(4, 1fr);
}

.grid-occasions {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.grid-genres {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.grid-voices {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-creation-method {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Cards padrão de seleção */
.select-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 13px 8px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.select-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  transform: translateY(-2px);
}

.select-card.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple);
  color: var(--text-main);
  box-shadow: 0 4px 18px -4px rgba(124, 58, 237, 0.4);
}

/* Cards grandes com emojis e destaque */
.select-card.card-large {
  padding: 18px 12px;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
}

.select-card.card-large:hover {
  border-color: rgba(236, 72, 153, 0.25);
  box-shadow: 0 6px 15px rgba(236, 72, 153, 0.08);
}

.card-emoji {
  font-size: 20px;
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.select-card.card-large:hover .card-emoji {
  transform: scale(1.18);
}

.select-card.card-large.active {
  background: rgba(236, 72, 153, 0.12);
  border-color: var(--pink);
  box-shadow: 0 8px 24px -6px rgba(236, 72, 153, 0.45);
}

/* Cards do método de criação */
.select-card.method-card {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px;
}

.select-card.method-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.select-card.method-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.45;
}

/* ==========================================================================
   CARDS DE VOZ E DECORAÇÃO DE ONDA DE ÁUDIO
   ========================================================================== */
.select-card.voice-card {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 24px;
  position: relative;
}

.voice-card-icon {
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.select-card.voice-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.select-card.voice-card p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.45;
}

.select-card.voice-card:hover .voice-card-icon {
  transform: translateY(-2px) scale(1.05);
}

.voice-wave-decoration {
  position: absolute;
  bottom: 20px;
  right: 22px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.select-card.voice-card.active .voice-wave-decoration {
  opacity: 1;
}

.voice-wave-decoration span {
  width: 2.5px;
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
  transform-origin: bottom;
  animation: bounce-wave 0.8s infinite alternate;
}

.voice-wave-decoration span:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.voice-wave-decoration span:nth-child(2) { height: 95%; animation-delay: 0.3s; background-color: var(--pink); }
.voice-wave-decoration span:nth-child(3) { height: 40%; animation-delay: 0.5s; }
.voice-wave-decoration span:nth-child(4) { height: 75%; animation-delay: 0.2s; background-color: var(--pink); }

@keyframes bounce-wave {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1.1); }
}

/* ==========================================================================
   TELA FINAL DE SUCESSO DO WIZARD
   ========================================================================== */
.step-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 16px 0;
}

.success-icon-box {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
  animation: success-pulse 2.5s infinite ease-in-out;
}

.success-note-icon {
  animation: logo-bounce 3.5s infinite ease-in-out;
}

@keyframes success-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.15); }
  50% { box-shadow: 0 0 35px rgba(16, 185, 129, 0.35); }
}

.success-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  margin-top: 14px;
  list-style: none;
  text-align: left;
}

.success-benefits li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkmark {
  color: #10B981;
  font-weight: 800;
}

/* ==========================================================================
   RODAPÉ DO WIZARD & BOTÕES
   ========================================================================== */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-wizard-back {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 12px 30px;
}

.btn-wizard-back:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-wizard-back:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.btn-wizard-next {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: white;
  padding: 12px 36px;
  box-shadow: 0 4px 15px -3px rgba(124, 58, 237, 0.35);
}

.btn-wizard-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -3px rgba(124, 58, 237, 0.5);
}

.btn-wizard-next:disabled,
.btn-wizard-next.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn-submit-wizard {
  padding: 16px 40px;
  font-size: 16px;
}

/* Utilidades do Modal */
.hidden {
  display: none !important;
}

.method-field-group {
  animation: stepFadeIn 0.4s ease forwards;
}

/* ==========================================================================
   MEDIA QUERIES DE SEGUNDA SEÇÃO E WIZARD
   ========================================================================== */

/* Telas médias (Desktop e Tablet horizontal) */
@media (max-width: 1200px) {
  .process-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .process-steps {
    gap: 20px;
  }
}

/* Tablets (Retrato e paisagem menor) */
@media (max-width: 991px) {
  .process-container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .process-header h2 {
    font-size: 32px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-step-card {
    padding: 38px 28px;
  }
  
  /* Wizard Responsividade */
  .modal-card {
    max-height: 90vh;
  }
  #wizard-form {
    padding: 30px;
  }
  .grid-relationships {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-occasions, .grid-genres {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celulares (Smartphones) */
@media (max-width: 576px) {
  .process-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .process-header h2 {
    font-size: 26px;
  }
  
  /* Wizard Responsividade */
  .modal-card {
    max-height: 95vh;
    border-radius: 16px;
  }
  #wizard-form {
    padding: 24px 20px;
    gap: 16px;
  }
  .wizard-step h2 {
    font-size: 20px;
  }
  .grid-relationships {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-occasions, .grid-genres {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-voices, .grid-creation-method {
    grid-template-columns: 1fr;
  }
  .select-card.voice-card {
    padding: 16px;
  }
  .success-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .wizard-footer {
    margin-top: 24px;
    padding-top: 16px;
  }
}

/* ==========================================================================
   ERRO DE VALIDAÇÃO DO WIZARD
   ========================================================================== */
.form-group.validation-error label {
  color: var(--pink) !important;
}

.form-group.validation-error input[type="text"],
.form-group.validation-error textarea {
  border-color: var(--pink) !important;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.18) !important;
}

.form-group.validation-error .selection-grid {
  border: 1px solid rgba(236, 72, 153, 0.3) !important;
  border-radius: 16px;
  padding: 8px;
  background: rgba(236, 72, 153, 0.02);
}

/* Animação shake para erros */
@keyframes shake-error {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* ==========================================================================
   BARRA DE CONFIANÇA
   ========================================================================== */
.trust-bar {
  background: rgba(30, 41, 59, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.trust-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon-box {
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.trust-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.trust-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   SESSÃO COMPLEMENTAR (PREÇOS)
   ========================================================================== */
.pricing-section {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(236, 72, 153, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(236, 72, 153, 0.04);
  letter-spacing: 1px;
}

.pricing-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
  line-height: 1.2;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.pricing-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.premium-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
  font-weight: 500;
}

/* Card de Destaque Premium */
.premium-card {
  width: 100%;
  max-width: 520px;
  background: rgba(30, 41, 59, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: var(--transition-smooth);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
}

.premium-card.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.15);
}

.premium-card.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.35);
}

.premium-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 27px;
}

.premium-card-glow-pink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(236, 72, 153, 0.12) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 27px;
}

.whatsapp-badge-container {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.whatsapp-badge {
  font-size: 9.5px;
  font-weight: 800;
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.05);
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-green 1.5s infinite;
}

.whatsapp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  margin: -8px 0;
  text-align: center;
}

.whatsapp-icon-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-number-label {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.btn-whatsapp-direct {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px -3px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-direct:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -3px rgba(37, 211, 102, 0.6);
}

.premium-card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 28px;
}

.premium-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.premium-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.premium-price .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--pink);
}

.premium-price .amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  letter-spacing: -2px;
}

.premium-price .period {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}

.premium-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.premium-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
}

.feature-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  flex-shrink: 0;
}

.premium-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.whatsapp-icon {
  color: #25D366;
  filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.4));
  flex-shrink: 0;
}

/* ==========================================================================
   ESTILOS COMPLEMENTARES DA TELA DE CHECKOUT (WIZARD ETAPA 6)
   ========================================================================== */
.success-price-tag {
  font-size: 15.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: -12px;
}

.success-price-tag strong {
  color: var(--pink);
  font-size: 20px;
  font-weight: 800;
  margin-left: 2px;
}

.success-benefits .whatsapp-row {
  background: rgba(37, 211, 102, 0.07) !important;
  border: 1px solid rgba(37, 211, 102, 0.15);
  padding: 10px 18px;
  border-radius: 12px;
  justify-content: center !important;
  font-size: 15px !important;
  grid-column: 1 / -1;
  color: var(--text-main);
}

.success-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 14px;
}

.success-footer-subtext {
  font-size: 12px;
  color: var(--text-muted-dark);
  font-weight: 500;
  line-height: 1.4;
  max-width: 440px;
}

/* ==========================================================================
   RESPONSIVIDADE COMPLEMENTAR (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 991px) {
  .trust-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .pricing-content {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 520px;
    margin: 0 auto;
  }
  .pricing-container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .pricing-header h2 {
    font-size: 32px;
  }
  .premium-card {
    padding: 38px;
  }
}

@media (max-width: 576px) {
  .trust-bar-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .pricing-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pricing-header h2 {
    font-size: 26px;
  }
  .premium-card {
    padding: 24px;
    gap: 24px;
  }
  .premium-price .amount {
    font-size: 44px;
  }
}

/* ==========================================================================
   CONFETTI CANVAS & STEP 7 SUCCESS SCREEN
   ========================================================================== */

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}

.final-success-screen {
  gap: 16px !important;
}

.success-subheading {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 520px;
  margin-top: -8px;
}

.final-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  text-align: left;
  margin: 8px 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.info-card-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.info-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

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

.info-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-val {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
}

.final-info-card .whatsapp-info-item {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
  margin-top: 4px;
}

.final-info-card .whatsapp-phone-item {
  grid-column: 1 / -1;
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.12);
  border-radius: 12px;
  padding: 10px 16px;
  margin-top: -4px;
}

.final-info-card .whatsapp-phone-item .info-icon {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.final-info-card .whatsapp-phone-item .info-val {
  font-size: 16px;
  color: var(--text-main);
}

.final-info-card .whatsapp-phone-item .info-val strong {
  color: #25D366;
}

.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 4px 0 12px 0;
}

.countdown-container p {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.countdown-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  text-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
  animation: countdown-pulse-anim 1s infinite ease-in-out;
}

@keyframes countdown-pulse-anim {
  0% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.15); opacity: 1; text-shadow: 0 0 20px rgba(236, 72, 153, 0.6); }
  100% { transform: scale(1); opacity: 0.85; }
}

.btn-whatsapp-redirect-fallback {
  background: #25D366 !important;
  color: white !important;
  box-shadow: 0 6px 20px -4px rgba(37, 211, 102, 0.4) !important;
  transition: var(--transition-smooth) !important;
}

.btn-whatsapp-redirect-fallback:hover {
  background: #20BA5A !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px -4px rgba(37, 211, 102, 0.55) !important;
}

/* Responsividade para a confirmação final */
@media (max-width: 576px) {
  .final-info-card {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }
  .success-subheading {
    font-size: 13px;
  }
  .countdown-number {
    font-size: 40px;
  }
}

  .success-benefits .whatsapp-row {
    font-size: 14px !important;
    padding: 8px 14px;
  }
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
  background-color: #20BA5A;
}

.whatsapp-float-icon {
  fill: currentColor;
  color: white;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 80px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

/* ==========================================================================
   SEÇÃO FINAL: QUALIDADE, GARANTIAS E PROVAS SOCIAIS
   ========================================================================== */
.guarantees-testimonials-section {
  padding: 120px 0 60px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 15, 30, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.final-section-container {
  max-width: 1280px;
  margin: 0 auto 100px auto;
  padding: 0 80px;
  width: 100%;
}

.quality-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.quality-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.04);
  letter-spacing: 1px;
}

.quality-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
  line-height: 1.25;
  background: linear-gradient(135deg, #FFFFFF 40%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quality-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 36px 28px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}

.guarantee-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.guarantee-icon {
  font-size: 28px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  transition: var(--transition-smooth);
}

.guarantee-card:hover .guarantee-icon {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
  transform: scale(1.08);
}

.guarantee-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.guarantee-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   LINHA DE TEMPO DO PROCESSO
   ========================================================================== */
.process-timeline-container {
  max-width: 1280px;
  margin: 0 auto 100px auto;
  padding: 0 80px;
  width: 100%;
}

.timeline-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.timeline-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(236, 72, 153, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(236, 72, 153, 0.04);
  letter-spacing: 1px;
}

.timeline-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.8px;
}

.timeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 1;
}

.timeline-num {
  font-size: 32px;
  line-height: 1;
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-num {
  transform: translateY(-4px) scale(1.1);
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.timeline-arrow {
  color: var(--text-muted-dark);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   PROVAS SOCIAIS (DEPOIMENTOS)
   ========================================================================== */
.testimonials-container {
  max-width: 1280px;
  margin: 0 auto 100px auto;
  padding: 0 80px;
  width: 100%;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.testimonials-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.04);
  letter-spacing: 1px;
}

.testimonials-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.8px;
}

.testimonials-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  background: rgba(30, 41, 59, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 72, 153, 0.2);
  background: rgba(30, 41, 59, 0.35);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 60px;
  font-family: serif;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.stars {
  color: #FBBF24;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.author-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  align-self: flex-start;
}

.tag-purple {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: #A78BFA;
}

.tag-pink {
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.15);
  color: #F472B6;
}

.tag-blue {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: #93C5FD;
}

/* Posicionamento 3 + 2 em CSS Grid */
.testimonials-grid .testimonial-card:nth-child(1),
.testimonials-grid .testimonial-card:nth-child(2),
.testimonials-grid .testimonial-card:nth-child(3) {
  grid-column: span 2;
}

.testimonials-grid .testimonial-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.testimonials-grid .testimonial-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* ==========================================================================
   ESTATÍSTICAS (STATS)
   ========================================================================== */
.stats-container {
  max-width: 1280px;
  margin: 0 auto 100px auto;
  padding: 0 80px;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.05), rgba(236, 72, 153, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   CTA FINAL CARD
   ========================================================================== */
.final-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.final-cta-card {
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.final-cta-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.18) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 31px;
}

.final-cta-card h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  max-width: 720px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.final-cta-text {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}

.final-cta-text strong {
  color: var(--pink);
  font-size: 22px;
  font-weight: 800;
}

.final-cta-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  max-width: 760px;
}

.final-cta-benefits li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-check {
  color: #10B981;
  font-weight: 800;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.final-cta-buttons .btn {
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
}

.final-cta-footer {
  font-size: 13px;
  color: var(--text-muted-dark);
  font-weight: 500;
  margin-top: 4px;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
  background: #080A12;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 0;
  margin-top: 100px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 40px;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo-symbol {
  width: 26px;
  height: 26px;
  display: block;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted-dark);
  font-weight: 500;
  margin-top: 8px;
}

.footer-benefits-col h4,
.footer-contact-col h4 {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-benefits-list li {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-benefits-list li .check-icon {
  color: #10B981;
  font-weight: bold;
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  width: fit-content;
}

.footer-whatsapp-link:hover {
  background: rgba(236, 72, 153, 0.05);
  border-color: rgba(236, 72, 153, 0.2);
  transform: translateY(-2px);
}

.whatsapp-icon-inline {
  color: #25D366;
}

/* ==========================================================================
   RESPONSIVIDADE DAS NOVAS SEÇÕES (MEDIA QUERIES)
   ========================================================================== */

/* Telas médias (Tablet horizontal) */
@media (max-width: 1200px) {
  .final-section-container,
  .process-timeline-container,
  .testimonials-container,
  .stats-container,
  .final-cta-container,
  .footer-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .guarantee-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablets (Retrato) */
@media (max-width: 991px) {
  .final-section-container,
  .process-timeline-container,
  .testimonials-container,
  .stats-container,
  .final-cta-container,
  .footer-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .quality-header h2 {
    font-size: 32px;
  }

  .timeline-steps {
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
  }

  .timeline-step {
    width: 100%;
  }

  .timeline-arrow {
    transform: rotate(90deg); /* Aponta para baixo no mobile/tablet */
    opacity: 0.3;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card {
    grid-column: auto !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .final-cta-card {
    padding: 48px 32px;
  }

  .final-cta-card h2 {
    font-size: 28px;
  }
}

/* Celulares (Smartphones) */
@media (max-width: 576px) {
  .guarantees-testimonials-section {
    padding-top: 80px;
  }

  .final-section-container,
  .process-timeline-container,
  .testimonials-container,
  .stats-container,
  .final-cta-container,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quality-header h2 {
    font-size: 26px;
  }

  .quality-subtitle {
    font-size: 14px;
  }

  .guarantee-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .guarantee-card {
    padding: 28px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 20px;
  }

  .stat-item {
    border-right: none !important;
  }

  .final-cta-card {
    padding: 36px 20px;
    gap: 20px;
    border-radius: 24px;
  }

  .final-cta-card h2 {
    font-size: 22px;
  }

  .final-cta-text {
    font-size: 14.5px;
  }

  .final-cta-text strong {
    font-size: 18px;
  }

  .final-cta-benefits {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   AUDIO SHOWCASE SECTION
   ========================================================================== */
.audio-showcase-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 23, 42, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.audio-showcase-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.audio-showcase-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.audio-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.04);
  letter-spacing: 1px;
}

.audio-showcase-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1.2px;
  line-height: 1.25;
}

.audio-showcase-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.audio-players-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.audio-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: rgba(30, 41, 59, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.audio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(30, 41, 59, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.audio-cover-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.4);
}

.audio-cover-gradient {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.cover-1 { background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%); }
.cover-2 { background: linear-gradient(135deg, #EC4899 0%, #3B82F6 100%); }
.cover-3 { background: linear-gradient(135deg, #8B5CF6 0%, #1D4ED8 100%); }
.cover-4 { background: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%); }
.cover-5 { background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%); }

.cover-music-icon {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: var(--transition-smooth);
}

.audio-card:hover .cover-music-icon {
  transform: scale(1.12);
}

/* Equalizador Visual do Player */
.equalizer-decor {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audio-card.playing .equalizer-decor {
  opacity: 1;
}

.equalizer-decor span {
  width: 2.5px;
  height: 100%;
  background: white;
  border-radius: 2px;
  transform-origin: bottom;
  animation: bounce-wave-equalizer 0.7s infinite alternate;
}

.equalizer-decor span:nth-child(1) { height: 40%; animation-delay: 0.15s; }
.equalizer-decor span:nth-child(2) { height: 95%; animation-delay: 0.35s; }
.equalizer-decor span:nth-child(3) { height: 30%; animation-delay: 0.55s; }
.equalizer-decor span:nth-child(4) { height: 75%; animation-delay: 0.25s; }

@keyframes bounce-wave-equalizer {
  0% { transform: scaleY(0.15); }
  100% { transform: scaleY(1.05); }
}

.audio-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.audio-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-controls-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.audio-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.45), 0 2px 6px rgba(236, 72, 153, 0.3);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.audio-play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.6), 0 0 0 4px rgba(236, 72, 153, 0.15);
  filter: brightness(1.15);
}

.play-svg {
  fill: currentColor;
  transform: translateX(1px);
  transition: var(--transition-smooth);
}

.audio-play-btn.playing .play-svg {
  transform: none;
}

.audio-timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.audio-progress-container {
  position: relative;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
}

.audio-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 3px;
  position: relative;
  transition: width 0.1s linear;
}

.audio-progress-handle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.audio-progress-container:hover .audio-progress-handle {
  opacity: 1;
}

.audio-time-info {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted-dark);
  font-weight: 600;
}

.audio-showcase-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.audio-showcase-cta h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.audio-showcase-cta p {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   WIZARD: BADGES DE CONVERSÃO E ETAPA 0
   ========================================================================== */
.wizard-header-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 23, 42, 0.15);
}

.wizard-trust-badges {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.trust-badge-item {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
}

/* Etapa 0 especificidades */
.step-subtext-security {
  font-size: 12.5px;
  color: #10B981;
  font-weight: 700;
  margin-top: -12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-desc {
  font-size: 11.5px;
  color: var(--text-muted-dark);
  font-weight: 500;
  margin-top: 4px;
}

.security-info-card {
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.security-info-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.security-info-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.security-list-title {
  font-weight: 700;
  margin-top: 4px;
}

.security-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin-top: 4px;
}

.security-list li {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.security-check {
  color: #10B981;
  font-weight: 800;
}

/* Responsividade complementar para players e Wizard */
@media (max-width: 991px) {
  .audio-players-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .audio-showcase-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .audio-showcase-header h2 {
    font-size: 26px;
  }
  
  .audio-card {
    padding: 16px;
    gap: 14px;
  }
  
  .audio-cover-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 12px;
  }
  
  .audio-info h3 {
    font-size: 15px;
  }
  
  .audio-info p {
    font-size: 12px;
  }
  
  .audio-showcase-cta h3 {
    font-size: 18px;
  }
  
  .wizard-trust-badges {
    justify-content: center;
  }
  
  .trust-badge-item {
    font-size: 9.5px;
    padding: 4px 8px;
  }
  
  .security-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ==========================================================================
   HERO PLAYER SLIDER (integrado na coluna direita do Hero)
   ========================================================================== */

.hero-player-wrapper {
  overflow: hidden;
  cursor: default;
  position: relative;
}

.hero-player-label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: 9999px;
  white-space: nowrap;
}

.hero-music-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 52px;
  z-index: 5;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  padding: 60px 24px 20px 24px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide.slide-out-left {
  opacity: 0;
  transform: translateX(-40px);
  pointer-events: none;
}

.hero-audio-card {
  width: 100%;
  background: rgba(15, 23, 42, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.6) !important;
}

.hero-audio-card:hover {
  transform: none !important;
  border-color: rgba(124, 58, 237, 0.35) !important;
}

.hero-slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.65) 0%, transparent 100%);
}

.hero-slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.hero-slider-btn:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.4));
  border-color: rgba(236, 72, 153, 0.6);
  color: white;
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

.hero-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-dot.active {
  width: 20px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   FORMULÁRIO INTELIGENTE: Campos "Outro" e validações de texto
   ========================================================================== */

.outro-field {
  margin-top: 16px;
  animation: fadeUp 0.35s ease both;
}

.outro-field.hidden {
  display: none;
}

.outro-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  display: block;
}

.outro-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition-smooth);
  outline: none;
}

.outro-field input:focus {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(124, 58, 237, 0.05);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.textarea-word-count {
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.textarea-word-count.valid {
  color: #10B981;
}

.word-count-min {
  font-weight: 500;
  color: var(--text-muted-dark);
}

.textarea-validation-msg {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 12.5px;
  color: #FCD34D;
  line-height: 1.5;
}

.textarea-validation-msg.hidden {
  display: none;
}

.textarea-incentive {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.incentive-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.incentive-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 12px;
}

.incentive-list li {
  font-size: 12px;
  color: var(--text-muted-dark);
  font-weight: 500;
  padding-left: 14px;
  position: relative;
}

.incentive-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 10px;
}

.textarea-encouragement {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(167, 139, 250, 0.8);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .hero-slide {
    padding: 52px 16px 16px 16px;
  }
  .hero-player-label {
    font-size: 10px;
    padding: 5px 12px;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    padding: 50px 12px 12px 12px;
  }
  .incentive-list {
    grid-template-columns: 1fr;
  }
}
}

/* ============================================================================
   ██████╗ ███████╗███████╗██████╗  ██████╗ ███╗   ██╗███████╗
   ██╔══██╗██╔════╝██╔════╝██╔══██╗██╔═══██╗████╗  ██║██╔════╝
   ██████╔╝█████╗  ███████╗██████╔╝██║   ██║██╔██╗ ██║███████╗
   ██╔══██╗██╔══╝  ╚════██║██╔═══╝ ██║   ██║██║╚██╗██║╚════██║
   ██║  ██║███████╗███████║██║     ╚██████╔╝██║ ╚████║███████║
   RESPONSIVIDADE GLOBAL — MOBILE FIRST — Antigravity UI System
   ============================================================================
   Breakpoints:
     • 1280px  Desktop padrão (max-width container)
     • 1200px  Notebooks/telas menores
     •  991px  Tablets (portrait/landscape)
     •  768px  Tablets pequenos
     •  576px  Smartphones modernos (iPhone 15 Pro = 393px)
     •  480px  Smartphones intermediários
     •  375px  Smartphones menores
     •  320px  Smartphones muito pequenos
   ============================================================================ */

/* ==========================================================================
   UTILIDADES DE BASE — aplicadas em todos os tamanhos
   ========================================================================== */
img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   1280px+ — Desktop máximo / Ultrawide
   ========================================================================== */
@media (min-width: 1280px) {
  .hero-container,
  .header-container,
  .process-container,
  .pricing-container,
  .trust-bar-container,
  .final-section-container,
  .process-timeline-container,
  .testimonials-container,
  .stats-container,
  .final-cta-container,
  .footer-container {
    max-width: 1280px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .headline {
    font-size: 56px;
  }

  .subheadline {
    font-size: 22px;
  }

  .process-section {
    padding: 120px 0;
  }
}

/* ==========================================================================
   1200px — Notebooks / telas menores
   ========================================================================== */
@media (max-width: 1200px) {
  .headline {
    font-size: 46px;
  }

  .process-section,
  .pricing-section,
  .guarantees-testimonials-section {
    padding: 96px 0;
  }
}

/* ==========================================================================
   991px — Tablets (portrait + landscape)
   ========================================================================== */
@media (max-width: 991px) {

  /* ── Tipografia ── */
  .headline {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .subheadline {
    font-size: 17px;
  }

  /* ── Seções: padding vertical ── */
  .process-section,
  .pricing-section,
  .guarantees-testimonials-section {
    padding: 90px 0;
  }

  /* ── Hero section: uma coluna ── */
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-left: 32px;
    padding-right: 32px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
  }

  .subheadline {
    max-width: 100%;
  }

  .features-list {
    text-align: left;
    width: 100%;
    max-width: 540px;
  }

  .cta-group {
    align-items: center;
  }

  .hero-media {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  /* ── Header / Nav ── */
  .header {
    padding: 18px 0;
  }

  .header-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Menu hambúrguer expandido — ocupa tela toda */
  .nav-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .nav-menu.active .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-menu.active .nav-item {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
  }

  /* CTA dentro do menu mobile */
  .nav-menu.active .mobile-nav-cta {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* ── Como Funciona ── */
  .process-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .process-header h2 {
    font-size: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step-card {
    padding: 36px 28px;
  }

  /* ── Barra de Confiança: 2 col ── */
  .trust-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
    padding-left: 32px;
    padding-right: 32px;
  }

  /* ── Preços: 1 col ── */
  .pricing-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pricing-header h2 {
    font-size: 32px;
  }

  .pricing-content {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    margin: 0 auto;
  }

  .premium-card {
    padding: 38px;
  }

  /* ── Formulário / Wizard ── */
  .modal-card {
    width: 92%;
    max-height: 90vh;
  }

  #wizard-form {
    padding: 28px 30px;
  }

  .grid-relationships {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-occasions,
  .grid-genres {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-voices {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ── Garantias: 2 col ── */
  .final-section-container,
  .process-timeline-container,
  .testimonials-container,
  .stats-container,
  .final-cta-container,
  .footer-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .guarantee-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quality-header h2 {
    font-size: 32px;
  }

  /* ── Depoimentos: 2 col ── */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card {
    grid-column: auto !important;
  }

  /* ── Stats: 2×2 ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  /* ── CTA final ── */
  .final-cta-card {
    padding: 48px 32px;
  }

  .final-cta-card h2 {
    font-size: 28px;
  }

  /* ── Timeline: vertical ── */
  .timeline-steps {
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px;
  }

  .timeline-step {
    width: 100%;
  }

  .timeline-arrow {
    transform: rotate(90deg);
    opacity: 0.3;
  }
}

/* ==========================================================================
   768px — Tablets pequenos (iPad mini, etc.)
   ========================================================================== */
@media (max-width: 768px) {
  .headline {
    font-size: 36px;
  }

  .hero-section {
    padding-top: 110px;
  }

  .hero-media {
    max-width: 480px;
  }

  /* Grids do wizard — 2 col */
  .grid-relationships {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-voices {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Trust bar: 2 col mais compacto */
  .trust-bar-container {
    gap: 20px 16px;
  }

  /* ── Rodapé Responsivo ── */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-info-col,
  .footer-benefits-col,
  .footer-contact-col {
    align-items: center;
  }
  .footer-benefits-list {
    align-items: center;
  }
  .footer-desc {
    max-width: 100%;
  }
}

/* ==========================================================================
   576px — Smartphones modernos (iPhone 15, Pixel 7, etc.)
   ========================================================================== */
@media (max-width: 576px) {

  /* ── Tipografia ── */
  .headline {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .subheadline {
    font-size: 16px;
    line-height: 1.6;
  }

  .process-header h2,
  .pricing-header h2,
  .quality-header h2,
  .testimonials-header h2,
  .timeline-header h2 {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  /* ── Seções: padding vertical ── */
  .process-section,
  .pricing-section,
  .guarantees-testimonials-section {
    padding: 70px 0;
  }

  /* ── Hero ── */
  .hero-section {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
  }

  .hero-media {
    max-width: 100%;
  }

  /* Media container 4:3 no mobile para ver mais do player */
  .media-container-outer {
    aspect-ratio: 4 / 3;
  }

  /* ── Feature cards ── */
  .feature-card {
    padding: 16px;
    gap: 12px;
  }

  .feature-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .feature-info h3 {
    font-size: 14px;
  }

  .feature-info p {
    font-size: 13px;
  }

  /* ── Botões ── */
  .btn-hero-cta {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    min-height: 56px;
    border-radius: 16px;
  }

  /* ── Header ── */
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Como Funciona ── */
  .process-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-header h2 {
    font-size: 24px;
  }

  .process-step-card {
    padding: 28px 20px;
  }

  /* ── Trust Bar: 1 col ── */
  .trust-bar-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Preços ── */
  .pricing-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .premium-card {
    padding: 24px 20px;
    gap: 22px;
    border-radius: 20px;
  }

  .premium-price .amount {
    font-size: 44px;
  }

  /* ── Wizard ── */
  .modal-card {
    width: 95%;
    max-height: 92vh;
    border-radius: 20px;
  }

  #wizard-form {
    padding: 20px 18px;
    gap: 16px;
  }

  .wizard-step h2 {
    font-size: 20px;
  }

  .wizard-footer {
    margin-top: 20px;
    padding-top: 14px;
    flex-direction: column;
    gap: 10px;
  }

  .btn-wizard-back,
  .btn-wizard-next,
  .btn-submit-wizard {
    width: 100%;
    padding: 15px 20px;
    min-height: 52px;
    border-radius: 14px;
    font-size: 15px;
  }

  /* Ordem: próximo primeiro no mobile */
  .wizard-footer {
    flex-direction: column-reverse;
  }

  .grid-relationships {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-occasions,
  .grid-genres {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-voices,
  .grid-creation-method {
    grid-template-columns: 1fr;
  }

  .select-card.voice-card {
    padding: 16px;
  }

  .select-card.card-large {
    padding: 14px 10px;
    font-size: 13px;
  }

  .success-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .final-info-card {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }

  .countdown-number {
    font-size: 40px;
  }

  /* ── Garantias: 1 col ── */
  .final-section-container,
  .process-timeline-container,
  .testimonials-container,
  .stats-container,
  .final-cta-container,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .guarantee-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .guarantee-card {
    padding: 24px 18px;
  }

  /* ── Depoimentos: 1 col ── */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  /* ── Stats: 2×2 com divisor removido ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 16px;
    gap: 20px;
  }

  .stat-item {
    border-right: none !important;
  }

  .stat-num {
    font-size: 28px;
  }

  /* ── CTA Final ── */
  .final-cta-card {
    padding: 32px 18px;
    gap: 18px;
    border-radius: 20px;
  }

  .final-cta-card h2 {
    font-size: 22px;
  }

  .final-cta-text {
    font-size: 14px;
  }

  .final-cta-text strong {
    font-size: 18px;
  }

  .final-cta-benefits {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 8px;
    gap: 8px;
  }

  .final-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .final-cta-buttons .btn {
    width: 100%;
    min-height: 54px;
  }

  /* ── Rodapé ── */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ── WhatsApp Float: menor no mobile ── */
  .whatsapp-float-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  /* ── Audio Cards no Hero Slider ── */
  .hero-slide {
    padding: 46px 12px 14px 12px;
  }

  .hero-player-label {
    font-size: 9px;
    padding: 5px 10px;
  }

  /* ── Incentivar lista: 1 col ── */
  .incentive-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   480px — Smartphones intermediários
   ========================================================================== */
@media (max-width: 480px) {
  .headline {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .subheadline {
    font-size: 15px;
  }

  .hero-section {
    padding-top: 96px;
  }

  .hero-container {
    gap: 36px;
  }

  /* Media container mais alto no mobile menor */
  .media-container-outer {
    aspect-ratio: 3 / 4;
    max-width: 340px;
    margin: 0 auto;
  }

  .btn-hero-cta {
    font-size: 15px;
    padding: 16px 20px;
  }

  .wizard-step h2 {
    font-size: 18px;
  }

  .grid-relationships,
  .grid-occasions,
  .grid-genres {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .select-card {
    padding: 11px 6px;
    font-size: 12.5px;
  }

  .audio-cover-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }

  .audio-info h3 {
    font-size: 14px;
  }

  .audio-play-btn {
    width: 38px;
    height: 38px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-num {
    font-size: 32px;
  }
}

/* ==========================================================================
   375px — Smartphones menores (iPhone SE, Android base)
   ========================================================================== */
@media (max-width: 375px) {
  .headline {
    font-size: 26px;
  }

  .subheadline {
    font-size: 14px;
  }

  .header-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-container {
    padding-left: 16px;
    padding-right: 16px;
    gap: 32px;
  }

  .btn-hero-cta {
    font-size: 14px;
    padding: 15px 18px;
  }

  .grid-relationships,
  .grid-occasions,
  .grid-genres {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .select-card {
    padding: 10px 5px;
    font-size: 12px;
    border-radius: 10px;
  }

  .trust-bar-container,
  .process-container,
  .pricing-container,
  .final-section-container,
  .process-timeline-container,
  .testimonials-container,
  .stats-container,
  .final-cta-container,
  .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-card {
    width: 97%;
    border-radius: 16px;
  }

  #wizard-form {
    padding: 16px 14px;
  }

  .wizard-step h2 {
    font-size: 17px;
  }

  .audio-cover-wrapper {
    width: 64px;
    height: 64px;
  }

  .final-cta-card {
    padding: 28px 14px;
  }
}

/* ==========================================================================
   320px — Smartphones muito pequenos
   ========================================================================== */
@media (max-width: 320px) {
  .headline {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .hero-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .btn-hero-cta {
    font-size: 13px;
    padding: 14px 16px;
  }

  .select-card {
    font-size: 11px;
    padding: 9px 4px;
  }

  .grid-relationships,
  .grid-occasions,
  .grid-genres {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .modal-card {
    width: 100%;
    border-radius: 12px 12px 0 0;
    position: fixed;
    bottom: 0;
    max-height: 96vh;
  }

  .modal-overlay {
    align-items: flex-end;
  }
}

/* ==========================================================================
   PREFERÊNCIAS DE MOVIMENTO REDUZIDO (Acessibilidade)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up-1, .fade-up-2, .fade-up-3, .fade-up-4, .fade-up-5 {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ==========================================================================
   TOUCH IMPROVEMENTS — Melhorias de UX para touch
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
  /* Remove efeito de hover nos cards de seleção (toque) */
  .select-card:hover {
    transform: none;
  }

  .feature-card:hover {
    transform: none;
  }

  .process-step-card:hover {
    transform: none;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .guarantee-card:hover {
    transform: none;
  }

  /* Áreas de toque maiores nos botões */
  .audio-play-btn {
    min-width: 48px;
    min-height: 48px;
  }

  .hero-slider-btn {
    width: 40px;
    height: 40px;
  }

  /* Links de nav maiores */
  .nav-item {
    padding: 10px 0;
  }
}

/* ==========================================================================
   FORMULÁRIO INTELIGENTE & TECNOLÓGICO (WIZARD STYLES)
   ========================================================================== */

/* Split layout para formulário e resumo lateral */
/* Split layout para formulário - agora flexbox centralizado */
#wizard-form {
  display: flex;
  flex-direction: column;
  padding: 30px;
  max-height: calc(88vh - 120px);
  overflow-y: auto;
  box-sizing: border-box;
  flex: 1;
}

.wizard-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

/* Barra de progresso moderna (Estilo Typeform/Duolingo) */
.wizard-progress-container {
  padding: 24px 30px 14px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.wizard-progress-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wizard-progress-bar-wrapper {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  overflow: hidden;
}

.wizard-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 100%);
  border-radius: 9999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 11%;
}

/* Ocultar barra lateral antiga */
.wizard-summary-sidebar {
  display: none !important;
}

/* Status da História / Letra */
.story-status-container {
  display: flex;
  align-items: center;
  margin-top: 8px;
  gap: 12px;
  flex-wrap: wrap;
}

.story-status-msg {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 12px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.story-status-msg.valid {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #10B981;
}

/* Erros de Validação */
.validation-error-msg {
  display: none;
  color: #EF4444;
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
}

.form-group.validation-error .validation-error-msg {
  display: block;
}

/* Campos 'Outro' animados */
.outro-field {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.outro-field.active {
  max-height: 100px;
  opacity: 1;
  margin-top: 14px;
}

/* Estilização das Perguntas e Entradas Mobile First */
.wizard-step {
  display: none;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.wizard-step h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-top: 20px;
}

.wizard-step .form-group {
  margin-top: 24px;
}

.wizard-step input[type="text"],
.wizard-step input[type="email"],
.wizard-step textarea {
  font-size: 18px;
  padding: 16px 20px;
  min-height: 56px;
  background: rgba(15, 23, 42, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.wizard-step input[type="text"]:focus,
.wizard-step input[type="email"]:focus,
.wizard-step textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

/* Rolagem horizontal suave para estilo musical */
.select-scroll-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Grids e Layouts de Seleção */
.grid-relationships {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.grid-occasions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.grid-voices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.grid-voices .voice-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.grid-voices .voice-card.active {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--purple);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.voice-card-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.voice-card-content .voice-emoji {
  font-size: 28px;
}

.voice-card-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
}

.voice-card-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0 0 0;
}

/* Resumo Final & Checklist */
.review-details-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
}

.review-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.review-check-item strong {
  color: var(--text-main);
  min-width: 90px;
}

.review-check-item .check-icon {
  color: #10B981;
  font-weight: bold;
}

.review-value-card {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.review-value-card .value-item {
  flex: 1;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-value-card .value-item .val-icon {
  font-size: 24px;
}

.review-value-card .value-item .val-text {
  display: flex;
  flex-direction: column;
}

.review-value-card .value-item .val-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-value-card .value-item .val-amount {
  font-size: 18px;
  font-weight: 800;
  color: #10B981;
}

.review-value-card .value-item .val-delivery {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.btn-giant-submit {
  flex: 1;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%) !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  padding: 18px 24px !important;
  border-radius: 16px !important;
  animation: cta-pulse-btn 2s infinite;
}

@keyframes cta-pulse-btn {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Responsividade Mobile-First (Bypass overrides) */
@media (max-width: 600px) {
  .modal-overlay {
    align-items: stretch;
    justify-content: stretch;
    background: #080a12 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .modal-card {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: #080a12 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
  }

  .wizard-header-top {
    flex: 0 0 15dvh !important;
    height: 15dvh !important;
    min-height: 15dvh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    background: #080a12 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-sizing: border-box !important;
  }

  .wizard-progress-container {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    box-sizing: border-box;
  }

  .wizard-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .wizard-progress-step-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .wizard-progress-dots {
    font-size: 15px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-sans);
  }

  .wizard-progress-dots .progress-dot.active {
    color: var(--pink) !important;
  }

  .wizard-progress-context {
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    margin-top: 4px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .wizard-progress-bar-wrapper {
    height: 4px !important;
  }

  .wizard-trust-badges {
    display: none !important;
  }

  #wizard-form {
    flex: 0 0 85dvh !important;
    height: 85dvh !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow: hidden !important;
  }

  .wizard-step {
    flex: 0 0 65dvh !important;
    height: 65dvh !important;
    min-height: 65dvh !important;
    padding: 24px 24px 20px 24px !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    display: none;
    flex-direction: column;
  }

  .wizard-step.active {
    display: flex;
  }

  /* Margens Mobile First solicitadas */
  .wizard-step h2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .wizard-step .step-badge,
  .wizard-step .step-subtitle {
    margin-bottom: 8px !important;
  }

  .wizard-step .form-group {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .help-text {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
  }

  .wizard-step input[type="text"],
  .wizard-step textarea {
    min-height: 56px !important;
    font-size: 18px !important;
    border-radius: 16px !important;
    margin-top: 8px !important;
  }

  .wizard-step input::placeholder,
  .wizard-step textarea::placeholder {
    font-size: 16px !important;
  }

  .wizard-footer {
    flex: 0 0 20dvh !important;
    height: 20dvh !important;
    min-height: 20dvh !important;
    position: static !important;
    background: #080a12 !important;
    padding: 12px 24px 24px 24px !important;
    margin-top: 0 !important;
    z-index: 100 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    box-sizing: border-box !important;
  }

  .btn-wizard-back,
  .btn-wizard-next {
    width: 45% !important;
    max-width: 160px !important;
    height: 48px !important;
    min-height: 48px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Grid com 7 itens, último centralizado/span 2 */
  .grid-relationships {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .grid-relationships .select-card:last-child {
    grid-column: span 2;
  }

  /* Grid occasions em 2 colunas */
  .grid-occasions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .grid-voices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Estilos Musicais com rolagem horizontal */
  .select-scroll-horizontal {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
  }

  .select-scroll-horizontal::-webkit-scrollbar {
    height: 4px;
  }

  .select-scroll-horizontal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
  }

  .select-scroll-horizontal .select-card {
    flex: 0 0 140px !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }

  /* Textarea limite de altura mobile */
  .wizard-step textarea {
    min-height: 220px !important;
    max-height: 350px !important;
    resize: vertical;
  }

  .outro-field {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0 !important;
    width: 100%;
  }

  .outro-field.active {
    max-height: 150px;
    opacity: 1;
    margin-top: 16px !important;
  }

  .review-value-card {
    flex-direction: column;
    gap: 12px;
  }

  .wizard-progress-container {
    padding: 20px 20px 10px 20px;
  }
}

/* Tablet (min-width: 601px) and (max-width: 991px) */
@media (min-width: 601px) and (max-width: 991px) {
  .modal-card {
    max-width: 600px !important;
    width: 100% !important;
  }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
  .modal-card {
    max-width: 700px !important;
    width: 100% !important;
  }
}


/* ==========================================================================
   SHOWCASE MUSIC PLAYER SECTION
   ========================================================================== */
.showcase-section {
  padding: 100px 0;
  background: #080d16;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.showcase-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--violet-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.showcase-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.showcase-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.showcase-player-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* Player Card Premium */
.showcase-player-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.player-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0) 70%);
  top: -50px;
  left: -50px;
  pointer-events: none;
}

.player-cover-area {
  margin-bottom: 24px;
}

.player-cover-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#showcase-visualizer-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.player-cover-art {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
  z-index: 2;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.player-cover-art.playing {
  animation: rotateRecord 12s linear infinite;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

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

.player-info-area {
  text-align: center;
  margin-bottom: 20px;
}

.player-info-area h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.player-info-area p {
  font-size: 12px;
  color: var(--violet-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

/* Linha do Tempo / Timeline */
.player-timeline-area {
  margin-bottom: 20px;
}

.showcase-timeline-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-time {
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
  width: 32px;
  text-align: center;
}

.showcase-progress-wrapper {
  flex: 1;
  position: relative;
  height: 16px;
  display: flex;
  align-items: center;
}

.showcase-progress-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.showcase-progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.showcase-progress-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
}

.showcase-progress-slider:hover::-webkit-slider-thumb {
  transform: scale(1.3);
  background: var(--violet-light);
}

.showcase-progress-fill {
  position: absolute;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--violet) 0%, var(--pink) 100%);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
  width: 0%;
}

/* Controles Principais */
.player-controls-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.player-nav-btn {
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.player-nav-btn:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: rgba(236, 72, 153, 0.4);
  color: var(--text-main);
  transform: scale(1.12);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
}

.player-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.45), 0 2px 8px rgba(236, 72, 153, 0.3);
  transition: all 0.2s ease;
}

.player-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.6), 0 0 0 4px rgba(236, 72, 153, 0.15);
  filter: brightness(1.15);
}

.player-play-btn.playing {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #FFFFFF;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.5), 0 0 48px rgba(236, 72, 153, 0.2);
}

.player-play-btn.playing:hover {
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.6), 0 0 56px rgba(236, 72, 153, 0.25);
}

.player-play-btn svg {
  fill: currentColor !important;
  display: block;
}

.player-play-btn .play-icon {
  transform: translateX(1px);
}

/* Utilitários: Volume & Velocidade */
.player-utilities-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.showcase-speed-container {
  position: relative;
}

.showcase-speed-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.showcase-speed-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
}

.showcase-speed-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.showcase-speed-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.showcase-speed-item {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
}

.showcase-speed-item:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.showcase-speed-item.active {
  color: var(--violet-light);
  background: rgba(124, 58, 237, 0.1);
}

.showcase-volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-volume-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.showcase-volume-btn:hover {
  color: var(--text-main);
}

.showcase-volume-slider-wrapper {
  position: relative;
  width: 80px;
  height: 16px;
  display: flex;
  align-items: center;
}

.showcase-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1.5px;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.showcase-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
}

.showcase-volume-slider::-moz-range-thumb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
}

.showcase-volume-fill {
  position: absolute;
  left: 0;
  height: 3px;
  background: #FFFFFF;
  border-radius: 1.5px;
  z-index: 1;
  pointer-events: none;
  width: 80%;
}

/* Playlist Card */
.showcase-playlist-card {
  background: rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.playlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.playlist-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.playlist-count {
  font-size: 12px;
  color: var(--text-muted);
}

.showcase-playlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-playlist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.01);
  cursor: pointer;
  transition: all 0.2s ease;
}

.showcase-playlist-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.showcase-playlist-item.active {
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.2);
}

.showcase-playlist-item.active h4 {
  color: var(--violet-light);
}

.track-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  width: 16px;
  text-align: center;
}

.track-info {
  flex: 1;
}

.track-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 2px 0;
  transition: color 0.2s ease;
}

.track-info p {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

.track-equalizer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.small-eq span {
  background-color: var(--violet-light) !important;
  width: 2px !important;
  margin: 0 1px !important;
}

.showcase-playlist-item .equalizer-decor {
  display: none !important;
}

.showcase-playlist-item.active.playing .equalizer-decor {
  display: flex !important;
}

/* Responsividade do Player */
@media (max-width: 900px) {
  .showcase-player-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .showcase-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .showcase-player-card {
    padding: 20px;
  }
  .player-cover-wrapper {
    height: 160px;
  }
  .player-cover-art {
    width: 68px;
    height: 68px;
  }
  .player-info-area h3 {
    font-size: 18px;
  }
  .player-play-btn {
    width: 48px;
    height: 48px;
  }
  .player-controls-area {
    gap: 16px;
  }
  .showcase-volume-slider-wrapper {
    width: 60px;
  }
}

/* ==========================================================================
   HERO SECTION LAYOUT ADJUSTMENTS & RESPONSIVENESS
   ========================================================================== */

/* General and Desktop Layout */
.hero-section {
  min-height: 720px !important;
  display: flex !important;
  align-items: stretch !important;
}

.hero-container {
  align-items: stretch !important;
  position: relative !important;
}

.hero-media {
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  align-self: stretch !important;
}

/* Upper Area for Animation (70%) */
.hero-animation-container {
  width: 100% !important;
  height: 60% !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  transform: translateY(-40px) !important;
  z-index: 1 !important;
}

.hero-animation-container .media-container-outer {
  width: 100% !important;
  max-width: 480px !important;
  aspect-ratio: 16 / 9 !important;
}

.hero-animation-container .media-placeholder {
  pointer-events: none !important; /* avoid hover scale or click conflicts */
}

/* Bottom fade for animation */
.animation-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

/* Lower Area for Player (30%) */
.hero-player-container {
  position: absolute !important;
  bottom: 30px !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 5 !important;
}

.hero-player-card {
  position: relative !important;
  height: 180px !important;
  background: rgba(15, 23, 42, 0.45) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  overflow: hidden !important;
}

/* Override the slider inside the new player card */
.hero-player-card .hero-music-slider {
  bottom: 48px !important;
}

.hero-player-card .hero-slide {
  padding: 30px 16px 10px 16px !important;
  align-items: center !important;
}

.hero-player-card .hero-slider-controls {
  height: 48px !important;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%) !important;
}

/* Responsive: Tablet (Portrait/Landscape) */
@media (max-width: 991px) and (min-width: 769px) {
  .hero-animation-container {
    transform: translateY(-20px) !important;
  }
  .hero-player-container {
    position: relative !important;
    bottom: auto !important;
    margin-top: 40px !important;
    width: 100% !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .hero-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .hero-content {
    display: contents !important;
  }
  
  .hero-media {
    display: contents !important;
  }
  
  .headline {
    order: 1 !important;
  }
  
  .subheadline {
    order: 1.5 !important;
  }
  
  .cta-group {
    order: 2 !important;
  }
  
  .hero-animation-container {
    order: 3 !important;
    width: 100% !important;
    transform: none !important;
    margin-top: 10px !important;
  }
  
  .hero-animation-container .media-container-outer {
    max-width: 100% !important;
    aspect-ratio: auto !important;
    height: 280px !important;
  }
  
  .hero-animation-container .media-placeholder {
    height: 100% !important;
  }
  
  .hero-player-container {
    order: 4 !important;
    position: relative !important;
    bottom: auto !important;
    margin-top: 24px !important;
    width: 100% !important;
  }
  
  .features-list {
    order: 5 !important;
    margin-top: 20px !important;
  }
}

/* ==========================================================================
   IMPRESSÃO
   ========================================================================== */
@media print {
  .header,
  .whatsapp-float-btn,
  .modal-overlay,
  #confetti-canvas,
  #wave-canvas {
    display: none !important;
  }
}
