/* ==========================================================================
   ALETICIAWEB - DESIGN SYSTEM & ESTILOS DA PÁGINA DE CAPTURA
   Diagnóstico de Marca e Estrutura Digital
   Aesthetic: Dark Luxury & Cyber-Editorial (Plus Jakarta Sans + Inter)
   ========================================================================== */

/* --- VARIÁVEIS DO SISTEMA DE DESIGN --- */
:root {
  /* Cores de Fundo (Obsidian / Slate Layers) */
  --bg-black: #0A0810;
  --bg-deep: #0b0c10;
  --bg-surface: #111218;
  --bg-surface-elevated: #161722;
  --bg-card: rgba(18, 19, 27, 0.72);
  --bg-card-hover: rgba(26, 27, 39, 0.88);
  --bg-glass: rgba(18, 19, 28, 0.65);
  --bg-glass-card: rgba(22, 23, 34, 0.55);

  /* Identidade Visual Aleticiaweb (Amethyst / Royal Purple) */
  --brand-purple: #8C1AF0;
  --brand-purple-hover: #9E38FF;
  --brand-deep-purple: #6A0DAD;
  --brand-light-purple: #B265F5;
  --brand-lavender: #ECE8FC;
  --brand-glow: rgba(140, 26, 240, 0.32);
  --brand-glow-subtle: rgba(140, 26, 240, 0.12);

  /* Acento e Suporte */
  --accent-emerald: #10B981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);

  /* Textos de Alto Contraste */
  --text-primary: #FFFFFF;
  --text-secondary: #C4C4D4;
  --text-muted: #9E9EB6;
  --text-dim: #7E7E94;

  /* Bordas Refinadas */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-brand: rgba(140, 26, 240, 0.42);
  --border-brand-glow: rgba(178, 101, 245, 0.6);

  /* Gradientes de Assinatura */
  --grad-brand-btn: linear-gradient(135deg, #7A0ECF 0%, #8C1AF0 50%, #A842F7 100%);
  --grad-brand-hover: linear-gradient(135deg, #8C1AF0 0%, #9E38FF 50%, #B95DF8 100%);
  --grad-hero-text: linear-gradient(180deg, #FFFFFF 20%, #DEDAF5 100%);
  --grad-highlight: linear-gradient(135deg, #D4B6FF 0%, #A855F7 60%, #8C1AF0 100%);
  --grad-card-overlay: linear-gradient(135deg, rgba(140, 26, 240, 0.08) 0%, transparent 60%);

  /* Tipografia */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Raios de Curvatura (Consistência de Formas) */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Sombras e Elevações */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 12px 36px -8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-btn-glow: 0 0 28px rgba(140, 26, 240, 0.42), 0 4px 14px rgba(0, 0, 0, 0.5);
  --shadow-inner-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.12);

  /* Layout */
  --max-w-content: 1180px;
  --max-w-hero: 980px;
  --max-w-narrow: 760px;

  /* Transição e Spring Timing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-spring);
  --transition-normal: 0.3s var(--ease-spring);
  --transition-slow: 0.6s var(--ease-spring);
}

/* --- RESET & DEFAULTS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-purple) var(--bg-black);
  overflow-x: hidden;
}

/* --- SCROLLBAR PERSONALIZADA (DARK LUXURY) --- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand-purple) 0%, var(--brand-deep-purple) 100%);
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-black);
  transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--brand-purple-hover) 0%, var(--brand-purple) 100%);
  box-shadow: 0 0 12px var(--brand-glow);
}

body {
  background-color: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  min-height: 100dvh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p, li, span, blockquote {
  text-wrap: pretty;
}

strong, b {
  color: #FFFFFF;
  font-weight: 700;
}

.btn-primary strong,
.btn-primary b,
.announcement-bar strong,
.announcement-bar b {
  color: inherit;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--brand-purple);
  color: #FFFFFF;
}

/* --- AMBIENT BACKGROUND & GRID --- */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow-top {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(140, 26, 240, 0.22) 0%, rgba(106, 13, 173, 0.08) 50%, transparent 75%);
  filter: blur(100px);
}

.ambient-glow-right {
  position: absolute;
  top: 45%;
  right: -200px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(140, 26, 240, 0.12) 0%, transparent 65%);
  filter: blur(120px);
}

.ambient-glow-left {
  position: absolute;
  bottom: 10%;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(114, 26, 240, 0.1) 0%, transparent 65%);
  filter: blur(120px);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* --- CONTAINER & SECTIONS --- */
.container {
  width: 100%;
  max-width: var(--max-w-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 68px 0;
  position: relative;
}

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

@media (max-width: 480px) {
  .section {
    padding: 34px 0;
  }
}

/* --- BARRA DE DESTAQUE SUPERIOR (ROXO VIBRANTE DE ALTO IMPACTO) --- */
.announcement-bar {
  background: linear-gradient(90deg, #4c007a 0%, #7100b2 28%, #8c1af0 55%, #a842f7 78%, #5b0091 100%);
  background-size: 200% auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 28px rgba(140, 26, 240, 0.45);
  padding: 12px 0;
  position: relative;
  z-index: 35;
  text-align: center;
  animation: shineGradient 6s ease infinite;
}

@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.announcement-beacon {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 10px #FFFFFF, 0 0 18px rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  animation: beaconPulse 1.8s infinite ease-in-out;
}

@keyframes beaconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.announcement-text {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.25vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
  .announcement-bar {
    padding: 10px 0;
  }
  .announcement-text {
    font-size: 0.74rem;
    letter-spacing: 0.03em;
  }
}

/* --- BOTOES DE CTA (WCAG AA & TACTILE) --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--grad-brand-btn);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-brand-glow);
  box-shadow: var(--shadow-btn-glow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--grad-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(140, 26, 240, 0.6), 0 6px 20px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

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

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .btn-primary {
    width: 100%;
    padding: 15px 24px;
    font-size: 0.88rem;
    white-space: normal;
    text-align: center;
  }
}

/* --- HERO SECTION (LEFT-ALIGNED COM ESPAÇO RESERVADO PARA IMAGEM) --- */
.hero-section {
  padding-top: 56px;
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
  background-color: #0A0810;
  background-image: url('assets/bg-hero-desktop.avif');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-section {
    background-color: #0A0810;
    background-image: url('assets/bg-hero-mobile.webp');
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: clamp(152px, 41vw, 185px);
    padding-bottom: 48px;
  }
  .hero-brand-logo {
    display: none !important;
  }
}

.hero-container {
  max-width: var(--max-w-content);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 640px;
}

.hero-brand-logo {
  margin-bottom: 24px;
}

.hero-brand-logo img {
  height: 32px;
  width: auto;
}

.hero-title {
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: left;
  max-width: 640px;
}

.highlight-text {
  background: var(--grad-highlight);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.word-rotator-wrapper {
  display: inline-block;
  vertical-align: -0.14em;
  position: relative;
  overflow: hidden;
  padding: 0 2px;
}

.rotating-word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-subtext {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 32px;
  text-align: left;
}

.hero-action-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 42px;
  width: 100%;
}

.hero-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: left;
}

.hero-guarantee-note svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* Social Proof Stack no Hero */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  align-self: flex-start;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface);
  margin-left: -10px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.social-proof-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: left;
}

.social-proof-copy strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-content {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title {
    text-align: center;
    font-size: clamp(1.58rem, 5.6vw, 2.05rem);
    line-height: 1.16;
  }
  .hero-subtext {
    text-align: center;
  }
  .hero-action-area {
    align-items: center;
    text-align: center;
  }
  .hero-guarantee-note {
    justify-content: center;
    text-align: center;
  }
  .hero-social-proof {
    align-self: center;
    justify-content: center;
    text-align: center;
  }
  .social-proof-copy {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-bottom: 64px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-social-proof {
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    width: 100%;
  }
}

/* --- HERO BIO BADGE FLUTUANTE (NO OMBRO - REFERÊNCIA DE DESIGN) --- */
.hero-bio-badge {
  position: absolute;
  top: 358px;
  right: 295px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 4px 6px;
  border-radius: var(--radius-pill);
  background: rgba(14, 15, 24, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.5),
    0 0 14px rgba(140, 26, 240, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: auto;
  user-select: none;
  animation: heroBioFloat 3.6s ease-in-out infinite alternate;
  will-change: transform;
}

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

.hero-bio-img {
  display: block;
  height: 22px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .hero-bio-badge {
    top: 325px;
    right: 190px;
    padding: 4px 9px 4px 5px;
  }
  .hero-bio-img {
    height: 20px;
  }
}

@media (max-width: 768px) {
  .hero-bio-badge {
    display: none !important;
  }
}

/* --- DIVISOR SUAVE ENTRE HERO E SEÇÃO 2 --- */
.hero-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 15%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.02) 85%, transparent 100%);
  position: relative;
  z-index: 5;
}

