/* ==========================================================================
   STILO D' RUA - OUTLET | DESIGN SYSTEM & STYLES (REFINED 3D EDITION)
   Background: Pure Black (#000000)
   Typography: Pure White text & Light Blue (#38bdf8) accents
   Cards & Buttons: Tactile 3D Depth, Layered Shadows & Volumetric Lighting
   Floating Animations & Clean Original Brand Logo
   ========================================================================== */

/* 1. TOKENS & VARIÁVEIS DE DESIGN SYSTEM */
:root {
  /* Paleta Atualizada */
  --color-primary: #38bdf8;          /* Azul Claro vibrante / Light Blue */
  --color-primary-glow: rgba(56, 189, 248, 0.45);
  --color-primary-dark: #0284c7;

  --color-secondary: #38bdf8;        /* Substituição de todos os amarelos por Azul Claro */
  --color-secondary-glow: rgba(56, 189, 248, 0.35);
  --color-accent-blue: #7dd3fc;

  /* WhatsApp Conversion */
  --color-whatsapp: #25d366;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.45);
  --color-whatsapp-dark: #15803d;

  /* Fundo 100% Preto Puro (OLED Black) */
  --color-bg: #000000;
  
  /* Superfícies 3D Refinadas */
  --color-surface-card: linear-gradient(180deg, rgba(26, 28, 36, 0.92) 0%, rgba(12, 13, 18, 0.95) 100%);
  --color-surface-hover: linear-gradient(180deg, rgba(34, 37, 48, 0.95) 0%, rgba(16, 18, 24, 0.98) 100%);
  --color-surface-elevated: #161822;

  /* Bordas com Efeito de Iluminação Superior */
  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-subtle: rgba(255, 255, 255, 0.06);
  --color-border-highlight: rgba(56, 189, 248, 0.5);

  /* Tipografia: 100% Branco e Alto Contraste (Eliminação de fontes cinzas) */
  --color-text-white: #ffffff;
  --color-text-main: #ffffff;
  --color-text-muted: #ffffff;       /* Convertido para branco conforme solicitação */
  --color-text-subtle: rgba(255, 255, 255, 0.88);
  --color-text-cyan: #38bdf8;        /* Azul claro para títulos e destaques */

  /* Font Families */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Sistema 3D de Sombras Profissionais em Camadas (Luz Superior Esquerda) */
  --shadow-3d-card: 
    0 16px 36px -6px rgba(0, 0, 0, 0.95),
    0 4px 12px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.8);

  --shadow-3d-card-hover: 
    0 22px 48px -6px rgba(0, 0, 0, 0.98),
    0 0 24px rgba(56, 189, 248, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.9);

  --shadow-3d-button: 
    0 10px 24px rgba(0, 0, 0, 0.8),
    0 2px 6px rgba(0, 0, 0, 0.5),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.4);

  --shadow-3d-whatsapp: 
    0 12px 28px rgba(37, 211, 102, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.8),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35);

  /* Transições & Timing */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-med: 280ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Safe Area Mobile Defaults */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* 2. RESET & BASE (100% PURE BLACK) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  background-color: #000000 !important;
  color: var(--color-text-white);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: #000000 !important;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: calc(90px + var(--safe-bottom));
}

/* Efeito Volumétrico de Iluminação Superior Sutil */
body::before {
  content: '';
  position: fixed;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 480px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(2, 132, 199, 0.05) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* Background Favela com Textura Urbana Nítida e Filtro Preto */
.favela-bg-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-image: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.78) 40%, rgba(0, 0, 0, 0.92) 80%, #000000 100%),
    url('assets/bg-favela.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* 3. CONTAINER PRINCIPAL (MOBILE FIRST) */
.page-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: calc(14px + var(--safe-top)) 16px 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* 4. HERO SECTION */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 4px 0 2px;
}

/* ==========================================================================
   MOLDURA NEON DINÂMICA DO AVATAR (FEIXE DE LUZ PERCORRENDO O CÍRCULO)
   ========================================================================== */
