/* =========================================
   Estilos específicos - 05-portafolio-artistas
   ========================================= */


/* ==========================================================================
   SHARED DESIGN SYSTEM - BALLESTASTUDIO LANDING PAGES (3er Corte)
   ========================================================================== */
/* Google Fonts loaded via preconnect/link in HTML head */

/* ── DEMO BANNER (Portfolio showcase strip) ──────────────────────────────────
   Muestra una franja superior en las demos de portafolio de Ballestastudio.
   Se adapta automáticamente al tema claro/oscuro.
   ────────────────────────────────────────────────────────────────────────── */
.demo-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(10, 10, 20, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.5;
}

[data-theme="light"] .demo-banner {
    background: rgba(240, 240, 250, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(30, 30, 50, 0.75);
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #0A5CFF, #7C3AED);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.demo-banner p { margin: 0; }
.demo-banner strong { color: #fff; font-weight: 700; }
[data-theme="light"] .demo-banner strong { color: #1a1a2e; }
.demo-banner a {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(96,165,250,0.4);
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.demo-banner a:hover { color: #93c5fd; border-color: #93c5fd; }
[data-theme="light"] .demo-banner a { color: #1d4ed8; border-color: rgba(29,78,216,0.3); }

/* Ajuste para que el contenido no quede oculto detrás del banner fijo */
body:has(.demo-banner) { padding-bottom: 52px; }



:root {
  /* Brand Color System (Vibrant Blue & Dark Contrasts) */
  --brand-blue: #0A5CFF;
  --brand-blue-hover: #0046d5;
  --brand-blue-light: rgba(10, 92, 255, 0.06);
  --brand-blue-glow: rgba(10, 92, 255, 0.35);

  /* Ambient Glow Animation variables (Light Mode) */
  --glow-opacity-max: 0.75;
  --glow-opacity-min: 0.55;
  --glow-blue: rgba(10, 92, 255, 0.18);
  --glow-purple: rgba(168, 85, 247, 0.18);

  /* Light Theme Variables */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  
  --text-title: #0f172a;
  --text-main: #334155;
  --text-muted: #64748b;
  
  --border-color: #e2e8f0;
  --border-focus: #0A5CFF;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 15px 40px rgba(10, 92, 255, 0.06);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --max-width: 1200px;
  --grid-gap: 30px;
  --transition-speed: 0.3s;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg-body: #07090e;
  --bg-card: #10141f;
  --bg-alt: #161c2c;
  
  --text-title: #f8fafc;
  --text-main: #cbd5e1;

  /* Ambient Glow Animation variables (Dark Mode) */
  --glow-opacity-max: 0.9;
  --glow-opacity-min: 0.7;
  --glow-blue: rgba(10, 92, 255, 0.32);
  --glow-purple: rgba(168, 85, 247, 0.32);
  --text-muted: #94a3b8;
  
  --border-color: #1e293b;
  --border-focus: #0A5CFF;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   BILINGUAL SYSTEM SWITCHING
   ========================================================================== */
html:not([lang="en"]) .lang-en {
  display: none !important;
}
html[lang="en"] .lang-es {
  display: none !important;
}

/* ==========================================================================
   CSS RESET & BASE LAYOUT
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  transition: background-color var(--transition-speed), color var(--transition-speed);
  position: relative;
  overflow-x: hidden;
}

/* Accesibilidad - Ocultar visualmente pero dejar para lectores de pantalla (SEO) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--wollo-purple, #8b5cf6);
}

/* Container & Grids */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
}

.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* Sections */
.section-padding {
  padding: 65px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.section-header {
  margin-bottom: 50px;
  max-width: 700px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-title) 30%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p {
  color: var(--text-main);
  margin-bottom: 16px;
}

p.lead {
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE ELEMENTS & BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  border: none;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--brand-blue-glow);
}

.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--brand-blue-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-title);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--brand-blue);
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  transform: translateY(-2px);
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--brand-blue-light);
  border: 1px solid rgba(10, 92, 255, 0.15);
  color: var(--brand-blue);
  padding: 4px 10px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   HEADER & THEME TOGGLE
   ========================================================================== */
.header-wireframe {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color var(--transition-speed);
}

[data-theme="dark"] .header-wireframe {
  background-color: rgba(7, 9, 14, 0.85);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-container img {
  height: 38px;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.currency-switcher {
  display: inline-flex;
  align-items: center;
}

.currency-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-title);
  transition: all var(--transition-speed);
}

.currency-btn:hover {
  border-color: var(--brand-blue);
  background-color: var(--brand-blue-light);
}

.currency-label {
  transition: color var(--transition-speed);
}

.currency-label.active {
  color: var(--brand-blue);
}

.currency-label:not(.active) {
  color: var(--text-muted);
}

.currency-divider {
  color: var(--border-color);
  margin: 0 2px;
}

.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-title);
  transition: all var(--transition-speed);
}

.theme-toggle-btn:hover {
  border-color: var(--brand-blue);
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

.theme-toggle-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
.sun-icon { display: none; }
.moon-icon { display: block; }

/* ==========================================================================
   CARDS & WRAPPERS
   ========================================================================== */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-title);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-body);
  color: var(--text-title);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--wollo-purple, #8b5cf6);
}

