/* ==========================================================================
   NOWMADD DEV STUDIO — POMODOG LANDING PAGE STYLESHEET (2026 EDITION)
   Estética: Dark Cozy (#131313), Luxury Tech, Warm Amber, Glassmorphism
   Acessibilidade: WCAG AAA Contrast, Microinterações Fluidas, Responsive
   ========================================================================== */

:root {
  /* Paleta Base Dark Cozy */
  --bg-deep: #08080A;
  --bg-cozy: #131313;
  --bg-surface: #121217;
  --bg-card: rgba(22, 22, 28, 0.72);
  --bg-card-hover: rgba(30, 30, 40, 0.92);
  --bg-card-muted: rgba(18, 18, 22, 0.55);
  
  /* Acentos de Luz — Dourado Metálico & Âmbar Acolhedor */
  --accent-gold: #F59E0B;
  --accent-gold-light: #FBBF24;
  --accent-gold-glow: rgba(245, 158, 11, 0.18);
  --accent-gold-border: rgba(245, 158, 11, 0.38);
  --accent-gold-hairline: rgba(245, 158, 11, 0.75);

  /* 8 Cores Emocionais de Foco */
  --focus-blue: #3B82F6;
  --focus-purple: #A855F7;
  --focus-yellow: #EAB308;
  --focus-red: #EF4444;
  --focus-cyan: #06B6D4;
  --focus-emerald: #10B981;
  --focus-amber: #F59E0B;
  --focus-pink: #EC4899;

  /* Semântica & Alertas */
  --color-danger: #EF4444;
  --color-danger-bg: rgba(239, 68, 68, 0.08);
  --color-danger-border: rgba(239, 68, 68, 0.28);
  --color-success: #10B981;
  --color-success-bg: rgba(16, 185, 129, 0.08);
  --color-success-border: rgba(16, 185, 129, 0.28);

  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Grotesk', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.52);
  --text-dim: rgba(255, 255, 255, 0.28);

  /* Bordas e Sombras */
  --border-hairline: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.16);
  --border-glass: rgba(255, 255, 255, 0.12);
  --shadow-subtle: 0 20px 40px -15px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 0 50px -10px rgba(245, 158, 11, 0.28);
  --shadow-card: 0 24px 48px -12px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.08);

  /* Dimensões */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --transition-smooth: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & FUNDAÇÃO GLOBAL
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  background-color: var(--bg-deep);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Iluminação Volumétrica Suave */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.14) 0%, rgba(251, 191, 36, 0.04) 50%, transparent 75%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   TIPOGRAFIA & TÍTULOS EDITORIAIS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.28);
  margin-bottom: 18px;
}

.section-pill-badge span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.text-gold,
.hero-headline .text-gold {
  color: #FFA000 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFA000 !important;
  display: inline;
}

.section-title .text-gold {
  color: var(--accent-gold-light);
  background: linear-gradient(135deg, #FFF8E7 20%, #FFA000 70%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-desc {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   BLOCO 1: HEADER FIXO (STICKY GLASS NAV)
   ========================================================================== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-hairline);
  transition: var(--transition-smooth);
}

/* ==========================================
   MÁSCARA DE FOCO E TRANSPARÊNCIA (BACKDROP SCRIM)
   ========================================== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 4, 6, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 995;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
}

.nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

main {
  padding-top: 76px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.brand-name-gold {
  color: var(--accent-gold-light) !important;
  background: linear-gradient(135deg, #FFA000, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.35));
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.90rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--accent-gold-light);
}

.nav-link-premium {
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link-premium .premium-star {
  font-size: 0.85rem;
}

.nav-link-premium:hover {
  color: var(--accent-gold-light);
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

/* ==========================================
   DROPDOWNS DE LUXO COM GLASSMORFISM
   ========================================== */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.90rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-dropdown-trigger:hover,
.nav-item-dropdown.is-open .nav-dropdown-trigger {
  color: var(--accent-gold-light);
}

.dropdown-chevron {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.75;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Menu Suspenso Glassmorphism */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  min-width: 300px;
  background: rgba(14, 14, 18, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.92), 0 0 0 1px rgba(245, 158, 11, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  pointer-events: none;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Exibição em Hover e Click */
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Links do Dropdown de Índice */
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: var(--text-primary);
}

.nav-dropdown-link:hover {
  background: rgba(245, 158, 11, 0.09);
  transform: translateX(3px);
}

.dropdown-link-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 6px;
  border-radius: 6px;
  line-height: 1;
  flex-shrink: 0;
}

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

.dropdown-link-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.nav-dropdown-link:hover .dropdown-link-title {
  color: var(--accent-gold-light);
}

.dropdown-link-desc {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Dropdown de Idiomas */
.nav-dropdown-lang {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 10px;
  width: 330px;
  max-height: 380px;
  overflow-y: auto;
  padding: 14px;
  left: auto;
  right: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.35) rgba(255, 255, 255, 0.02);
}

.nav-dropdown-lang::-webkit-scrollbar {
  width: 5px;
}

.nav-dropdown-lang::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.nav-dropdown-lang::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.35);
  border-radius: 4px;
}

.nav-dropdown-lang::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.6);
}

.nav-dropdown-lang .lang-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.lang-flag {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.lang-item:hover .lang-name,
.lang-item.active .lang-name {
  color: #FFFFFF;
}

.lang-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.16);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.35);
  margin-left: auto;
  flex-shrink: 0;
}

.lang-item.active {
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-pill);
  color: var(--accent-gold-light);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
}

.nav-cta-btn:hover {
  background: var(--accent-gold);
  color: #08080A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-only-cta {
  display: none !important;
}

.nav-menu.mobile-active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 20px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  z-index: 1200;
}

@media (max-width: 600px) {
  .nav-menu.mobile-active .mobile-only-cta {
    display: flex !important;
  }
}

.nav-menu.mobile-active .nav-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.nav-menu.mobile-active .nav-link,
.nav-menu.mobile-active .nav-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-smooth);
}