/* --- SECTION HEADERS (SHARED) --- */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 640px) {
  .section-header {
    margin-bottom: 24px;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light-purple);
  padding: 6px 14px;
  background: rgba(140, 26, 240, 0.08);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.65rem, 3.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-wrap: balance;
}

@media (max-width: 640px) {
  .section-title {
    font-size: clamp(1.52rem, 5.8vw, 1.82rem);
    line-height: 1.25;
    margin-bottom: 12px;
  }
}

/* --- GRADIENTE ROXO DA HERO NOS TÍTULOS DE SEÇÃO --- */
.text-gradient-soft {
  background: var(--grad-highlight);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

span.text-gradient-soft {
  display: inline;
}

h1.text-gradient-soft,
h2.text-gradient-soft,
h3.text-gradient-soft {
  display: block;
}

.section-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}

/* --- 2. SEÇÃO PERSONAS (GRID MODERNO) --- */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.persona-card {
  grid-column: span 2;
  background: linear-gradient(
    140deg,
    rgba(140, 26, 240, 0.08) 0%,
    rgba(22, 23, 34, 0.72) 42%,
    rgba(13, 14, 21, 0.82) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

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

@media (max-width: 900px) {
  .personas-grid {
    grid-template-columns: 1fr;
  }
  .persona-card,
  .persona-card:nth-child(4),
  .persona-card:nth-child(5) {
    grid-column: auto;
  }
}

.persona-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(140, 26, 240, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.persona-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-brand);
  box-shadow: var(--shadow-card), 0 0 24px rgba(140, 26, 240, 0.15);
}

.persona-card:hover::before {
  opacity: 1;
}

.persona-icon-container {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(140, 26, 240, 0.12);
  border: 1px solid rgba(140, 26, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light-purple);
  margin-bottom: 20px;
}

.persona-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.persona-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.section-footer-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: rgba(18, 19, 27, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 820px;
  margin: 0 auto;
}

.footer-cta-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

@media (max-width: 640px) {
  .personas-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 22px;
  }
  .section-footer-cta {
    padding: 20px 16px;
    gap: 14px;
  }
}