.success-msg {
  display: none;
  margin-top: 15px;
  padding: 12px;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgb(34, 197, 94);
  color: rgb(34, 197, 94);
  border-radius: 6px;
  font-weight: 550;
  font-size: 0.9rem;
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-wireframe {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px 0;
  font-size: 0.95rem;
  transition: background-color var(--transition-speed);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  transition: all var(--transition-speed);
}

.social-link:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  box-shadow: 0 0 8px var(--brand-blue-glow);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-12 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    grid-column: span 1;
  }
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section-padding { padding: 60px 0; }
}

/* ==========================================================================
   FLOATING UTILITY CONTROLS (Bilingual & Theme Switcher)
   ========================================================================== */
.floating-controls-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 12px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed);
}

[data-theme="dark"] .floating-controls-panel {
  background: rgba(16, 20, 31, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-controls-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(10, 92, 255, 0.12);
}

.floating-btn {
  background: none;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-title);
  height: 36px;
  transition: all var(--transition-speed);
}

.floating-btn:hover {
  border-color: var(--brand-blue);
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

.floating-theme-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  color: var(--text-title);
}

.floating-home-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  color: var(--text-title);
  text-decoration: none;
}

.floating-theme-btn svg, .floating-home-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ==========================================================================
   PREMIUM EFFECTS (Pinterest references: Neon glow, Glassmorphism, Grids)
   ========================================================================== */
.grid-backdrop {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(10, 92, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 92, 255, 0.03) 1px, transparent 1px);
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .grid-backdrop {
  background-image: 
    linear-gradient(to right, rgba(10, 92, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 92, 255, 0.04) 1px, transparent 1px);
}

.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="dark"] .glass-card {
  background: rgba(16, 20, 31, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

.glass-card:hover {
  border-color: rgba(10, 92, 255, 0.4) !important;
  box-shadow: 0 15px 45px rgba(10, 92, 255, 0.12) !important;
  transform: translateY(-4px);
}

.glow-hover {
  position: relative;
  overflow: hidden;
}

.glow-hover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(10, 92, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.glow-hover:hover::after {
  opacity: 1;
}

.fade-in-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   EXPANDED LAYOUT UTILITIES (Bento Grid, Pricing Toggle & Neon Glows)
   ========================================================================== */

/* Neon glowing curve decoration (Reference 1 style) */
.neon-glow-wave {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  filter: blur(2px);
}

[data-theme="dark"] .neon-glow-wave {
  opacity: 0.45;
}

/* Centered Hero adjustments */
.hero-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* Partner logos row */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.partner-logos:hover {
  opacity: 0.7;
}

.partner-logo-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-title);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-logo-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Process Step Badge Card */
.step-number-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  border: 1px solid rgba(10, 92, 255, 0.2);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-top: 40px;
}

.bento-stack {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
}

.bento-tall-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  object-fit: cover;
  aspect-ratio: 1.4;
}