.avatar-wrapper {
  position: relative;
  width: 132px;
  height: 132px;
  margin-bottom: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
  transition: transform var(--transition-med);
}

.avatar-wrapper:hover {
  transform: scale(1.05) translateY(-2px);
}

/* 1. Trilho Base 3D Sutil (Guia onde o Neon Percorre) */
.avatar-neon-track {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.2);
  box-shadow: 
    0 0 10px rgba(56, 189, 248, 0.15),
    inset 0 0 6px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 1;
}

/* 2. Brilho Neon Ambiente que Acompanha a Rotação */
.avatar-neon-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 160deg,
    rgba(2, 132, 199, 0.15) 200deg,
    rgba(56, 189, 248, 0.45) 260deg,
    rgba(56, 189, 248, 0.9) 330deg,
    #ffffff 360deg
  );
  filter: blur(8px);
  animation: neon-orbit 2.2s linear infinite;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

/* 3. Feixe Neon Concentrado (Laser / Cometa Percorrendo o Perímetro) */
.avatar-neon-beam {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 170deg,
    rgba(56, 189, 248, 0.1) 210deg,
    rgba(56, 189, 248, 0.5) 270deg,
    #38bdf8 335deg,
    #ffffff 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #fff calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3.5px), #fff calc(100% - 3px));
  animation: neon-orbit 2.2s linear infinite;
  filter: drop-shadow(0 0 5px #38bdf8) drop-shadow(0 0 12px rgba(56, 189, 248, 0.9));
  pointer-events: none;
  z-index: 2;
}

/* Animação Contínua de Rotação 360 Graus */
@keyframes neon-orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.avatar-wrapper:hover .avatar-neon-glow {
  opacity: 1;
  filter: blur(10px);
}

.avatar-wrapper:hover .avatar-neon-beam {
  filter: drop-shadow(0 0 8px #38bdf8) drop-shadow(0 0 16px rgba(56, 189, 248, 1));
}

.avatar-img {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: #000000;
  border: 3px solid #000000;
  position: relative;
  z-index: 3;
}

.verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8), 0 0 8px rgba(56, 189, 248, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  z-index: 4;
}

.verified-badge svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.brand-header-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-white);
  line-height: 1.5;
  margin-top: 6px;
  max-width: 94%;
}

/* Selos Rápidos de Confiança 3D */
.trust-badges-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: linear-gradient(180deg, rgba(28, 30, 40, 0.85) 0%, rgba(14, 15, 22, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-text-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.trust-badge-item svg {
  width: 13px;
  height: 13px;
  color: var(--color-text-cyan);
  flex-shrink: 0;
}

.trust-badge-item.highlight-badge {
  border-color: rgba(56, 189, 248, 0.4);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.15) 0%, rgba(14, 22, 32, 0.9) 100%);
  color: #7dd3fc;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* 6. PRIMARY CONVERSION CTA (LEVEL 3 - 3D REFINED) */
.primary-cta-container {
  width: 100%;
  margin-top: 2px;
}

.cta-master-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  background: linear-gradient(180deg, #2ae16b 0%, #16a34a 55%, #12803a 100%);
  color: #ffffff;
  padding: 16px 18px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3d-whatsapp);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.cta-master-btn:hover {
  transform: translateY(-3px) scale(1.008);
  box-shadow: 
    0 18px 40px rgba(37, 211, 102, 0.55),
    0 6px 16px rgba(0, 0, 0, 0.8),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.cta-master-btn:active {
  transform: translateY(2px) scale(0.985);
  box-shadow: 
    0 6px 18px rgba(37, 211, 102, 0.35),
    inset 0 2px 5px rgba(0, 0, 0, 0.4);
}

.cta-master-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shine-sweep 4.5s infinite;
  pointer-events: none;
}

@keyframes shine-sweep {
  0%, 75% { left: -60%; }
  100% { left: 160%; }
}

.cta-master-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 3px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-icon-box svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.cta-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cta-subtext {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin-top: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-action-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-fast);
}