/* --- 3. SEÇÃO ENTREGAS (BENTO GRID) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .bento-grid {
    margin-bottom: 22px;
    gap: 16px;
  }
}

.bento-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  backdrop-filter: blur(12px);
}

.bento-tile:hover {
  transform: translateY(-3px);
  border-color: var(--border-brand);
  box-shadow: var(--shadow-card), 0 0 26px rgba(140, 26, 240, 0.12);
}

.bento-tile-wide {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(22, 23, 34, 0.8) 0%, rgba(14, 15, 22, 0.9) 100%);
}

.bento-tile-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(140, 26, 240, 0.14) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* Layout amplo com texto à esquerda e pasta interativa à direita */
.bento-wide-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.bento-wide-layout .bento-tile-content {
  flex: 1;
  min-width: 0;
}

.bento-folder-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 35px 25px 15px;
}

@media (max-width: 860px) {
  .bento-wide-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .bento-folder-col {
    align-self: center;
    padding: 50px 20px 20px;
  }
}

/* --- WIDGET PASTA INTERATIVA 360° (PILAR 01) --- */
.folder-card {
  width: 180px;
  height: 138px;
  perspective: 1200px;
  -webkit-perspective: 1200px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.folder-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hint Text & Arrow */
.hint-wrapper {
  position: absolute;
  top: -34px;
  right: -32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 100;
  animation: floatHint 2.5s ease-in-out infinite;
}

.hint-text {
  font-family: var(--font-body);
  color: var(--brand-light-purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  position: relative;
  right: -18px;
  top: 8px;
  transform: rotate(35deg);
  text-shadow: 0 0 10px rgba(178, 101, 245, 0.5);
}

.hint-arrow {
  height: 32px;
  width: 32px;
}

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

.folder-toggle:checked ~ .hint-wrapper {
  opacity: 0;
  transform: translateY(-10px);
}

/* Folder Container */
.folder-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backface-visibility: hidden;
  will-change: transform;
}

.folder-toggle:checked ~ .folder-container {
  transform: rotateX(10deg) rotateY(-5deg);
}

.folder-back {
  position: absolute;
  bottom: 0;
  width: 100%;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
}

.folder-front-wrapper {
  position: absolute;
  bottom: -7px;
  width: 100%;
  z-index: 90;
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
}

.folder-front {
  display: block;
  width: 100%;
  filter: drop-shadow(0 4px 14px rgba(140, 26, 240, 0.35));
}

.folder-label {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 10px;
}

/* Arquivos dentro da pasta */
.file {
  position: absolute;
  bottom: 5px;
  left: 10%;
  width: 80%;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 6px 16px rgba(0, 0, 0, 0.45);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 0;
}

.file-1 {
  background: linear-gradient(135deg, #7A0ECF 0%, #8C1AF0 100%);
  z-index: 25;
  transition-delay: 0.15s;
}

.file-2 {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  z-index: 24;
  transition-delay: 0.1s;
}

.file-3 {
  background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
  z-index: 23;
  transition-delay: 0.05s;
}

.file-4 {
  background: linear-gradient(135deg, #9333EA 0%, #C084FC 100%);
  z-index: 22;
  transition-delay: 0.02s;
}

.file-5 {
  background: linear-gradient(135deg, #2563EB 0%, #38BDF8 100%);
  z-index: 21;
  transition-delay: 0s;
}

.shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.folder-toggle:checked ~ .folder-container .shine {
  left: 150%;
  transition: left 0.8s ease-in-out;
  transition-delay: 0.3s;
}

.file-text {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: #FFFFFF;
  padding: 10px 8px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease 0.4s;
  letter-spacing: 0.01em;
}

.folder-toggle:checked ~ .folder-container .file-text {
  opacity: 1;
  transform: translateY(0);
}

.file-icon {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.file-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 6.5px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.folder-toggle:checked ~ .folder-container .file:hover .file-icon {
  color: #FFFFFF;
}

.folder-toggle:checked ~ .folder-container .file:hover .file-tag {
  opacity: 1;
}

/* Transições ao abrir a pasta */
.folder-toggle:checked ~ .folder-container .folder-front-wrapper {
  transform: rotateX(-50deg);
}

.folder-toggle:checked ~ .folder-container .file-1 {
  transform: translateY(-68px) rotate(-10deg) translateX(-14px) translateZ(20px);
}
.folder-toggle:checked ~ .folder-container .file-2 {
  transform: translateY(-54px) rotate(8deg) translateX(16px) translateZ(10px);
}
.folder-toggle:checked ~ .folder-container .file-3 {
  transform: translateY(-40px) rotate(-14deg) translateX(-8px);
}
.folder-toggle:checked ~ .folder-container .file-4 {
  transform: translateY(-26px) rotate(10deg) translateX(10px);
}
.folder-toggle:checked ~ .folder-container .file-5 {
  transform: translateY(-12px) rotate(-5deg);
}

/* Hover nos arquivos abertos */
.folder-toggle:checked ~ .folder-container .file:hover {
  cursor: pointer;
  filter: brightness(1.15);
}

.folder-toggle:checked ~ .folder-container .file-1:hover {
  transform: translateY(-78px) rotate(-10deg) translateX(-14px) translateZ(20px);
}
.folder-toggle:checked ~ .folder-container .file-2:hover {
  transform: translateY(-64px) rotate(8deg) translateX(16px) translateZ(10px);
}
.folder-toggle:checked ~ .folder-container .file-3:hover {
  transform: translateY(-48px) rotate(-14deg) translateX(-8px);
}
.folder-toggle:checked ~ .folder-container .file-4:hover {
  transform: translateY(-34px) rotate(10deg) translateX(10px);
}
.folder-toggle:checked ~ .folder-container .file-5:hover {
  transform: translateY(-20px) rotate(-5deg);
}

/* Barra de busca simulada dentro da pasta */
.folder-search {
  position: absolute;
  top: -30px;
  left: 10%;
  width: 28px;
  height: 24px;
  background: rgba(140, 26, 240, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  padding: 0 8px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: #FFFFFF;
}

.search-input {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 9px;
  margin-left: 6px;
  outline: none;
  width: 0;
  transition: width 0.4s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.folder-toggle:checked ~ .folder-container .folder-search {
  opacity: 1;
  top: -55px;
  width: 80%;
}

.folder-toggle:checked ~ .folder-container .folder-search .search-input {
  width: 100%;
}

.bento-tile-content {
  position: relative;
  z-index: 2;
}

.bento-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-light-purple);
  padding: 4px 10px;
  background: rgba(140, 26, 240, 0.14);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.bento-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.bento-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.bento-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.bento-check-list li svg {
  color: var(--brand-light-purple);
  flex-shrink: 0;
}

.bento-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bento-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(140, 26, 240, 0.12);
  border: 1px solid rgba(140, 26, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-light-purple);
}

.bento-mini-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.bento-title-sm {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.bento-desc-sm {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- PILAR 02 - ATRITO NO CHECKOUT / CARTÃO RECUSADO (UIVERSE ADAPTADO) --- */
.bento-tile-friction {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dc-widget-wrap {
  margin-top: auto;
  padding-top: 20px;
  width: 100%;
}

.dc-container {
  background: rgba(11, 12, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px;
  position: relative;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  cursor: default;
}

.dc-container:hover,
.bento-tile-friction:hover .dc-container {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(239, 68, 68, 0.1);
}

.dc-left-side {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.14) 0%, rgba(153, 27, 27, 0.22) 100%);
  width: 86px;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  overflow: hidden;
  cursor: default;
}

.dc-right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 14px;
  gap: 3px;
  overflow: hidden;
  min-width: 0;
  cursor: default;
}

.dc-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F87171;
  font-family: var(--font-body);
  line-height: 1;
}

.dc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #EF4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.85);
  animation: dc-dot-pulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes dc-dot-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}

.dc-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dc-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-family: var(--font-body);
}

.dc-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.dc-card {
  width: 48px;
  height: 30px;
  background: linear-gradient(135deg, #1E202E 0%, #0F1017 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  position: absolute;
  display: flex;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease;
}

.dc-card-line {
  width: 42px;
  height: 7px;
  background: linear-gradient(90deg, #F59E0B, #EF4444);
  border-radius: 1px;
  margin-top: 4px;
}

.dc-buttons {
  width: 5px;
  height: 5px;
  background-color: #F59E0B;
  box-shadow:
    0 -6px 0 0 #D97706,
    0 6px 0 0 #EF4444;
  border-radius: 50%;
  transform: rotate(90deg);
  margin: 6px 0 0 -18px;
}

.dc-post {
  width: 42px;
  height: 52px;
  background: linear-gradient(180deg, #2A2D3D 0%, #171822 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  z-index: 11;
  bottom: 4px;
  top: 84px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.dc-post-line {
  width: 32px;
  height: 5px;
  background-color: #0F1017;
  position: absolute;
  border-radius: 0 0 2px 2px;
  right: 5px;
  top: 5px;
}

.dc-post-line:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 5px;
  background-color: #374151;
  top: -5px;
}

.dc-screen {
  width: 32px;
  height: 15px;
  background-color: #0A0A0F;
  border: 1px solid rgba(239, 68, 68, 0.4);
  position: absolute;
  top: 13px;
  right: 5px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dc-numbers {
  width: 7px;
  height: 7px;
  background-color: #6B7280;
  box-shadow:
    0 -11px 0 0 #6B7280,
    0 11px 0 0 #6B7280;
  border-radius: 1px;
  position: absolute;
  transform: rotate(90deg);
  left: 17px;
  top: 34px;
}

.dc-numbers-line2 {
  width: 7px;
  height: 7px;
  background-color: #4B5563;
  box-shadow:
    0 -11px 0 0 #4B5563,
    0 11px 0 0 #4B5563;
  border-radius: 1px;
  position: absolute;
  transform: rotate(90deg);
  left: 17px;
  top: 45px;
}

.dc-icon {
  position: absolute;
  font-size: 11px;
  font-weight: 900;
  font-family: var(--font-display);
  width: 100%;
  left: 0;
  top: 0;
  line-height: 15px;
  color: #EF4444;
  text-align: center;
  text-shadow: 0 0 6px rgba(239, 68, 68, 0.85);
  opacity: 0;
}

.dc-container:hover .dc-card,
.bento-tile-friction:hover .dc-card {
  animation: dc-slide-top 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.dc-container:hover .dc-post,
.bento-tile-friction:hover .dc-post {
  animation: dc-slide-post 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.dc-container:hover .dc-icon,
.bento-tile-friction:hover .dc-icon {
  animation: dc-fade-in-fwd 0.3s 0.68s forwards;
}

@keyframes dc-slide-top {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-45px) rotate(90deg);
  }
  60% {
    transform: translateY(-45px) rotate(90deg);
  }
  100% {
    transform: translateY(-5px) rotate(90deg);
  }
}

@keyframes dc-slide-post {
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-45px);
  }
}

@keyframes dc-fade-in-fwd {
  0% {
    opacity: 0;
    transform: translateY(-3px) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 480px) {
  .dc-container {
    height: 76px;
  }
  .dc-left-side {
    width: 78px;
  }
  .dc-title {
    font-size: 0.86rem;
  }
  .dc-sub {
    font-size: 0.66rem;
  }
}

/* --- CARD MÉTRICO COM TICKET VIP (100% APLICÁVEL) --- */
.bento-tile-stat {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(22, 23, 34, 0.92) 0%, rgba(14, 15, 22, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 38px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal);
}

.bento-tile-stat:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-sm);
}

.bento-stat-left {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.bento-stat-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bento-stat-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 460px;
}

.bento-stat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bento-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brand-light-purple);
  background: rgba(140, 26, 240, 0.12);
  border: 1px solid rgba(140, 26, 240, 0.28);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.bento-stat-pill svg {
  color: var(--brand-light-purple);
}

.bento-stat-ticket-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- TICKET VIP PASS (UIVERSE ADAPTADO PARA ALETICIAWEB) --- */
.ticket-wrapper {
  --t-bg: #11121c;
  --t-bg-light: #161726;
  --t-accent: #8C1AF0;
  --t-accent-light: #B265F5;
  --t-text-main: #FFFFFF;
  --t-text-muted: #9E9EB2;
  font-size: 10.5px;
  perspective: 1000px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ticket {
  position: relative;
  width: 22em;
  color: var(--t-text-main);
  font-family: var(--font-body);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
  background: transparent;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.5));
  border: none;
}

.ticket-wrapper:hover .ticket {
  transform: rotateX(5deg) rotateY(-8deg) scale(1.02);
  box-shadow: 16px 16px 36px rgba(0, 0, 0, 0.6);
}

.ticket::after {
  display: none;
}

.t-main {
  padding: 1.8em;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at bottom left,
      transparent 1em,
      var(--t-bg) 1.05em
    ),
    radial-gradient(circle at bottom right, transparent 1em, var(--t-bg) 1.05em);
  background-size: 51% 100%;
  background-position: bottom left, bottom right;
  background-repeat: no-repeat;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  border: none;
}

.t-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(140, 26, 240, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 26, 240, 0.16) 1px, transparent 1px);
  background-size: 2em 2em;
  opacity: 0.65;
  z-index: 0;
  pointer-events: none;
  transform: perspective(500px) rotateX(20deg) scale(1.5);
  animation: grid-scroll 20s linear infinite;
}