/* Prompt Console Simulator */
.prompt-simulator {
  background-color: #0c0f17;
  border: 1px solid #1e293b;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.85rem;
  color: #38bdf8;
  overflow: hidden;
  text-align: left;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
  margin-top: 15px;
}

.prompt-bar {
  background: #111827;
  padding: 8px 12px;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prompt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.prompt-dot.red { background: #ef4444; }
.prompt-dot.yellow { background: #f59e0b; }
.prompt-dot.green { background: #10b981; }

.prompt-terminal {
  padding: 15px;
  min-height: 120px;
  color: #e5e7eb;
}

.prompt-input-line {
  color: #38bdf8;
  margin-bottom: 8px;
}

.prompt-output-line {
  color: #10B981;
  margin-top: 10px;
  display: none;
}

.prompt-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: #e5e7eb;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

.prompt-triggers {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.prompt-trigger-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--text-title);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-speed);
}

.prompt-trigger-btn:hover, .prompt-trigger-btn.active {
  border-color: var(--brand-blue);
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
}

/* Pricing Toggle Switch */
.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
}

.pricing-toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition-speed);
}

.pricing-toggle-label.active {
  color: var(--brand-blue);
}

.pricing-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .4s;
  border-radius: 34px;
}

.pricing-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

input:checked + .pricing-slider {
  background-color: var(--brand-blue);
}

input:checked + .pricing-slider:before {
  transform: translateX(24px);
}

.pricing-discount-badge {
  background: #f59e0b;
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

/* Pricing Card highlights */
.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.pricing-card-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-title);
  margin-top: 10px;
}

.pricing-card-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.pricing-features-list li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features-list li::before {
  content: "✓";
  color: var(--brand-blue);
  font-weight: bold;
}

.pricing-card.highlight {
  border-color: var(--brand-blue) !important;
  box-shadow: 0 15px 45px var(--brand-blue-glow) !important;
}

.pricing-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

/* SVG Charts & Gauges Styles */
.svg-chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.fade-in-reveal.revealed .svg-chart-path {
  animation: drawLine 2.5s ease forwards;
}

.svg-bar-rect {
  transform-origin: bottom;
  transform: scaleY(0);
}

.fade-in-reveal.revealed .svg-bar-rect {
  animation: scaleBar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes scaleBar {
  to { transform: scaleY(1); }
}

.gauge-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transform: rotate(-90deg);
  transform-origin: 50px 50px;
}

.fade-in-reveal.revealed .gauge-circle {
  animation: fillGauge 2s ease forwards;
}

@keyframes fillGauge {
  to { stroke-dashoffset: 57; } /* 80% filled */
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUBTLE BACKGROUND ANIMATIONS, CONTRAST SECTIONS & ACCORDION FAQS
   ========================================================================== */

/* Subtly animated ambient glow circles */
.ambient-glow {
  animation: floatGlow 18s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: var(--glow-opacity-max);
  }
  50% {
    transform: translate(60px, -60px) scale(1.15);
    opacity: var(--glow-opacity-min);
  }
  100% {
    transform: translate(-30px, 30px) scale(0.95);
    opacity: var(--glow-opacity-max);
  }
}

/* Vibrant brand blue section for visual contrast */
.bg-brand-blue {
  background-color: var(--brand-blue) !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.bg-brand-blue h1, .bg-brand-blue h2, .bg-brand-blue h3, .bg-brand-blue h4 {
  color: #ffffff !important;
}

.bg-brand-blue p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.bg-brand-blue .badge {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
}

.bg-brand-blue .glass-card {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  color: #ffffff !important;
}

.bg-brand-blue .glass-card:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-4px);
}

.bg-brand-blue .step-number-badge {
  background: rgba(255, 255, 255, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}

.bg-brand-blue .glass-card p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all var(--transition-speed);
}

.faq-item:hover {
  border-color: var(--brand-blue);
}

.faq-trigger {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-title);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform var(--transition-speed);
  color: var(--brand-blue);
  display: inline-block;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, border-color 0.4s ease;
  padding: 0 24px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.faq-item.active .faq-content {
  max-height: 250px; /* Suficiente para respuestas de FAQs */
  padding: 0 24px 20px 24px;
  border-top: 1px solid var(--border-color);
  margin-top: -1px;
}