.cta-master-btn:hover .cta-action-arrow {
  transform: translateX(4px) scale(1.08);
}

.cta-action-arrow svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* ==========================================================================
   7. CARROSSEL ANIMADO DE KITS (ASPECTO 3D & SOMBREAMENTO REFINADO)
   ========================================================================== */
.kits-carousel-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  perspective: 1200px; /* Profundidade 3D */
}

.carousel-nav-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(32, 34, 44, 0.9) 0%, rgba(16, 17, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-3d-button);
  transition: all var(--transition-fast);
}

.carousel-nav-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.carousel-nav-btn:hover {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.3) 0%, rgba(2, 132, 199, 0.3) 100%);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.3);
}

.carousel-nav-btn:active {
  transform: translateY(1px) scale(0.95);
}

.kits-carousel-container {
  width: 100%;
  position: relative;
}

.kits-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 14px;
}

.kits-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Card do Kit com Efeito 3D Volumétrico */
.kit-slide-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  background: var(--color-surface-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3d-card);
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
  position: relative;
  display: flex;
  flex-direction: column;
}

.kit-slide-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: var(--shadow-3d-card-hover);
  transform: translateY(-4px);
}

/* Moldura 3D Interna para a Foto do Kit */
.kit-image-wrapper {
  position: relative;
  width: calc(100% - 16px);
  margin: 8px 8px 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.85),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

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

.kit-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.kit-badge-floating {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.95) 0%, rgba(2, 132, 199, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.kit-badge-floating.badge-blue {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
}

.kit-badge-floating.badge-purple {
  background: linear-gradient(180deg, #a855f7 0%, #7e22ce 100%);
}

.kit-badge-floating.badge-gold {
  background: linear-gradient(180deg, #38bdf8 0%, #0369a1 100%);
  color: #ffffff;
}

.kit-details-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kit-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kit-category {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-cyan); /* Azul Claro */
}

.kit-availability {
  font-size: 0.68rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 222, 128, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.kit-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.25;
}

.kit-description {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-text-white); /* 100% Branco */
  line-height: 1.45;
}

/* Botão 3D do Kit com Azul Claro / Ciano */
.kit-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 13px 18px;
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 20px rgba(2, 132, 199, 0.45),
    0 3px 8px rgba(0, 0, 0, 0.8),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.kit-order-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #60a5fa 0%, #0369a1 100%);
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.5), 0 4px 10px rgba(0, 0, 0, 0.9);
}

.kit-order-btn:active {
  transform: translateY(2px) scale(0.985);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.kit-order-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Dots 3D do Carrossel */
.carousel-dots-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot-btn {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5);
  transition: all 0.25s var(--ease-smooth);
}

.dot-btn.active {
  width: 28px;
  background: linear-gradient(90deg, #38bdf8, #0284c7);
  box-shadow: 0 0 12px var(--color-primary-glow), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   8. SEÇÃO DE PROVA SOCIAL VIP (ANIMAÇÃO FLUTUANTE SUAVE & 3D)
   ========================================================================== */
.vip-social-proof-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-cyan); /* Azul Claro */
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.section-sublabel {
  font-size: 0.72rem;
  color: var(--color-text-white);
  font-weight: 600;
}

/* Container do Carrossel de Destaques em Looping Contínuo */
.vip-highlights-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 16px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  cursor: grab;
  user-select: none;
}

.vip-highlights-wrapper:active {
  cursor: grabbing;
}

.vip-highlights-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: vip-marquee-glide 24s linear infinite;
}

.vip-highlights-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

/* Animação Contínua sem Quebra (Loop Infinito Perfeito) */
@keyframes vip-marquee-glide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Pausar rotação ao passar mouse, segurar toque ou focar */
.vip-highlights-wrapper:hover .vip-highlights-track,
.vip-highlights-wrapper.is-paused .vip-highlights-track,
.vip-highlights-track:hover {
  animation-play-state: paused;
}

/* Animação de Flutuar Suave dos Destaques */
@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.vip-card-item {
  flex: 0 0 114px;
  width: 114px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-surface-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px 8px 12px;
  box-shadow: var(--shadow-3d-card);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  animation: float-gentle 4.2s ease-in-out infinite; /* Flutuação Suave */
}