@keyframes grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 4em;
  }
}

.t-content {
  position: relative;
  z-index: 1;
}

.t-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4em;
}

.t-logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05em;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.t-type {
  font-size: 0.65em;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--t-accent-light);
  border: 1px solid var(--t-accent);
  background: rgba(140, 26, 240, 0.12);
  padding: 0.35em 0.75em;
  border-radius: 99em;
  font-weight: 700;
  white-space: nowrap;
}

.t-title {
  font-family: var(--font-display);
  font-size: 1.85em;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4B6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.t-subtitle {
  color: var(--t-text-muted);
  font-size: 0.85em;
  margin-bottom: 1.6em;
  font-weight: 500;
}

.t-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1em;
  margin-bottom: 0.4em;
}

.t-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.t-label {
  font-size: 0.62em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.t-value {
  font-size: 1.02em;
  font-weight: 700;
  color: var(--t-text-main);
}

.t-perforation {
  display: flex;
  justify-content: space-between;
  height: 1em;
  align-items: center;
  position: relative;
  z-index: 2;
}

.t-perf-line {
  flex-grow: 1;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.22);
  margin: 0 1.2em;
}

.t-stub {
  padding: 1.5em 1.8em;
  background: radial-gradient(
      circle at top left,
      transparent 1em,
      var(--t-bg-light) 1.05em
    ),
    radial-gradient(
      circle at top right,
      transparent 1em,
      var(--t-bg-light) 1.05em
    );
  background-size: 51% 100%;
  background-position: top left, top right;
  background-repeat: no-repeat;
  border-bottom-left-radius: 1em;
  border-bottom-right-radius: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border: none;
}