.nav-menu.mobile-active .nav-dropdown-trigger {
  justify-content: space-between;
}

.nav-menu.mobile-active .nav-link:hover,
.nav-menu.mobile-active .nav-dropdown-trigger:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--accent-gold-light);
}

.nav-menu.mobile-active .mobile-cta-link {
  background: linear-gradient(135deg, #FFA000, #F59E0B) !important;
  color: #08080A !important;
  justify-content: center;
  font-weight: 800;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.nav-menu.mobile-active .nav-dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  width: 100%;
}

.nav-menu.mobile-active .nav-item-dropdown:not(.is-open) .nav-dropdown-menu {
  display: none;
}

/* ==========================================================================
   BLOCO 2: HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 64px 0 80px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

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

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.32);
  margin-bottom: 24px;
}

.hero-pill-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulse 2s infinite ease-in-out;
}

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

.hero-pill-badge span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

.hero-headline {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions-cluster {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

/* Botão Luxuoso Google Play */
.btn-googleplay-luxury {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #181820 0%, #0E0E12 100%);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.8), 0 0 24px -6px rgba(245, 158, 11, 0.25);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn-googleplay-luxury:hover::before {
  left: 100%;
}

.btn-googleplay-luxury:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold-light);
  box-shadow: 0 16px 40px -8px rgba(245, 158, 11, 0.35);
}

.btn-googleplay-luxury .play-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-googleplay-luxury .btn-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-googleplay-luxury .btn-sub {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

.btn-googleplay-luxury .btn-main {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: var(--border-highlight);
}

/* Trust Strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 580px;
  margin-top: 26px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.trust-badge:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
}

.trust-badge .badge-icon {
  font-size: 1.65rem;
  line-height: 1;
}

.trust-badge .badge-text-group {
  display: flex;
  flex-direction: column;
}

.trust-badge .badge-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.trust-badge .badge-subtitle {
  font-size: 0.96rem;
  color: #A3A3A3;
}

/* SMARTPHONE MOCKUP LUXURY CHASSIS & INTERACTIVE VIRTUAL SCREEN */
.mockup-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-cta-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.btn-playstore-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(20, 21, 27, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 158, 11, 0.15);
  transition: var(--transition-smooth);
}

.btn-playstore-hero:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.6), 0 0 22px rgba(245, 158, 11, 0.3);
  background: rgba(26, 27, 34, 0.95);
}

.btn-playstore-hero .play-icon {
  width: 26px;
  height: 26px;
  color: #FFA000;
  flex-shrink: 0;
}

.btn-playstore-hero .btn-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.btn-playstore-hero .btn-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-playstore-hero .btn-main {
  font-size: 1.02rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

.mockup-glow {
  position: absolute;
  width: 400px;
  height: 540px;
  background: radial-gradient(circle, var(--phone-accent-glow, rgba(234, 179, 8, 0.24)) 0%, rgba(234, 179, 8, 0.04) 55%, transparent 75%);
  filter: blur(65px);
  z-index: 0;
  pointer-events: none;
  transition: background 0.4s ease;
}

/* Carcaça Metálica Titanium do Smartphone */
.smartphone-frame {
  position: relative;
  z-index: 2;
  width: 326px;
  height: 686px;
  background: linear-gradient(155deg, #2b2c35 0%, #15161d 28%, #0d0e13 70%, #1b1c24 100%);
  border-radius: 50px;
  padding: 11px;
  box-shadow: 
    0 40px 90px -20px rgba(0, 0, 0, 0.96),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0 3px #1b1c23,
    0 0 0 4.5px rgba(255, 255, 255, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8),
    0 0 50px -10px var(--phone-accent-glow, rgba(234, 179, 8, 0.35));
  transition: all 0.35s ease;
  user-select: none;
}

.smartphone-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    0 48px 100px -20px rgba(0, 0, 0, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 0 3px #1b1c23,
    0 0 0 4.5px rgba(255, 255, 255, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8),
    0 0 65px -8px var(--phone-accent-glow, rgba(234, 179, 8, 0.5));
}

/* Botões Físicos Laterais do Chassis Titanium */
.smartphone-frame::before {
  content: '';
  position: absolute;
  left: -3.5px;
  top: 115px;
  width: 3.5px;
  height: 52px;
  background: linear-gradient(180deg, #3c3d47, #1f2027);
  border-radius: 2px 0 0 2px;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.4);
}

.smartphone-frame::after {
  content: '';
  position: absolute;
  right: -3.5px;
  top: 130px;
  width: 3.5px;
  height: 42px;
  background: linear-gradient(180deg, #3c3d47, #1f2027);
  border-radius: 0 2px 2px 0;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.4);
}

/* Dynamic Island Superior */
.smartphone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 23px;
  background: #000000;
  border-radius: var(--radius-pill);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.smartphone-island .lens {
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 35% 35%, #2a2b38 0%, #0d0e14 70%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.smartphone-island .lens::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 2.5px;
  height: 2.5px;
  background: rgba(99, 102, 241, 0.65);
  border-radius: 50%;
}

.smartphone-island .sensor {
  width: 5px;
  height: 5px;
  background: #111116;
  border-radius: 50%;
}

/* Reflexo de Vidro Angular Suave */
.phone-glass-glare {
  position: absolute;
  top: 11px;
  left: 11px;
  right: 11px;
  bottom: 11px;
  border-radius: 39px;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.02) 28%,
    transparent 42%,
    rgba(255, 255, 255, 0.015) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 18;
}

/* ==========================================================================
   TELA INTERNA DO SMARTPHONE: RÉPLICA LITERAL JETPACK COMPOSE (DARK COZY #131313)
   ========================================================================== */
.smartphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 39px;
  overflow: hidden;
  background: #0D0E12;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 12px 6px 12px;
  box-sizing: border-box;
}