/* Tools Integration Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all var(--transition-speed);
}

.tool-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.tool-card svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  color: var(--brand-blue);
}

.tool-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-title);
}

/* Pulsing end-point for SVG line charts */
.pulse-circle {
  transform-origin: 300px 10px;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.45;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}



/* ==========================================================================
   WOLLO-INSPIRED ARTIST PORTFOLIO LANDING PAGE STYLES
   ========================================================================== */

:root {
  /* Color Palette Overrides */
  --wollo-dark: #090d16;
  --wollo-dark-card: #111827;
  --wollo-purple: #8b5cf6;
  --wollo-purple-glow: rgba(139, 92, 246, 0.3);
  --wollo-pink: #ec4899;
  --wollo-blue: #3b82f6;
  --wollo-gold: #f59e0b;
  --wollo-bg: #f8fafc;
  --wollo-text-primary: #0f172a;
  --wollo-text-secondary: #475569;
  --wollo-border: #e2e8f0;
  --wollo-card-bg: #ffffff;
  
  /* Layout */
  --wollo-radius-lg: 32px;
  --wollo-radius-md: 20px;
  --wollo-radius-sm: 12px;
}

[data-theme="dark"] {
  --wollo-bg: #030712;
  --wollo-text-primary: #f8fafc;
  --wollo-text-secondary: #94a3b8;
  --wollo-border: #1f2937;
  --wollo-card-bg: #111827;
  --wollo-purple-glow: rgba(139, 92, 246, 0.45);
}

/* ==========================================================================
   FLOATING NAVBAR (WOLLO NAV)
   ========================================================================== */