.t-barcode-container {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.t-barcode {
  width: 9.5em;
  height: 2.6em;
  background: repeating-linear-gradient(
    90deg,
    #fff 0,
    #fff 2px,
    transparent 2px,
    transparent 4px,
    #fff 4px,
    #fff 5px,
    transparent 5px,
    transparent 8px,
    #fff 8px,
    #fff 11px,
    transparent 11px,
    transparent 13px,
    #fff 13px,
    #fff 15px,
    transparent 15px,
    transparent 17px
  );
  opacity: 0.85;
}

.t-barcode-id {
  font-family: monospace;
  font-size: 0.68em;
  color: var(--t-text-muted);
  letter-spacing: 0.15em;
}

.t-admit {
  text-align: right;
}

.t-admit-text {
  font-size: 0.65em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--t-text-muted);
  font-weight: 600;
}

.t-admit-num {
  font-family: var(--font-display);
  font-size: 2.4em;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  background: linear-gradient(180deg, #FFFFFF 30%, #D4B6FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(178, 101, 245, 0.6));
}

.ticket-wrapper:active .ticket {
  transform: rotateX(12deg) rotateY(-4deg) scale(0.98);
}

.ticket-wrapper:active .t-stub {
  transform: translateY(4px) rotateZ(1.5deg);
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .bento-tile-stat {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 30px 22px !important;
    gap: 28px !important;
  }
  .bento-stat-left {
    width: 100%;
    min-width: 0;
  }
  .bento-stat-desc {
    max-width: 100%;
  }
  .bento-stat-ticket-col {
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
  }
  .ticket-wrapper {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bento-tile-stat {
    padding: 24px 16px !important;
    gap: 22px !important;
  }
  .bento-stat-title {
    font-size: 1.28rem;
  }
  .bento-stat-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .ticket-wrapper {
    font-size: clamp(8px, 2.5vw, 9.6px);
  }
}

/* --- PILAR 03 - PLANO DE AÇÃO PERSONALIZADO (INTEGRADO DIRETO NO CARD) --- */
.bento-tile-plan {
  display: flex;
  flex-direction: column;
}

/* Cards de Métricas da Copy Integrados Direto no Card */
.plan-direct-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 14px;
}

.plan-direct-stat {
  background: rgba(22, 23, 34, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.plan-direct-stat:hover {
  background: rgba(26, 27, 39, 0.9);
  border-color: rgba(140, 26, 240, 0.35);
  transform: translateY(-2px);
}

.plan-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.plan-stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--brand-light-purple);
}

/* Gráfico de Barras Crescente Integrado Direto no Card */
.plan-direct-chart {
  height: 84px;
  width: 100%;
  background: rgba(11, 12, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 14px 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.plan-direct-bars {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.plan-bar-col {
  height: 100%;
  flex: 1;
  max-width: 26px;
  border-radius: var(--radius-xs);
  background: rgba(140, 26, 240, 0.16);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.plan-bar-col:hover {
  background: rgba(140, 26, 240, 0.28);
  transform: scaleY(1.04);
}

.plan-bar-fill {
  width: 100%;
  border-radius: var(--radius-xs);
  background: linear-gradient(180deg, var(--brand-light-purple) 0%, var(--brand-purple) 100%);
  transition: height 0.4s var(--ease-spring), filter var(--transition-fast);
}

.plan-bar-col:hover .plan-bar-fill {
  filter: brightness(1.25);
}

.plan-bar-col.plan-bar-highlight {
  background: rgba(178, 101, 245, 0.25);
}

.plan-bar-col.plan-bar-highlight .plan-bar-fill {
  background: linear-gradient(180deg, #D4B6FF 0%, var(--brand-purple) 100%);
  box-shadow: 0 0 12px rgba(178, 101, 245, 0.6);
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-tile-wide,
  .bento-tile-stat {
    grid-column: span 1;
  }
}

/* --- 4. DEPOIMENTOS EM VÍDEO (VERTICAL REELS/CARDS) --- */
.testimonials-section .section-subtitle {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 85%;
  max-width: 1080px;
  margin: 0 auto;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-brand);
  box-shadow: var(--shadow-card);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  background: #000000;
  overflow: hidden;
}

.video-cover {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.video-cover:hover img {
  transform: scale(1.04);
}

.video-play-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--transition-fast);
}

.video-cover:hover .video-play-indicator {
  background: rgba(0, 0, 0, 0.18);
}

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 0 24px rgba(140, 26, 240, 0.6);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.video-cover:hover .play-circle {
  transform: scale(1.1);
  background: var(--brand-purple-hover);
}

.video-play-indicator span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-meta {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.video-client-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.video-client-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
}

@media (max-width: 1024px) {
  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 85%;
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
    width: 85%;
    max-width: 330px;
    margin: 0 auto;
    gap: 26px;
  }
}

/* --- 5. CASOS DE ESTUDO & TRANSFORMAÇÕES --- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-brand);
  box-shadow: var(--shadow-card), 0 0 28px rgba(140, 26, 240, 0.15);
}

.case-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-card:hover .case-media img {
  transform: scale(1.03);
}

.case-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(14, 15, 22, 0.88);
  border: 1px solid var(--border-brand);
  color: var(--brand-lavender);
  backdrop-filter: blur(8px);
}

.case-content {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.case-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light-purple);
}

.case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.case-description {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

/* --- 6. QUEM SOU EU & AUTORIDADE --- */
.about-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 56px;
  align-items: center;
}

.about-card-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.about-card-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.about-portrait-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(14, 15, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.tag-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FFFFFF;
}

.tag-role {
  font-size: 0.78rem;
  color: var(--brand-light-purple);
}

.clients-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.client-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
  min-width: 0;
  overflow: hidden;
}

.client-mini-card:hover {
  border-color: var(--border-brand);
}

.client-mini-card img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.client-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.client-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-followers {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.about-heading {
  font-size: clamp(1.65rem, 3.8vw, 2.7rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 22px;
}

@media (max-width: 640px) {
  .about-heading {
    font-size: clamp(1.52rem, 5.8vw, 1.82rem);
    line-height: 1.25;
    margin-bottom: 16px;
    text-align: center;
  }
}

.about-paragraph {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.about-paragraph strong {
  color: #FFFFFF;
  font-weight: 600;
}

.about-quote-box {
  padding: 22px 24px;
  background: rgba(140, 26, 240, 0.08);
  border-left: 3px solid var(--brand-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0 34px;
}

.quote-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-lavender);
  font-style: italic;
}

.about-cta-wrapper {
  margin-top: 24px;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-card-portrait {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .clients-badge-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .client-mini-card {
    padding: 10px 14px;
    width: 100%;
  }
  /* Exibe somente os 3 clientes com mais seguidores no mobile */
  .clients-badge-grid .client-mini-card:nth-child(n+4) {
    display: none !important;
  }
}

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(7, 7, 9, 0.95);
  padding: 56px 0 36px;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
  width: 100%;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
}

.footer-branding img {
  display: block;
  margin: 0;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: left;
  white-space: nowrap;
  margin: 0;
}

.btn-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-back-to-top:hover {
  color: var(--text-primary);
  border-color: var(--border-brand);
  background: rgba(140, 26, 240, 0.1);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  width: 100%;
}

.footer-copy {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 96px;
    text-align: center;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 20px;
  }
  .footer-branding {
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-branding img {
    margin: 0 auto;
  }
  .footer-tagline {
    text-align: center;
    white-space: normal;
    max-width: 380px;
    margin: 0 auto;
  }
  .btn-back-to-top {
    margin: 0 auto;
  }
  .footer-bottom-row {
    justify-content: center;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
}

/* --- MOBILE STICKY CTA --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(7, 7, 9, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  z-index: 99;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
}

.btn-mobile-cta {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.86rem;
}

@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* --- ANIMAÇÕES REVEAL ON SCROLL & GSAP --- */
.reveal-on-scroll {
  will-change: transform, opacity;
}

/* Fallback se GSAP não estiver disponível */
body.no-gsap .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}

body.no-gsap .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- CARD SPOTLIGHT INTERACTION (GSAP / CSS VARIABLES) --- */
.persona-card, .bento-tile, .case-card, .video-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-opacity: 0;
  position: relative;
}

.persona-card::after, .bento-tile::after, .case-card::after, .video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mouse-x) var(--mouse-y), rgba(168, 85, 247, 0.12), transparent 70%);
  opacity: var(--spotlight-opacity);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.persona-card:hover, .bento-tile:hover, .case-card:hover, .video-card:hover {
  --spotlight-opacity: 1;
}