/* 1. Status Bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 18px;
  padding: 2px 4px 0 4px;
  color: #FFFFFF;
  z-index: 20;
  flex-shrink: 0;
}

.phone-status-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
}

.phone-battery {
  display: flex;
  align-items: center;
  gap: 1.5px;
}

.phone-battery-pill {
  width: 20px;
  height: 10px;
  border: 1.2px solid rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  padding: 1px;
  display: flex;
  align-items: center;
}

.phone-battery-level {
  width: 82%;
  height: 100%;
  background: #10B981;
  border-radius: 1.5px;
}

.phone-battery-cap {
  width: 1.8px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 1px 1px 0;
}

/* 2. Header Oficial do App (Header.kt) */
.phone-compose-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  background: #131313;
  border-bottom: 1px solid rgba(81, 69, 50, 0.35);
  border-radius: 8px;
  margin: 1px 0;
  padding: 0 12px;
  flex-shrink: 0;
}

.phone-compose-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-compose-paw {
  font-size: 0.85rem;
  line-height: 1;
}

.phone-compose-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--phone-accent, #FFA000);
  transition: color 0.35s ease;
}

/* 3. Display do Timer (TimerComponents.kt - TimerDisplay) */
.phone-timer-display-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1px 0;
  flex-shrink: 0;
}

.phone-btn-step-square {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--phone-accent, #FFA000);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  user-select: none;
}

.phone-btn-step-square:hover:not(:disabled) {
  background: rgba(var(--phone-accent-rgb, 255, 160, 0), 0.18);
  border-color: var(--phone-accent, #FFA000);
  transform: scale(1.08);
}

.phone-btn-step-square:active:not(:disabled) {
  transform: scale(0.92);
}

.phone-timer-clock-giant {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 0 16px var(--phone-accent-glow, rgba(255, 160, 0, 0.35));
  min-width: 110px;
  text-align: center;
  user-select: none;
}

/* 4. Indicadores de Ciclo (TimerComponents.kt - CycleIndicators) */
.phone-compose-cycles {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1px 0;
  flex-shrink: 0;
}

.phone-cycle-paws-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.compose-cycle-paw {
  font-size: 0.85rem;
  line-height: 1;
  opacity: 0.3;
  filter: grayscale(1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.compose-cycle-paw.active {
  opacity: 1;
  filter: none;
  transform: scale(1.2);
  text-shadow: 0 0 10px var(--phone-accent-glow, rgba(255, 160, 0, 0.6));
}

/* 5. Palco do Mascote (TimerTab.kt - MascotStage) */
.phone-mascot-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  user-select: none;
  flex-shrink: 0;
}

.phone-mascot-circle {
  position: relative;
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(var(--phone-accent-rgb, 255, 160, 0), 0.1) 0%, rgba(255, 255, 255, 0.02) 60%, transparent 72%);
  border-radius: 50%;
}

.phone-stage-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
  pointer-events: none;
}

.stage-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 4;
}

.stage-glow-ring {
  fill: none;
  stroke: var(--phone-accent, #FFA000);
  stroke-width: 6;
  opacity: 0.22;
  filter: blur(4px);
  stroke-dasharray: 389.56;
  stroke-linecap: round;
  transition: stroke 0.35s ease;
}

.stage-progress-ring {
  fill: none;
  stroke: var(--phone-accent, #FFA000);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 389.56;
  filter: drop-shadow(0 0 6px var(--phone-accent-glow, rgba(255, 160, 0, 0.5)));
  transition: stroke 0.35s ease, filter 0.35s ease, stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-mascot-avatar-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-mascot-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.65));
  animation: 
    floatPet 3.8s ease-in-out infinite alternate, 
    breathePet 2.6s ease-in-out infinite alternate;
  will-change: transform;
}

.phone-mascot-shadow {
  width: 78px;
  height: 7px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 75%);
  border-radius: 50%;
  margin-top: -5px;
  animation: petShadowPulse 3.8s ease-in-out infinite alternate;
}