/* Delays para ritmo orgânico e natural */
.vip-card-item:nth-child(1) { animation-delay: 0s; }
.vip-card-item:nth-child(2) { animation-delay: 0.7s; }
.vip-card-item:nth-child(3) { animation-delay: 1.4s; }
.vip-card-item:nth-child(4) { animation-delay: 2.1s; }
.vip-card-item:nth-child(5) { animation-delay: 2.8s; }
.vip-card-item:nth-child(6) { animation-delay: 3.5s; }

.vip-card-item:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.95),
    0 0 20px rgba(56, 189, 248, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vip-card-item:active {
  transform: translateY(-2px) scale(0.97);
}

/* Moldura 3D do Círculo de Destaque */
.vip-thumb-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.8) 0%, rgba(2, 132, 199, 0.4) 100%);
  box-shadow: 
    0 8px 18px rgba(0, 0, 0, 0.8),
    0 0 12px rgba(56, 189, 248, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  position: relative;
  margin-bottom: 8px;
}

.vip-thumb-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  display: block;
  border: 2px solid #000;
}

.vip-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.2;
}

.vip-role {
  font-size: 0.7rem;
  color: var(--color-text-white); /* 100% Branco */
  font-weight: 600;
  margin-top: 3px;
  opacity: 0.95;
}

/* ==========================================================================
   9. CATEGORIAS DE COMPRA & ACESSOS DIRETOS (3D CARDS REFINADOS)
   ========================================================================== */
.categories-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  background: var(--color-surface-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3d-card);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.action-card:hover {
  transform: translateY(-3px) scale(1.008);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: var(--shadow-3d-card-hover);
}

.action-card:active {
  transform: translateY(2px) scale(0.985);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.9), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.action-card.card-featured {
  border-color: rgba(56, 189, 248, 0.4);
  background: linear-gradient(180deg, rgba(20, 32, 48, 0.92) 0%, rgba(10, 14, 22, 0.98) 100%);
  box-shadow: 
    0 16px 36px -6px rgba(0, 0, 0, 0.95),
    0 0 20px rgba(56, 189, 248, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

.card-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(38, 42, 56, 0.8) 0%, rgba(18, 20, 28, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-text-cyan);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.card-featured .card-icon-bubble {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.25) 0%, rgba(2, 132, 199, 0.25) 100%);
  border-color: rgba(56, 189, 248, 0.4);
  color: #38bdf8;
}

.action-card:hover .card-icon-bubble {
  transform: scale(1.08);
}

.card-icon-bubble svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.card-text-wrapper {
  display: flex;
  flex-direction: column;
}

.card-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-main-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.25;
}

.tag-badge {
  font-size: 0.64rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tag-badge.badge-hot {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.3) 0%, rgba(185, 28, 28, 0.4) 100%);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.25);
}

.card-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-white); /* 100% Branco */
  line-height: 1.35;
  margin-top: 3px;
  opacity: 0.92;
}

.card-arrow {
  color: var(--color-text-cyan);
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.action-card:hover .card-arrow {
  transform: translateX(4px);
  color: #ffffff;
}

.card-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   10. CARD DE LOJA FÍSICA & <EMBED> DO MAPA INTERATIVO (TOUCH-ENABLED 3D)
   ========================================================================== */
.store-location-card {
  width: 100%;
  background: var(--color-surface-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-3d-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.store-header-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.store-pin-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.2) 0%, rgba(2, 132, 199, 0.2) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-text-cyan);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.store-pin-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-info-text {
  display: flex;
  flex-direction: column;
}

.store-badge-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-cyan); /* Azul Claro */
}

.store-address {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1.3;
  margin-top: 2px;
}

.store-city {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-white); /* 100% Branco */
  margin-top: 2px;
}

/* Moldura 3D do Embed do Mapa com Toque Livre */
.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  box-shadow: 
    0 14px 32px rgba(0, 0, 0, 0.95),
    0 0 20px rgba(56, 189, 248, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  background: #000000;
}