/* --- MAGNETIC CTA INTERACTION HELPER --- */
.btn-primary {
  will-change: transform;
}

/* --- ACESSIBILIDADE: PREFERS-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;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  .pulse-indicator {
    animation: none !important;
  }
}

/* --- CURSOR PERSONALIZADO "VOCÊ" (DESKTOP) --- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  display: none;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate(-100px, -100px);
  transition: opacity 0.22s ease;
}

.custom-cursor.is-active {
  opacity: 1;
}

.custom-cursor-pointer {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: 2px 2px;
}

.custom-cursor-label {
  position: absolute;
  left: 14px;
  top: 14px;
  background: linear-gradient(135deg, var(--brand-purple) 0%, #A855F7 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(140, 26, 240, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  line-height: 1.2;
  user-select: none;
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, box-shadow 0.2s ease;
}

/* Hover em elementos interativos */
.custom-cursor.is-hovering .custom-cursor-pointer {
  transform: scale(1.18);
  filter: drop-shadow(0 3px 12px rgba(140, 26, 240, 0.75));
}

.custom-cursor.is-hovering .custom-cursor-label {
  transform: scale(1.08) translate(2px, 2px);
  background: linear-gradient(135deg, var(--brand-purple-hover) 0%, var(--brand-light-purple) 100%);
  box-shadow: 0 6px 18px rgba(140, 26, 240, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* Clique (MouseDown) */
.custom-cursor.is-down .custom-cursor-pointer {
  transform: scale(0.88);
}
.custom-cursor.is-down .custom-cursor-label {
  transform: scale(0.92);
}

/* Modo Texto em Campos de Entrada */
.custom-cursor.is-text-mode {
  opacity: 0 !important;
}

@media (pointer: fine) and (min-width: 1024px) {
  body, a, button, [role="button"], label, select {
    cursor: none !important;
  }
  input, textarea {
    cursor: text !important;
  }
  .custom-cursor {
    display: block;
  }
}

@media (pointer: coarse), (max-width: 1023px) {
  .custom-cursor {
    display: none !important;
  }
}