/* 6. Barra Bipartida de Ação Oficial (TimerComponents.kt - TimerControls) */
.phone-action-bipartite-bar {
  display: flex;
  align-items: center;
  height: 38px;
  border: 1px solid var(--phone-accent, #FFA000);
  border-radius: 14px;
  background: rgba(19, 19, 19, 0.75);
  margin: 2px 0;
  overflow: hidden;
  box-shadow: 0 4px 14px -3px var(--phone-accent-glow, rgba(255, 160, 0, 0.25));
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}

.phone-action-left-btn {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0 12px;
  transition: background 0.2s ease;
}

.phone-action-left-btn:hover {
  background: rgba(var(--phone-accent-rgb, 255, 160, 0), 0.12);
}

.action-btn-icon {
  font-size: 0.82rem;
  color: var(--phone-accent, #FFA000);
  transition: color 0.35s ease;
}

.action-btn-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.phone-action-divider {
  width: 1px;
  height: 60%;
  background: var(--phone-accent, #FFA000);
  opacity: 0.45;
  transition: background 0.35s ease;
}

.phone-action-right-btn {
  width: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
}

.phone-action-right-btn:hover {
  background: rgba(var(--phone-accent-rgb, 255, 160, 0), 0.12);
}

.deepwork-eye-icon {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.phone-action-right-btn.active-zen .deepwork-eye-icon {
  filter: drop-shadow(0 0 6px var(--phone-accent, #FFA000));
  transform: scale(1.15);
}

/* 7. Os Três Seletores Triplos Horizontais (A marca registrada do app) */
.phone-triple-selectors-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 1px 0;
  flex-shrink: 0;
}

.compose-triple-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.selector-side-box {
  flex: 0 0 29%;
  height: 27px;
  background: #18181F;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.63rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
  user-select: none;
}

.selector-side-box.side-prev {
  border-radius: 12px 0 0 12px;
  border-right: none;
}

.selector-side-box.side-next {
  border-radius: 0 12px 12px 0;
  border-left: none;
}

.selector-side-box:hover {
  background: #23232C;
  color: #FFFFFF;
}

.selector-side-box:active {
  transform: scale(0.97);
}

.selector-center-box {
  flex: 1 1 42%;
  height: 32px;
  border-radius: 12px;
  border: 1px solid var(--phone-accent, #FFA000);
  background: rgba(19, 19, 19, 0.95);
  color: var(--phone-accent, #FFA000);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  padding: 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px var(--phone-accent-glow, rgba(255, 160, 0, 0.2));
  transition: all 0.25s ease;
  user-select: none;
  z-index: 2;
}

.selector-center-box:hover {
  background: rgba(var(--phone-accent-rgb, 255, 160, 0), 0.12);
  transform: scale(1.02);
}

.selector-center-box:active {
  transform: scale(0.97);
}

.selector-center-box.playing-sound {
  animation: pulseCenterSound 1.8s infinite ease-in-out;
}

@keyframes pulseCenterSound {
  0%, 100% { box-shadow: 0 0 6px var(--phone-accent-glow, rgba(255, 160, 0, 0.3)); }
  50% { box-shadow: 0 0 14px var(--phone-accent, #FFA000); }
}

/* 8. Barra de Navegação Inferior Oficial (MainScreen.kt - NavigationBar) */
.phone-compose-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 48px;
  background: rgba(19, 19, 19, 0.98);
  border-top: 1px solid rgba(81, 69, 50, 0.35);
  border-radius: 16px 16px 0 0;
  margin: 1px -4px 0 -4px;
  padding: 2px 4px 0 4px;
  flex-shrink: 0;
}

.compose-nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 2px;
  transition: all 0.2s ease;
  user-select: none;
}

.compose-nav-tab:hover {
  color: #FFFFFF;
}

.compose-tab-pill {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.25s ease;
}

.compose-nav-tab.active .compose-tab-pill {
  background: rgba(var(--phone-accent-rgb, 255, 160, 0), 0.16);
  box-shadow: 0 0 10px var(--phone-accent-glow, rgba(255, 160, 0, 0.35));
}

.compose-tab-icon {
  font-size: 0.85rem;
  line-height: 1;
}

.compose-tab-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: inherit;
  transition: color 0.25s ease;
}

.compose-nav-tab.active {
  color: var(--phone-accent, #FFA000);
}

.compose-nav-tab.active .compose-tab-label {
  color: var(--phone-accent, #FFA000);
}

/* 9. Barra Inferior do Sistema (Home Bar) */
.phone-home-indicator {
  width: 76px;
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  margin: 3px auto 1px auto;
  flex-shrink: 0;
}

/* Modo Deep Work Zen (Foco Imersivo Limpo) */
.smartphone-screen.deep-work-mode .phone-compose-header,
.smartphone-screen.deep-work-mode .phone-compose-cycles,
.smartphone-screen.deep-work-mode .phone-triple-selectors-group,
.smartphone-screen.deep-work-mode .phone-compose-bottom-nav {
  opacity: 0.12;
  filter: blur(0.5px);
  pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.smartphone-screen.deep-work-mode .phone-mascot-circle {
  transform: scale(1.06);
  box-shadow: 0 0 35px var(--phone-accent-glow, rgba(255, 160, 0, 0.4));
}

/* Imagens de Contraste WebP */
.contrast-card-image-box {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
}

.card-punitive .contrast-card-image-box {
  border: 1px solid rgba(239, 68, 68, 0.35);
  box-shadow: 0 10px 24px -10px rgba(239, 68, 68, 0.3);
}

.card-cozy .contrast-card-image-box {
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 10px 24px -10px rgba(245, 158, 11, 0.3);
}

.contrast-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contrast-card:hover .contrast-card-img {
  transform: scale(1.04);
}

/* ==========================================================================
   BLOCO 3: O CONTRASTE VISUAL (ANTES VS. DEPOIS)
   ========================================================================== */
.contrast-section {
  padding: 96px 0;
  position: relative;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contrast-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Card Antes: Punitivo */
.contrast-card.card-punitive {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04) 0%, rgba(18, 18, 22, 0.75) 100%);
  border: 1px solid var(--color-danger-border);
  box-shadow: 0 20px 40px -15px rgba(239, 68, 68, 0.12);
}

.contrast-card.card-punitive:hover {
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-4px);
}

.card-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card-punitive .card-header-badge {
  background: var(--color-danger-bg);
  border: 1px solid var(--color-danger-border);
  color: var(--color-danger);
}

.contrast-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.contrast-card-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

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

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

.contrast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-punitive .contrast-icon {
  background: var(--color-danger-bg);
  color: var(--color-danger);
  border: 1px solid var(--color-danger-border);
}

/* Card Depois: Produtividade e Companhia */
.contrast-card.card-cozy {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(22, 22, 28, 0.85) 100%);
  border: 1px solid var(--accent-gold-border);
  box-shadow: 0 24px 48px -12px rgba(245, 158, 11, 0.18), 0 0 30px -10px rgba(245, 158, 11, 0.15);
}

.contrast-card.card-cozy:hover {
  border-color: var(--accent-gold-light);
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -12px rgba(245, 158, 11, 0.28);
}

.card-cozy .card-header-badge {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold-light);
}

.card-cozy .contrast-icon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold-border);
}

/* ==========================================================================
   BLOCO 4: COMO FUNCIONA (CORE LOOP EM 3 PASSOS)
   ========================================================================== */
.how-it-works-section {
  padding: 96px 0;
  position: relative;
}

.core-loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.step-number-pill {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
}

.step-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.step-footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent-gold-light);
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-pill);
  width: fit-content;
}

/* ==========================================================================
   BLOCO 5: O ÁLBUM DA MATILHA & MODO CUSTOM DOG
   ========================================================================== */
.pack-section {
  padding: 96px 0;
  position: relative;
}

/* Card Didático da Mecânica de Obtenção dos Mascotes (4 Pilares + Posse Perpétua) */
.pack-mechanics-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

.pack-mechanic-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-smooth);
}

.pack-mechanic-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.7);
}

.pack-mechanic-card .mechanic-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 2px;
}