.wollo-navbar-container {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.wollo-navbar-container.nav-hidden {
  transform: translateY(-120px);
  opacity: 0;
  pointer-events: none;
}

.wollo-nav {
  width: 100%;
  max-width: 1120px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--wollo-border);
  border-radius: 40px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

[data-theme="dark"] .wollo-nav {
  background: rgba(9, 13, 22, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wollo-nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--wollo-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wollo-nav-logo span {
  color: var(--wollo-purple);
}

.wollo-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(241, 245, 249, 0.8);
  padding: 6px 20px;
  border-radius: 30px;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

[data-theme="dark"] .wollo-nav-links {
  background: rgba(31, 41, 55, 0.8);
  border-color: rgba(255, 255, 255, 0.04);
}

.wollo-nav-link {
  color: var(--wollo-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.wollo-nav-link:hover {
  color: var(--wollo-purple);
}

.wollo-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wollo-btn-nav-text {
  color: var(--wollo-text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.wollo-btn-nav-text:hover {
  opacity: 0.8;
}

.wollo-btn-pill {
  background: var(--wollo-text-primary);
  color: var(--wollo-bg);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
}

.wollo-btn-pill:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* ==========================================================================
   HERO WOLLO SECTION
   ========================================================================== */
.hero-wollo {
  padding: 110px 0 40px 0;
  background-color: var(--wollo-bg);
  transition: background-color 0.3s;
}

.hero-wollo-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--wollo-border);
  border-radius: var(--wollo-radius-lg);
  padding: 60px 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

[data-theme="dark"] .hero-wollo-card {
  background: linear-gradient(135deg, rgba(9, 13, 22, 0.95) 0%, rgba(30, 27, 75, 0.98) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Badge Creativo */
.hero-creative-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  margin-bottom: 24px;
}

.badge-palette-svg {
  width: 20px;
  height: 20px;
}

.badge-plus-glow {
  background: var(--wollo-purple);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 4px var(--wollo-purple); }
  100% { box-shadow: 0 0 12px var(--wollo-purple); }
}

/* Rotación de Títulos */
.hero-title-container {
  min-height: 180px;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-title-slide {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--wollo-text-primary);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero-title-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-title-slide span {
  background: linear-gradient(135deg, var(--wollo-purple) 0%, var(--wollo-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--wollo-text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 35px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wollo-btn-dark {
  background: var(--wollo-text-primary);
  color: var(--wollo-bg);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wollo-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wollo-btn-white {
  background: transparent;
  color: var(--wollo-text-primary);
  padding: 14px 28px;
  border-radius: 30px;
  border: 1px solid var(--wollo-border);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wollo-btn-white:hover {
  background: rgba(226, 232, 240, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   MOCKUP SLIDESHOW PLAYER
   ========================================================================== */
.mockup-player-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.mockup-player {
  background: var(--wollo-dark);
  border-radius: var(--wollo-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilo general para slides */
.mockup-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mockup-slide.active {
  opacity: 1;
  visibility: visible;
}

/* SLIDE 1: HERRAMIENTAS ARTÍSTICAS FLOTANTES */
.slide-creative-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 13, 22, 0.95) 0%, rgba(30, 27, 75, 0.98) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Elementos SVG flotantes */
.float-svg {
  position: absolute;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.svg-palette {
  width: 90px;
  height: 90px;
  top: 22%;
  left: 20%;
  animation: float-slow 6s ease-in-out infinite alternate;
}

.svg-pencil {
  width: 70px;
  height: 70px;
  top: 18%;
  right: 18%;
  animation: float-fast 4s ease-in-out infinite alternate;
}

.svg-canvas {
  width: 130px;
  height: 100px;
  bottom: 20%;
  left: 35%;
  animation: float-mid 5s ease-in-out infinite alternate;
}

.svg-star {
  width: 36px;
  height: 36px;
  top: 55%;
  right: 25%;
  animation: rotate-pulse 8s linear infinite;
}

.svg-heart {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 15%;
  animation: float-slow 5.5s ease-in-out infinite alternate;
}

.svg-sparkles {
  width: 50px;
  height: 50px;
  bottom: 15%;
  right: 15%;
  animation: float-mid 4.5s ease-in-out infinite alternate;
}

/* Animations Keyframes */
@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes float-mid {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-4deg); }
}

@keyframes float-fast {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(-8deg); }
}

@keyframes rotate-pulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

/* SLIDE 2: MOCK CLIENT DASHBOARD */
.slide-dashboard {
  width: 100%;
  height: 100%;
  background: #0f172a;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 15px;
}

.dash-logo {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #38bdf8;
}

.dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  flex-grow: 1;
  margin-top: 20px;
}

.dash-chart-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dash-chart-title {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 10px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
}

.dash-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 12%;
}

.dash-bar {
  width: 100%;
  background: linear-gradient(to top, var(--wollo-purple), var(--wollo-pink));
  border-radius: 4px;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-slide.active .dash-bar {
  transform: scaleY(1);
}

.dash-bar-label {
  font-size: 0.6rem;
  color: #64748b;
}

.dash-stats-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.dash-gauge {
  width: 70px;
  height: 70px;
  position: relative;
  margin-bottom: 10px;
}

.dash-gauge svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.dash-gauge-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 6;
}

.dash-gauge-fill {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-slide.active .dash-gauge-fill {
  stroke-dashoffset: 44; /* Representa el 98% */
}

.dash-gauge-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.dash-stats-num {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.dash-stats-label {
  font-size: 0.65rem;
  color: #94a3b8;
}

/* SLIDE 3: MULTI-CHANNEL SCHEDULER */
.slide-scheduler {
  width: 100%;
  height: 100%;
  background: #0b0f19;
  padding: 25px;
  display: flex;
  flex-direction: column;
  color: white;
}

.sched-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
  flex-grow: 1;
}

.sched-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sched-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.sched-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.mockup-slide.active .sched-card {
  transform: translateY(0);
  opacity: 1;
}

.mockup-slide.active .sched-card:nth-child(2) { transition-delay: 0.15s; }
.mockup-slide.active .sched-card:nth-child(3) { transition-delay: 0.3s; }

.sched-card-img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.sched-card-info {
  flex-grow: 1;
}

.sched-card-name {
  font-size: 0.72rem;
  font-weight: 600;
}

.sched-card-time {
  font-size: 0.62rem;
  color: #64748b;
}

.sched-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.sched-badge.as { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.sched-badge.be { background: rgba(139, 92, 246, 0.15); color: #c084fc; }
.sched-badge.ig { background: rgba(236, 72, 153, 0.15); color: #f472b6; }

/* Barra de controles inferior del reproductor */
.mockup-controls {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.progress-indicator {
  flex: 1;
  height: 3px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

[data-theme="dark"] .progress-indicator {
  background: rgba(255, 255, 255, 0.12);
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--wollo-purple);
  border-radius: 2px;
}

/* ==========================================================================
   STATS BIG SECTION
   ========================================================================== */
.stats-big {
  padding: 55px 0;
  background: var(--wollo-bg);
  border-bottom: 1px solid var(--wollo-border);
  transition: background-color 0.3s;
}

.stats-big-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.stats-big-num {
  font-family: var(--font-heading);
  font-size: 6.2rem;
  font-weight: 800;
  color: var(--wollo-text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--wollo-text-primary) 40%, var(--wollo-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-big-desc {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--wollo-text-primary);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   BENTO GRID SECTION
   ========================================================================== */
.bento-section {
  padding: 65px 0;
  background: var(--wollo-bg);
  border-bottom: 1px solid var(--wollo-border);
}

.bento-grid-wollo {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.bento-card {
  background: var(--wollo-card-bg);
  border: 1px solid var(--wollo-border);
  border-radius: var(--wollo-radius-md);
  padding: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--wollo-purple);
  box-shadow: 0 12px 35px var(--wollo-purple-glow);
}

.bento-col-4 { grid-column: span 4; }
.bento-col-5 { grid-column: span 5; }
.bento-col-7 { grid-column: span 7; }
.bento-col-8 { grid-column: span 8; }

/* Estilos internos para Bento Card 1: Hashtags */
.bento-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.bento-tag-pill {
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wollo-purple);
  cursor: pointer;
  transition: all 0.2s;
}

.bento-tag-pill:hover {
  background: var(--wollo-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--wollo-purple-glow);
}

.bento-tag-pill:nth-child(even) {
  color: var(--wollo-pink);
  border-color: rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.05);
}

.bento-tag-pill:nth-child(even):hover {
  background: var(--wollo-pink);
  color: white;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

/* Estilos Bento Card 2: Curation Dashboard */
.bento-curator-preview {
  margin-top: 25px;
  background: var(--wollo-bg);
  border: 1px solid var(--wollo-border);
  border-radius: var(--wollo-radius-sm);
  padding: 20px;
}

.curator-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--wollo-border);
}

.curator-row:last-child {
  border-bottom: none;
}

.curator-label {
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--wollo-text-primary);
}

.curator-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Toggle Switch slider */
.curator-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.curator-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.curator-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  border-radius: 24px;
  transition: 0.3s;
}

.curator-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.curator-switch input:checked + .curator-slider {
  background-color: var(--wollo-purple);
}

.curator-switch input:checked + .curator-slider:before {
  transform: translateX(20px);
}

/* Range input customization */
.curator-range {
  width: 80px;
  accent-color: var(--wollo-purple);
  cursor: pointer;
}

/* Bento Card 3: Image Frame */
.bento-image-frame {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.bento-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 13, 22, 0.9) 0%, rgba(9, 13, 22, 0.2) 60%, transparent 100%);
  z-index: -1;
  border-radius: var(--wollo-radius-md);
}

.bento-image-text {
  color: white;
}

.bento-image-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.bento-image-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-sec {
  padding: 95px 0;
  background: var(--wollo-bg);
  border-bottom: 1px solid var(--wollo-border);
}

.testimonial-card {
  background: var(--wollo-card-bg);
  border: 1px solid var(--wollo-border);
  border-radius: var(--wollo-radius-md);
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--wollo-purple);
  box-shadow: 0 12px 35px var(--wollo-purple-glow);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--wollo-text-primary);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 3rem;
  color: rgba(139, 92, 246, 0.15);
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--wollo-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  background-size: cover;
  background-position: center;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--wollo-text-primary);
}

.author-role {
  font-size: 0.78rem;
  color: var(--wollo-text-secondary);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-sec {
  padding: 65px 0;
  background: var(--wollo-bg);
  border-bottom: 1px solid var(--wollo-border);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--wollo-card-bg);
  border: 1px solid var(--wollo-border);
  border-radius: var(--wollo-radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--wollo-purple);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: var(--wollo-text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--wollo-purple);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  color: var(--wollo-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Estado Activo FAQ */
.faq-item.active {
  border-color: var(--wollo-purple);
  box-shadow: 0 4px 20px var(--wollo-purple-glow);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  padding: 0 28px 24px 28px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-sec {
  padding: 70px 0;
  background: var(--wollo-bg);
  position: relative;
  overflow: hidden;
}
/* Interactive WebGL Demo Styles */
.webgl-interactive-demo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  perspective: 800px;
}

.cube-container {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 10s infinite linear;
  transition: transform 0.5s ease;
}

.bento-image-frame:hover .cube-container {
  animation-play-state: paused;
  transform: scale(1.3) rotateX(-20deg) rotateY(45deg);
  cursor: pointer;
}

.cube {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
}

.face {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(139, 92, 246, 0.2);
  border: 2px solid var(--wollo-purple);
  box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.5);
}

.front  { transform: translateZ(50px); }
.back   { transform: rotateY(180deg) translateZ(50px); }
.right  { transform: rotateY(90deg) translateZ(50px); }
.left   { transform: rotateY(-90deg) translateZ(50px); }
.top    { transform: rotateX(90deg) translateZ(50px); }
.bottom { transform: rotateX(-90deg) translateZ(50px); }

@keyframes rotateCube {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

.interactive-hint {
  position: absolute;
  bottom: -20px;
  font-size: 0.7rem;
  color: var(--wollo-purple);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Visor Expandido Demo Styles */
.visor-interactive-demo {
  width: 100%;
  height: 160px;
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid var(--wollo-border);
  border-radius: var(--wollo-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.visor-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--wollo-purple), var(--wollo-pink));
  border-radius: var(--wollo-radius-sm);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.visor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: var(--wollo-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-icon {
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visor-interactive-demo:hover .visor-thumbnail {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.visor-interactive-demo:hover .visor-overlay {
  opacity: 1;
}

.visor-interactive-demo:hover .zoom-icon {
  transform: scale(1.5);
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .hero-wollo-card {
    padding: 40px 30px;
  }
  .hero-title-slide {
    font-size: 2.5rem;
  }
  .hero-title-container {
    height: 150px;
  }
  .mockup-player {
    height: 340px;
    margin-top: 40px;
  }
  .stats-big-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .stats-big-num {
    font-size: 5rem;
  }
  .bento-grid-wollo {
    grid-template-columns: 1fr;
  }
  .bento-col-4, .bento-col-5, .bento-col-7, .bento-col-8 {
    grid-column: span 12;
  }
  .wollo-nav-links {
    display: none; /* Ocultar links en tablet/mobile en favor de minimalismo */
  }
}

@media (max-width: 576px) {
  .hero-title-slide {
    font-size: 2rem;
  }
  .hero-title-container {
    height: 130px;
  }
  .hero-wollo-card {
    padding: 30px 20px;
  }
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   CLEAN FOOTER SYSTEM (Universal Minimalist Footer)
   ========================================================================== */
.clean-footer {
  display: block;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  background-color: var(--bg-footer, transparent);
  transition: all 0.3s ease;
}

.clean-footer-container {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.clean-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clean-footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

.clean-footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.45));
  font-weight: 400;
  border-left: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
  padding-left: 12px;
  line-height: 1.2;
}

.clean-footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.clean-footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.6));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.clean-footer-nav a:hover {
  color: var(--brand-blue, var(--re-gold, #C9A96E));
}

.clean-footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.45));
  text-align: right;
}

@media (max-width: 768px) {
  .clean-footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .clean-footer-brand {
    flex-direction: column;
    gap: 8px;
  }
  .clean-footer-tagline {
    border-left: none;
    padding-left: 0;
  }
  .clean-footer-nav {
    justify-content: center;
    gap: 16px;
  }
  .clean-footer-copy {
    text-align: center;
  }
}