.map-interactive-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8), 0 0 12px rgba(56, 189, 248, 0.2);
  pointer-events: none;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

.hand-gesture-icon {
  font-size: 0.9rem;
}

.interactive-map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
  touch-action: pan-x pan-y pinch-zoom;
  filter: contrast(1.05) saturate(1.1);
}

.store-action-buttons {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
  width: 100%;
}

.maps-route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 14px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.25) 0%, rgba(2, 132, 199, 0.25) 100%);
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-3d-button);
  transition: all var(--transition-fast);
}

.maps-route-btn:hover {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
}

.maps-route-btn:active {
  transform: translateY(1px) scale(0.98);
}

.maps-route-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.maps-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 14px;
  background: linear-gradient(180deg, rgba(34, 37, 48, 0.8) 0%, rgba(16, 18, 24, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  color: var(--color-text-white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-3d-button);
  transition: all var(--transition-fast);
}

.maps-copy-btn:hover {
  background: linear-gradient(180deg, rgba(46, 50, 64, 0.9) 0%, rgba(24, 27, 36, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.maps-copy-btn:active {
  transform: translateY(1px) scale(0.98);
}

.maps-copy-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* 11. GRID DE GARANTIAS & DIFERENCIAIS 3D */
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.guarantee-box {
  background: var(--color-surface-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-3d-card);
  transition: transform var(--transition-fast);
}

.guarantee-box:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.35);
}

.guarantee-icon {
  color: var(--color-text-cyan);
}

.guarantee-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-text-white);
}

.guarantee-desc {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-text-white); /* 100% Branco */
  line-height: 1.4;
  opacity: 0.92;
}

/* 12. REDES SOCIAIS & RODAPÉ */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(180deg, rgba(28, 30, 40, 0.8) 0%, rgba(14, 15, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text-white);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-3d-button);
  transition: all var(--transition-fast);
}

.social-card:hover {
  background: linear-gradient(180deg, rgba(40, 44, 60, 0.9) 0%, rgba(20, 22, 30, 0.95) 100%);
  color: #fff;
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(56, 189, 248, 0.2);
}

.social-card svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-white);
  line-height: 1.5;
  opacity: 0.85;
}

/* 13. BOTTOM FIXED CTA BAR 3D (MOBILE SAFE-AREA) */
.bottom-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px calc(10px + var(--safe-bottom));
  display: flex;
  justify-content: center;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.95);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.bottom-fixed-bar-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bottom-info-pill {
  display: flex;
  flex-direction: column;
}

.bottom-info-label {
  font-size: 0.68rem;
  color: var(--color-text-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.bottom-info-status {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--color-whatsapp);
  display: flex;
  align-items: center;
  gap: 5px;
}

.bottom-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(180deg, #2ae16b 0%, #16a34a 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 20px rgba(37, 211, 102, 0.45),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.bottom-cta-button:active {
  transform: translateY(2px) scale(0.96);
}

.bottom-cta-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* 14. TOAST DE FEEDBACK DE CÓPIA OU AÇÃO */
.toast-notice {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: #12141c;
  color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 15px rgba(56, 189, 248, 0.3);
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* 15. RESPONSIVIDADE & AJUSTES DE VIEWPORT */
@media (max-width: 374px) {
  .page-wrapper {
    padding-left: 12px;
    padding-right: 12px;
    gap: 18px;
  }
  .brand-header-title {
    font-size: 1.5rem;
  }
  .cta-headline {
    font-size: 0.98rem;
  }
  .cta-subtext {
    font-size: 0.74rem;
  }
  .vip-card-item {
    flex: 0 0 104px;
  }
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
  .store-action-buttons {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 40px;
  }
  .page-wrapper {
    max-width: 520px;
    padding-top: 40px;
  }
  .bottom-fixed-bar {
    display: none;
  }
}

/* 16. ACESSIBILIDADE & REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .vip-card-item {
    animation: none !important;
  }
}