.pack-mechanic-card .mechanic-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.pack-mechanic-card .mechanic-desc,
.pack-mechanic-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   NOVO SHOWCASE INTERATIVO DA MATILHA (CARROSSEL COM PÍLULAS)
   ========================================================================== */
.pack-showcase-player {
  background: var(--bg-card);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  max-width: 960px;
  margin: 0 auto 52px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.pack-showcase-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.pack-player-top {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 24px;
}

.pack-dog-display {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(19, 19, 19, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  transition: var(--transition-smooth);
}

.pack-dog-image-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(22, 22, 28, 0.9) 70%);
  border: 2px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.25);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.pack-dog-display:hover .pack-dog-image-box {
  transform: scale(1.05);
  border-color: var(--accent-gold-light);
}

.pack-dog-image-box img {
  width: 115px;
  height: 115px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pack-dog-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pack-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pack-badges-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pack-type-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pack-type-badge.free {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ADE80;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pack-type-badge.bones {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #FBBF24;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pack-type-badge.premium {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
  color: #FACC15;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pack-type-badge.season {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #C084FC;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pack-index-indicator {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.pack-dog-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.pack-dog-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pack-pills-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.3) transparent;
}

.pack-pills-strip::-webkit-scrollbar {
  height: 6px;
}

.pack-pills-strip::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 3px;
}

.pack-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.pack-pill:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  color: #FFFFFF;
}

.pack-pill.active {
  background: rgba(245, 158, 11, 0.16);
  border-color: var(--accent-gold-light);
  color: var(--accent-gold-light);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

/* ==========================================================================
   NOVO BLOCO: O ÁLBUM DA MATILHA & CARDS DE HERÓI
   ========================================================================== */
.pack-album-feature-block {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.08) 0%, rgba(22, 22, 28, 0.92) 40%, rgba(13, 14, 19, 0.98) 100%);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-xl);
  padding: 52px;
  max-width: 1040px;
  margin: 0 auto 56px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 158, 11, 0.08);
  position: relative;
  overflow: hidden;
}

.pack-album-feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.album-feature-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.album-feature-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
}

.album-feature-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.album-feature-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.album-collector-card-wrapper {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.album-collector-card {
  width: 290px;
  background: linear-gradient(165deg, #21212c 0%, #14141a 45%, #0e0e12 100%);
  border: 2px solid rgba(245, 158, 11, 0.45);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.22);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.album-collector-card:hover {
  transform: translateY(-6px) scale(1.02) rotate(-0.5deg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9), 0 0 45px rgba(245, 158, 11, 0.35);
  border-color: var(--accent-gold-light);
}

.collector-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collector-foil-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.collector-paws-strip {
  display: flex;
  gap: 2px;
  font-size: 0.78rem;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.6));
}

.collector-card-artwork {
  width: 100%;
  height: 330px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collector-card-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album-collector-card:hover .collector-card-artwork img {
  transform: scale(1.05);
}

.collector-card-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding-top: 4px;
}

.collector-breed-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.collector-quote {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.4;
}

.collector-format-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  margin-top: 4px;
  display: inline-block;
  align-self: center;
}

.album-feature-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}

.album-info-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.album-info-desc {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.album-mechanics-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.album-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: var(--transition-smooth);
}

.album-pillar-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateX(4px);
}

.pillar-icon {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.pillar-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.pillar-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Modo Custom Dog Highlight Card */
.custom-dog-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(18, 18, 24, 0.88) 50%, rgba(168, 85, 247, 0.08) 100%);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.custom-dog-content h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.custom-dog-content p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.custom-dog-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-dog-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Simulação do Timer Custom Dog no Smartphone */
.custom-dog-screen-wrapper {
  background: #131313;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.custom-dog-screen-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.custom-dog-timer-ring {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  padding: 6px;
  border: 4px solid #FFA000;
  box-shadow: 
    0 0 25px rgba(255, 160, 0, 0.38),
    inset 0 0 20px rgba(255, 160, 0, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 160, 0, 0.12) 0%, rgba(19, 19, 19, 0.9) 70%);
  animation: pulseGoldRing 3.5s ease-in-out infinite;
}

@keyframes pulseGoldRing {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(255, 160, 0, 0.35),
      inset 0 0 16px rgba(255, 160, 0, 0.15),
      0 12px 30px rgba(0, 0, 0, 0.7);
  }
  50% {
    box-shadow: 
      0 0 34px rgba(255, 160, 0, 0.55),
      inset 0 0 24px rgba(255, 160, 0, 0.28),
      0 16px 36px rgba(0, 0, 0, 0.85);
  }
}

.custom-dog-avatar-real {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.custom-dog-clock-overlay {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #131313;
  border: 1.5px solid #FFA000;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.85), 0 0 16px rgba(255, 160, 0, 0.35);
  white-space: nowrap;
}

.custom-dog-tag-pill {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--accent-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Selo ⭐ Premium Exclusivo nos Cards de Cores */
.card-premium-pill {
  color: var(--accent-gold-light);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 9999px;
  padding: 3px 8px;
  font-size: 0.70rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ==========================================================================
   SUPERBLOCO UNIFICADO: COLECIONISMO & CONEXÃO AFETIVA
   ========================================================================== */
.cozy-collection-section {
  padding: 90px 0;
  position: relative;
}
.cozy-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}
.collection-showcase-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}
.collection-showcase-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.08);
}
.collection-card-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  width: 100%;
  margin-bottom: 24px;
}
.collection-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 440px;
}
.collection-badge-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  margin-bottom: 12px;
}
.collection-badge-tag.gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #FBBF24;
}
.collection-item-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}
.collection-item-desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
@media (max-width: 860px) {
  .cozy-collection-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ==========================================================================
   BLOCO 6: PSICOESTÉTICA DAS 8 CORES DE FOCO
   ========================================================================== */
.psycho-colors-section {
  padding: 96px 0;
  position: relative;
}

/* ==========================================================================
   NOVO SHOWCASE PSICOESTÉTICO DAS 8 CORES DE FOCO
   ========================================================================== */
.colors-showcase-player {
  background: var(--bg-card);
  border: 1px solid var(--active-color, var(--accent-gold-border));
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 16px 40px -10px var(--active-glow, rgba(234, 179, 8, 0.35));
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.colors-showcase-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--active-color, var(--accent-gold)), transparent);
  transition: background 0.35s ease;
}

.colors-player-top {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 24px;
}

.color-display-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(19, 19, 19, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  transition: var(--transition-smooth);
}

.color-swatch-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--active-color, #EAB308);
  box-shadow: 0 12px 32px var(--active-glow, rgba(234, 179, 8, 0.5));
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
}

.color-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.color-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.color-hex-tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--active-color, var(--accent-gold-light));
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.35s ease;
}

.color-index-indicator {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.color-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.color-state-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--active-color, var(--accent-gold-light));
  margin-top: -4px;
  transition: color 0.35s ease;
}

.color-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.colors-pills-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.3) transparent;
}

.colors-pills-strip::-webkit-scrollbar {
  height: 6px;
}

.colors-pills-strip::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 3px;
}

.color-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.color-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.color-pill.active {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--active-color, var(--accent-gold-light));
  color: #FFFFFF;
  box-shadow: 0 0 14px var(--active-glow, rgba(234, 179, 8, 0.25));
}

.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

/* ==========================================================================
   BLOCO 7: ALÉM DO TIMER (SHOWCASE DE RECURSOS)
   ========================================================================== */
.features-showcase-section {
  padding: 96px 0;
  position: relative;
}

.features-stack {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse .feature-info {
  direction: ltr;
}

.feature-row.reverse .feature-visual {
  direction: ltr;
}

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

.feature-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.28);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-bottom: 16px;
  width: fit-content;
}

.feature-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-specs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.feature-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-spec-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-visual::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, rgba(245, 158, 11, 0.02) 60%, transparent 75%);
  filter: blur(55px);
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   SHOWCASE PHONE FRAME — DESIGN DE HARDWARE ULTRA-PREMIUM TITANIUM ESCURO
   ========================================================================== */
.showcase-phone-frame {
  position: relative;
  z-index: 2;
  width: 292px;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(155deg, #2b2c35 0%, #1c1d24 28%, #0d0e13 70%, #1b1c24 100%);
  border-radius: 48px;
  padding: 10px;
  box-shadow: 
    0 35px 80px -15px rgba(0, 0, 0, 0.96),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0 2.5px #1c1d24,
    0 0 0 4.5px rgba(255, 255, 255, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8),
    0 0 50px -10px rgba(245, 158, 11, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  user-select: none;
}

.showcase-phone-frame:hover {
  transform: translateY(-8px) scale(1.018);
  box-shadow: 
    0 45px 95px -15px rgba(0, 0, 0, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 0 2.5px #1c1d24,
    0 0 0 4.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8),
    0 0 65px -8px rgba(245, 158, 11, 0.45);
}

/* Botões Físicos Laterais do Chassis Showcase */
.showcase-phone-frame::before {
  content: '';
  position: absolute;
  left: -3.5px;
  top: 96px;
  width: 3.5px;
  height: 46px;
  background: linear-gradient(180deg, #3c3d47, #1f2027);
  border-radius: 2px 0 0 2px;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.4);
}

.showcase-phone-frame::after {
  content: '';
  position: absolute;
  right: -3.5px;
  top: 112px;
  width: 3.5px;
  height: 38px;
  background: linear-gradient(180deg, #3c3d47, #1f2027);
  border-radius: 0 2px 2px 0;
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.4);
}

/* Dynamic Island nos showcases - Oculta para não sobrepor telas capturadas */
.showcase-phone-frame .smartphone-island {
  display: none !important;
}

/* Reflexo de Vidro Angular Suave nos showcases */
.showcase-phone-frame .phone-glass-glare {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 38px;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.02) 28%,
    transparent 42%,
    rgba(255, 255, 255, 0.015) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 18;
}

/* Tela interna do showcase com overflow hidden e cantos arredondados */
.showcase-screen {
  position: relative;
  width: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #0D0E12;
  display: flex;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.showcase-screen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 38px;
  object-fit: cover;
}

.screenshot-frame {
  position: relative;
  max-width: 320px;
  width: 100%;
  border-radius: 36px;
  padding: 10px;
  background: #0E0E12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.85),
    0 0 40px -10px rgba(245, 158, 11, 0.2);
  transition: var(--transition-smooth);
}

.screenshot-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 40px 80px -15px rgba(0, 0, 0, 0.95),
    0 0 50px -5px rgba(245, 158, 11, 0.35);
  border-color: var(--accent-gold-border);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

/* ==========================================================================
   BLOCO 8: PRIVACIDADE & SOBERANIA (ZERO DATA COLLECTED)
   ========================================================================== */
.privacy-section {
  padding: 96px 0;
  position: relative;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.privacy-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.15);
}

.privacy-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.privacy-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.privacy-card-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   BLOCO 9: FAQ ESTRATÉGICO COM ACCORDION INTERATIVO
   ========================================================================== */
.faq-section {
  padding: 96px 0;
  position: relative;
}

.faq-accordion-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-highlight);
}

.faq-item.active {
  border-color: var(--accent-gold-border);
  box-shadow: 0 12px 32px -8px rgba(245, 158, 11, 0.15);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.faq-icon-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--accent-gold);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer-panel {
  padding: 0 28px 24px 28px;
}

.faq-answer-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ==========================================================================
   BLOCO 10: MONUMENTAL FINAL CTA & FOOTER MULTINÍVEL
   ========================================================================== */
.final-cta-section {
  padding: 80px 0 100px 0;
  position: relative;
}

.cta-monumental-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(18, 18, 24, 0.95) 40%, rgba(14, 14, 18, 0.98) 100%);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px -15px rgba(245, 158, 11, 0.25);
}

.cta-monumental-card .cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-monumental-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.cta-monumental-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.cta-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-spec-pill {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}

/* FOOTER MULTINÍVEL */
.footer-editorial {
  background: #050507;
  border-top: 1px solid var(--border-hairline);
  padding: 80px 0 40px 0;
  color: var(--text-secondary);
}

.footer-grid-4col {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

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

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-brand-title img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-brand-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 340px;
}

.footer-col-title {
  font-size: 1.10rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

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

.footer-divider {
  height: 1px;
  background: var(--border-hairline);
  margin-bottom: 32px;
}

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

.pomodoro-disclaimer {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 860px;
  margin: 0 auto;
}

.pomodoro-disclaimer strong {
  color: #FFFFFF;
  font-weight: 700;
}

.copyright-text {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions-cluster {
    justify-content: center;
  }
  .trust-strip {
    margin-left: auto;
    margin-right: auto;
  }
  .mockup-container {
    padding: 28px 0;
    margin: 0 auto;
  }
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .feature-row.reverse .feature-info, .feature-row.reverse .feature-visual {
    direction: ltr;
  }
  .footer-grid-4col {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .pack-spotlight-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 36px;
    text-align: center;
  }
  .pack-spotlight-info {
    align-items: center;
  }
  .pack-spotlight-features {
    justify-content: center;
  }
  .custom-dog-banner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 36px;
    text-align: center;
  }
  .custom-dog-content {
    align-items: center;
  }
  .custom-dog-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .nav-item-dropdown {
    width: 100%;
  }
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    transform: none;
    box-shadow: none;
    background: rgba(22, 22, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    margin-top: 6px;
    padding: 6px;
  }
  .nav-item-dropdown.is-open .nav-dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .contrast-grid {
    grid-template-columns: 1fr;
  }
  .core-loop-grid {
    grid-template-columns: 1fr;
  }
  .pack-mechanics-banner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .footer-grid-4col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .smartphone-frame {
    width: 298px;
    height: 648px;
    border-radius: 46px;
    padding: 9px;
  }
  .smartphone-screen {
    border-radius: 37px;
    padding: 7px 10px 5px 10px;
  }
  .showcase-phone-frame {
    width: 270px;
    border-radius: 42px;
    padding: 8px;
  }
  .showcase-screen {
    border-radius: 34px;
  }
  .showcase-screen img {
    border-radius: 34px;
  }
  .showcase-phone-frame .phone-glass-glare {
    border-radius: 34px;
  }
  .showcase-phone-frame .smartphone-island {
    width: 68px;
    height: 16px;
    top: 13px;
  }
  .phone-pet-stage {
    width: 126px;
    height: 126px;
  }
  .phone-pet-visual {
    width: 96px;
    height: 96px;
  }
  .phone-timer-clock {
    font-size: 1.85rem;
  }
  .phone-btn-play {
    width: 40px;
    height: 40px;
  }
  .phone-btn-action {
    width: 30px;
    height: 30px;
  }
  .album-feature-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .album-feature-info {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .smartphone-frame {
    width: 280px;
    height: 614px;
    border-radius: 42px;
    padding: 8px;
  }
  .smartphone-screen {
    border-radius: 34px;
    padding: 6px 8px 4px 8px;
  }
  .showcase-phone-frame {
    width: 248px;
    border-radius: 38px;
    padding: 7px;
  }
  .showcase-screen {
    border-radius: 30px;
  }
  .showcase-screen img {
    border-radius: 30px;
  }
  .showcase-phone-frame .phone-glass-glare {
    border-radius: 30px;
  }
  .showcase-phone-frame .smartphone-island {
    width: 62px;
    height: 15px;
    top: 11px;
  }
  .pack-spotlight-card, .custom-dog-banner {
    padding: 26px 16px;
    border-radius: var(--radius-lg);
  }
  .phone-pet-stage {
    width: 114px;
    height: 114px;
  }
  .phone-pet-visual {
    width: 86px;
    height: 86px;
  }
  .phone-timer-clock {
    font-size: 1.65rem;
  }
  .phone-btn-play {
    width: 38px;
    height: 38px;
  }
  .phone-btn-action {
    width: 28px;
    height: 28px;
  }
  .phone-btn-timer-step {
    width: 24px;
    height: 24px;
  }
  .activity-pill {
    padding: 3px 2px;
  }
  .pill-name {
    font-size: 0.55rem;
  }
  .tab-icon {
    font-size: 0.76rem;
  }
  .tab-label {
    font-size: 0.48rem;
  }
}

/* ==========================================================================
   BLOCO: SUÍTE ACÚSTICA INTERATIVA (15 SONS CANÔNICOS)
   ========================================================================== */
.acoustic-suite-section {
  padding: 96px 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
}

.acoustic-player-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-gold-border);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  overflow: hidden;
}

.acoustic-player-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.acoustic-player-top {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 24px;
}

.player-nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.player-nav-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-gold-light);
  color: var(--accent-gold-light);
  transform: scale(1.08);
}

.player-nav-btn:active {
  transform: scale(0.95);
}

.acoustic-sound-display {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(19, 19, 19, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: var(--transition-smooth);
}

.acoustic-icon-box {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(22, 22, 28, 0.9) 70%);
  border: 1.5px solid var(--accent-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.25);
  transition: transform 0.35s ease;
}

.acoustic-sound-display:hover .acoustic-icon-box {
  transform: scale(1.06) rotate(2deg);
}

.acoustic-sound-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.acoustic-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acoustic-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.acoustic-type-badge.free {
  background: rgba(16, 185, 129, 0.14);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.acoustic-type-badge.premium {
  background: rgba(245, 158, 11, 0.16);
  color: var(--accent-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.45);
}

.acoustic-index-indicator {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.acoustic-sound-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.acoustic-sound-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.acoustic-player-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 10px;
}

.btn-play-acoustic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0D0E12;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 25px -4px rgba(245, 158, 11, 0.45);
  transition: var(--transition-smooth);
}

.btn-play-acoustic:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.btn-play-acoustic:active {
  transform: translateY(0) scale(0.98);
}

.btn-play-acoustic.is-playing {
  background: #131313;
  color: var(--accent-gold-light);
  border: 1.5px solid var(--accent-gold-light);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

.btn-play-acoustic.is-locked {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--accent-gold-light);
  cursor: not-allowed;
  box-shadow: none;
}
.btn-play-acoustic.is-locked:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.5);
  transform: none;
}

.play-icon-symbol {
  font-size: 1.1rem;
}

.acoustic-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 32px;
  padding: 0 12px;
}

.eq-bar {
  width: 5px;
  height: 6px;
  border-radius: 3px;
  background: var(--accent-gold-light);
  opacity: 0.35;
  transition: height 0.2s ease, opacity 0.2s ease;
}

.acoustic-equalizer.playing .eq-bar {
  opacity: 1;
  animation: eqBounce 1.2s ease-in-out infinite alternate;
}

.acoustic-equalizer.playing .bar-1 { animation-delay: 0.1s; height: 16px; }
.acoustic-equalizer.playing .bar-2 { animation-delay: 0.3s; height: 28px; }
.acoustic-equalizer.playing .bar-3 { animation-delay: 0.15s; height: 22px; }
.acoustic-equalizer.playing .bar-4 { animation-delay: 0.45s; height: 32px; }
.acoustic-equalizer.playing .bar-5 { animation-delay: 0.25s; height: 18px; }
.acoustic-equalizer.playing .bar-6 { animation-delay: 0.38s; height: 26px; }
.acoustic-equalizer.playing .bar-7 { animation-delay: 0.05s; height: 14px; }

@keyframes eqBounce {
  0% { height: 6px; }
  100% { height: 30px; }
}

/* Faixa Horizontal das 15 Pílulas Rápidas */
.acoustic-pills-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.3) transparent;
}

.acoustic-pills-strip::-webkit-scrollbar {
  height: 6px;
}

.acoustic-pills-strip::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 3px;
}

.acoustic-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.acoustic-pill:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  color: #FFFFFF;
}

.acoustic-pill.active {
  background: rgba(245, 158, 11, 0.16);
  border-color: var(--accent-gold-light);
  color: var(--accent-gold-light);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

.acoustic-pill .pill-star {
  color: #FBBF24;
  font-size: 0.75rem;
}

/* ==========================================================================
   POMODOG PREMIUM (DARK COZY LUXURY)
   ========================================================================== */
.premium-dark-section {
  padding: 90px 0;
  position: relative;
  background: radial-gradient(circle at 50% 25%, rgba(245, 158, 11, 0.05) 0%, transparent 65%);
}

.premium-dark-frame {
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  background: radial-gradient(circle at 50% 20%, rgba(245, 158, 11, 0.05) 0%, rgba(18, 18, 24, 0.85) 60%, rgba(10, 10, 14, 0.95) 100%);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px -10px rgba(245, 158, 11, 0.15);
  position: relative;
}

@media (max-width: 768px) {
  .premium-dark-frame {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
  }
}

.premium-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.premium-dark-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-smooth);
}

.premium-dark-card:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.12);
}

.premium-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
}

.premium-card-content {
  flex: 1;
}

.premium-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.premium-card-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.premium-dark-cta-area {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.btn-premium-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  background: linear-gradient(135deg, #FFA000 0%, #F59E0B 100%);
  color: #0D0E12;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 16px 36px -8px rgba(245, 158, 11, 0.45);
  transition: var(--transition-smooth);
}

.btn-premium-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -6px rgba(245, 158, 11, 0.6);
  filter: brightness(1.06);
}

.premium-security-microtext {
  font-size: 0.90rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

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

@media (max-width: 600px) {
  .sticky-header .nav-cta-btn {
    display: none !important;
  }
  .mobile-only-cta {
    display: block;
  }
  .premium-dark-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsividade dos novos blocos */
@media (max-width: 900px) {
  .pack-player-top,
  .colors-player-top,
  .acoustic-player-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .pack-dog-display,
  .color-display-card,
  .acoustic-sound-display {
    width: 100%;
    position: relative;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }

  .player-nav-btn {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 14, 18, 0.90);
    border: 1.5px solid rgba(245, 158, 11, 0.5);
    color: var(--accent-gold-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 0 12px rgba(245, 158, 11, 0.2);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
  }

  .player-nav-btn:hover,
  .player-nav-btn:active {
    background: var(--accent-gold);
    color: #08080A;
    transform: translateY(-50%) scale(1.08);
  }

  #pack-btn-prev, #color-btn-prev, #acoustic-btn-prev {
    left: -10px;
  }

  #pack-btn-next, #color-btn-next, #acoustic-btn-next {
    right: -10px;
  }

  .acoustic-badge-row {
    justify-content: center;
  }
  .acoustic-player-action-row {
    flex-direction: column;
    align-items: center;
  }

  .pack-badge-row,
  .color-badge-row {
    justify-content: center;
  }
  .pack-showcase-player,
  .colors-showcase-player {
    padding: 28px 18px;
  }
  .pack-album-feature-block {
    padding: 36px 20px;
  }
  .album-feature-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 36px;
  }
  .album-feature-info {
    align-items: center;
    text-align: center;
  }
  .album-collector-card-wrapper {
    margin-bottom: 8px;
  }
  .album-mechanics-pillars {
    gap: 14px;
  }
  .album-pillar-item {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  #pack-btn-prev, #color-btn-prev, #acoustic-btn-prev {
    left: -6px;
  }
  #pack-btn-next, #color-btn-next, #acoustic-btn-next {
    right: -6px;
  }
  .album-collector-card {
    width: 100%;
    max-width: 290px;
  }
  .collector-card-artwork {
    height: 290px;
  }
  .color-swatch-large {
    width: 84px;
    height: 84px;
  }
  .pack-dog-image-box {
    width: 120px;
    height: 120px;
  }
  .pack-dog-image-box img {
    width: 95px;
    height: 95px;
  }
}


