/* ============================================================
   NEXO — styles.css
   Plataforma marketplace marcas + creadores
   Diseño: Dark SaaS editorial premium
   ============================================================ */

/* ---- Variables CSS ---- */
:root {
  /* Fondo */
  --bg-primary:    #07090F;
  --bg-secondary:  #0D1017;
  --bg-tertiary:   #111520;
  --bg-card:       rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-glass:      rgba(13, 16, 23, 0.85);

  /* Bordes */
  --border:        rgba(255, 255, 255, 0.07);
  --border-light:  rgba(255, 255, 255, 0.12);
  --border-accent: rgba(0, 229, 200, 0.25);

  /* Texto */
  --text-primary:   #EAE8E3;
  --text-secondary: #7A7F9A;
  --text-muted:     #454A62;

  /* Acentos */
  --teal:    #00E5C8;
  --teal-dim: rgba(0, 229, 200, 0.15);
  --pink:    #FF4B6E;
  --pink-dim: rgba(255, 75, 110, 0.15);
  --gold:    #F5A623;
  --gold-dim: rgba(245, 166, 35, 0.15);
  --blue:    #4B8EFF;
  --blue-dim: rgba(75, 142, 255, 0.15);

  /* Gradientes */
  --gradient-teal:  linear-gradient(135deg, #00E5C8, #0090A8);
  --gradient-pink:  linear-gradient(135deg, #FF4B6E, #C4153A);
  --gradient-brand: linear-gradient(135deg, #00E5C8 0%, #4B8EFF 100%);

  /* Tipografía */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Outfit', sans-serif;

  /* Radio */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 999px;

  /* Sombras */
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-teal: 0 8px 32px rgba(0, 229, 200, 0.15);
  --shadow-pink: 0 8px 32px rgba(255, 75, 110, 0.15);

  /* Transición */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: all 0.3s var(--ease);
  --t-slow: all 0.5s var(--ease);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- Utilidades ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }
.mt-12 { margin-top: 12px; }

/* ---- Animación fade-in scroll ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   BOTONES
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn--sm  { font-size: 13px; padding: 8px 18px; }
.btn--md  { font-size: 14px; padding: 12px 24px; }
.btn--lg  { font-size: 15px; padding: 14px 28px; }
.btn--xl  { font-size: 16px; padding: 17px 34px; }

/* Primary */
.btn--primary {
  background: var(--gradient-teal);
  color: var(--bg-primary);
  box-shadow: var(--shadow-teal);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 229, 200, 0.3);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* Ghost */
.btn--ghost {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

/* Creator (pink) */
.btn--creator {
  background: var(--gradient-pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--creator:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 75, 110, 0.3);
}

/* Tiny */
.btn-tiny {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: var(--bg-card-hover);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: var(--t);
}
.btn-tiny:hover { color: var(--teal); border-color: var(--teal); }

/* ================================================================
   TAGS / CHIPS
   ================================================================ */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid var(--border-accent);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.section-tag--brand   { color: var(--blue); background: var(--blue-dim); border-color: rgba(75,142,255,0.25); }
.section-tag--creator { color: var(--pink); background: var(--pink-dim); border-color: rgba(255,75,110,0.25); }

/* ================================================================
   SECCIÓN HEADER (títulos reutilizables)
   ================================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-bottom 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gradient-teal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--bg-primary);
  box-shadow: var(--shadow-teal);
}
.logo-text { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-card); }

.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .nav-link { display: block; padding: 10px 12px; font-size: 15px; }
.mobile-auth {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Glows */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.glow--teal  { width: 600px; height: 600px; background: var(--teal); top: -100px; left: -100px; }
.glow--pink  { width: 500px; height: 500px; background: var(--pink); bottom: -100px; right: -100px; }
.glow--center { width: 700px; height: 700px; background: var(--teal); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.2; }
.glow--left  { width: 500px; height: 500px; background: var(--pink); top: 50%; left: -200px; transform: translateY(-50%); }
.glow--right { width: 500px; height: 500px; background: var(--teal); top: 50%; right: -200px; transform: translateY(-50%); }

/* Grid pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px 80px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 200, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(0, 229, 200, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  object-fit: cover;
}
.trust-avatars img:first-child { margin-left: 0; }
.hero-trust p {
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-trust strong { color: var(--text-primary); }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

/* Main card */
.hero-card--main {
  width: 100%;
  max-width: 380px;
  top: 20px;
  right: 0;
  padding: 20px;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.card-dot--green  { background: #3ECF8E; }
.card-dot--yellow { background: #F5A623; }
.card-dot--red    { background: #FF4B6E; }
.card-header span { margin-left: auto; }

.card-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.stat-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px;
}
.stat-mini__num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.stat-mini__label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Mini bar chart */
.card-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  padding: 8px;
  background: var(--bg-card);
  border-radius: var(--r-sm);
}
.bar {
  flex: 1;
  background: var(--border);
  border-radius: 3px 3px 0 0;
  transition: var(--t);
}
.bar--accent { background: var(--gradient-teal); }

/* Campaign card */
.hero-card--campaign {
  width: 200px;
  bottom: 80px;
  left: -20px;
  padding: 16px;
  border-color: var(--border-accent);
  animation: float 4s ease-in-out infinite;
}
.campaign-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 6px;
}
.campaign-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.campaign-budget {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.campaign-applicants {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Notification card */
.hero-card--notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  bottom: 20px;
  right: 20px;
  border-color: rgba(62, 207, 142, 0.25);
  animation: float 5s ease-in-out 1s infinite;
}
.notif-icon { font-size: 22px; color: #3ECF8E; }
.notif-title { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.notif-sub   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-indicator span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ================================================================
   BRANDS STRIP
   ================================================================ */
.brands-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.brands-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.brands-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}
.brand-logo-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  transition: var(--t);
  cursor: default;
}
.brand-logo-item:hover { color: var(--text-primary); }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: var(--t);
}
.step-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-card--accent {
  background: linear-gradient(135deg, rgba(0, 229, 200, 0.08), rgba(75, 142, 255, 0.08));
  border-color: var(--border-accent);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.step-card--accent .step-number { color: var(--teal); opacity: 0.6; }

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--teal);
  margin-bottom: 16px;
}
.step-card--accent .step-icon { background: var(--teal-dim); border-color: var(--border-accent); }

.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.step-arrow {
  position: absolute;
  top: 32px;
  right: -12px;
  width: 24px;
  height: 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  z-index: 1;
}

/* ================================================================
   SPLIT SECTIONS (Marcas / Creadores)
   ================================================================ */
.for-brands,
.for-creators {
  padding: 120px 0;
}
.for-creators { background: var(--bg-secondary); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }

.split-content { max-width: 520px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-dim);
  border: 1px solid rgba(75, 142, 255, 0.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.feature-icon--creator {
  background: var(--pink-dim);
  border-color: rgba(255, 75, 110, 0.25);
  color: var(--pink);
}
.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.feature-item p { font-size: 13px; color: var(--text-secondary); }

/* Brand dashboard preview */
.brand-dashboard-preview {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.preview-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.badge-active {
  font-size: 12px;
  font-weight: 600;
  color: #3ECF8E;
  background: rgba(62, 207, 142, 0.1);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.campaign-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.campaign-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--t);
}
.campaign-row:hover { background: var(--bg-card-hover); }

.cr-info { display: flex; align-items: center; gap: 8px; flex: 1; }
.cr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cr-dot--green  { background: #3ECF8E; }
.cr-dot--yellow { background: #F5A623; }
.cr-dot--teal   { background: var(--teal); }
.cr-dot--red    { background: var(--pink); }

.cr-name  { font-size: 13px; font-weight: 500; }
.cr-tag   { font-size: 11px; color: var(--text-muted); background: var(--bg-card); padding: 3px 8px; border-radius: var(--r-full); }
.cr-budget { font-size: 13px; font-weight: 700; color: var(--text-primary); font-family: var(--font-display); min-width: 50px; text-align: right; }

.cr-status { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--r-full); }
.cr-status--active { color: #3ECF8E; background: rgba(62, 207, 142, 0.1); }
.cr-status--review { color: #F5A623; background: rgba(245, 166, 35, 0.1); }
.cr-status--closed { color: var(--text-muted); background: var(--bg-card); }

.preview-footer {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pf-stat { text-align: center; flex: 1; }
.pf-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.pf-label { font-size: 11px; color: var(--text-muted); }

/* Creator profile preview */
.creator-profile-preview {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  margin: 0 auto;
}
.cpp-avatar {
  position: relative;
  width: 80px;
  margin: 0 auto 16px;
}
.cpp-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-accent);
}
.cpp-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--bg-primary);
  border: 2px solid var(--bg-secondary);
}
.cpp-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.cpp-handle { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }

.cpp-metrics {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.metric-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
}
.metric-pill i { color: var(--text-muted); }
.metric-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
.metric-val   { color: var(--teal); font-weight: 700; }

.cpp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.cpp-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
}
.cpp-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.cpp-stat__label { font-size: 11px; color: var(--text-muted); }

.cpp-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.cpp-tags span {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

/* ================================================================
   CAMPAÑAS
   ================================================================ */
.campaigns {
  padding: 120px 0;
  background: var(--bg-primary);
}

/* Filtros */
.filters-bar {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  min-width: 80px;
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.chip {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chip:hover { border-color: var(--border-light); color: var(--text-primary); }
.chip--active {
  background: var(--teal-dim);
  border-color: var(--border-accent);
  color: var(--teal);
}
.chip i { font-size: 14px; }

/* Campaigns Grid */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.campaign-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.campaign-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.campaign-card.hidden-by-filter { display: none; }

.cc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cc-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-display);
}
.cc-brand-name { font-size: 13px; font-weight: 600; }
.cc-platform {
  font-size: 18px;
  color: var(--text-muted);
}

.cc-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.cc-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cc-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.cc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cc-budget {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal);
}
.cc-applicants {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.campaigns-cta { text-align: center; }

/* ================================================================
   DASHBOARD DEMO
   ================================================================ */
.dashboard-demo {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.dashboard-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: var(--t);
}
.tab-btn:hover { color: var(--text-primary); border-color: var(--border-light); }
.tab-btn--active {
  background: var(--gradient-teal);
  border-color: transparent;
  color: var(--bg-primary);
  box-shadow: var(--shadow-teal);
}

/* Dashboard grid */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dash-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--t);
}
.dash-stat-card:hover { border-color: var(--border-light); transform: translateY(-2px); }

.dsc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.dsc-icon--blue { background: var(--blue-dim); color: var(--blue); }
.dsc-icon--teal { background: var(--teal-dim); color: var(--teal); }
.dsc-icon--gold { background: var(--gold-dim); color: var(--gold); }
.dsc-icon--pink { background: var(--pink-dim); color: var(--pink); }

.dsc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.dsc-label { font-size: 12px; color: var(--text-muted); }
.dsc-change {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dsc-change.positive { color: #3ECF8E; }
.dsc-change.neutral  { color: var(--text-muted); }

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
}
.dash-card--wide { grid-column: span 2; }

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-card-header h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dash-card-link {
  font-size: 12px;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--t);
}
.dash-card-link:hover { gap: 8px; }

/* Table */
.dash-table {
  width: 100%;
  border-collapse: collapse;
}
.dash-table th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-align: left;
  padding: 0 8px 12px;
  border-bottom: 1px solid var(--border);
}
.dash-table td {
  font-size: 13px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}
.dash-table tr:last-child td { border-bottom: none; }
.dt-user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dt-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.dt-user span { font-weight: 500; color: var(--text-primary); }

.eng-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
}
.eng-badge--high { background: rgba(62, 207, 142, 0.15); color: #3ECF8E; }
.eng-badge--mid  { background: var(--gold-dim); color: var(--gold); }

.status-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.status--pending  { background: var(--gold-dim); color: var(--gold); }
.status--approved { background: rgba(62, 207, 142, 0.15); color: #3ECF8E; }

/* Progress bars */
.campaign-progress-list { display: flex; flex-direction: column; gap: 16px; }
.cp-item {}
.cp-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}
.cp-percent { font-weight: 700; color: var(--teal); }
.progress-bar {
  height: 6px;
  background: var(--bg-card-hover);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gradient-teal);
  border-radius: 3px;
  transition: width 1s var(--ease);
}
.progress-fill--yellow { background: linear-gradient(90deg, #F5A623, #FF8C00); }
.progress-fill--teal   { background: var(--gradient-teal); }

/* Notif list */
.notif-list { display: flex; flex-direction: column; gap: 12px; }
.notif-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid transparent;
  transition: var(--t);
}
.notif-item:hover { border-color: var(--border); }
.notif-item--new { border-color: var(--border-accent); background: var(--teal-dim); }
.notif-item i { font-size: 16px; color: var(--text-muted); margin-top: 2px; flex-shrink: 0; }
.notif-item p { font-size: 13px; margin-bottom: 3px; }
.notif-item span { font-size: 11px; color: var(--text-muted); }
.notif-count {
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
}

/* Profile items */
.profile-progress-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.ppi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.ppi--done    { color: #3ECF8E; background: rgba(62, 207, 142, 0.08); }
.ppi--pending { color: var(--text-muted); }
.profile-score { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--teal); }

/* Recommended campaigns */
.rec-campaigns { display: flex; flex-direction: column; gap: 12px; }
.rec-camp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  flex-wrap: wrap;
  transition: var(--t);
}
.rec-camp-item:hover { border-color: var(--border-light); }
.rci-brand { display: flex; align-items: center; gap: 6px; min-width: 120px; font-size: 13px; }
.rci-dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.rci-dot--teal { background: var(--teal); }
.rci-dot--blue { background: var(--blue); }
.rci-dot--pink { background: var(--pink); }
.rci-title    { font-size: 13px; color: var(--text-secondary); flex: 1; }
.rci-budget   { font-size: 14px; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); }
.rci-platform { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.rci-btn      { border-radius: var(--r-full); margin-left: auto; }

/* ================================================================
   PRO FEATURES
   ================================================================ */
.pro-features {
  padding: 120px 0;
  background: var(--bg-primary);
}
.pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pro-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--t);
}
.pro-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.pro-card--accent {
  background: linear-gradient(135deg, var(--teal-dim), var(--blue-dim));
  border-color: var(--border-accent);
}
.pro-icon {
  font-size: 24px;
  color: var(--teal);
  margin-bottom: 14px;
}
.pro-card--accent .pro-icon { color: var(--teal); }
.pro-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pro-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ================================================================
   STATS
   ================================================================ */
.stats-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.stat-block {
  text-align: center;
}
.stat-prefix, .stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--teal);
  vertical-align: top;
  letter-spacing: -0.04em;
}
.stat-prefix { margin-right: 2px; }
.stat-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  line-height: 1;
}
.stat-description {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--t);
}
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quote-icon { font-size: 28px; color: var(--teal); opacity: 0.4; margin-bottom: 16px; }
.testimonial-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-author strong { display: block; font-size: 13px; font-weight: 600; }
.testimonial-author span  { font-size: 12px; color: var(--text-muted); }

/* ================================================================
   CTA FINAL
   ================================================================ */
.final-cta {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 16px 0 24px;
  max-width: 260px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--t);
}
.social-links a:hover { color: var(--teal); border-color: var(--border-accent); }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { font-size: 13px; color: var(--text-muted); transition: var(--t); }
.footer-legal a:hover { color: var(--text-primary); }

/* ================================================================
   TOAST
   ================================================================ */
.toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  max-width: 340px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.35s var(--ease);
  pointer-events: auto;
}
.toast--visible {
  opacity: 1;
  transform: translateX(0);
}
.toast--success { border-color: rgba(62, 207, 142, 0.3); }
.toast--success i { color: #3ECF8E; font-size: 18px; }
.toast--error { border-color: rgba(255, 75, 110, 0.3); }
.toast--error i { color: var(--pink); font-size: 18px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-content     { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle    { max-width: 100%; }
  .hero-visual      { height: 340px; max-width: 420px; margin: 0 auto; }
  .hero-card--main  { max-width: 100%; right: auto; }

  .steps-grid      { grid-template-columns: repeat(2, 1fr); }
  .step-arrow      { display: none; }

  .split-section,
  .split-section--reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }

  .campaigns-grid  { grid-template-columns: repeat(2, 1fr); }
  .dash-grid       { grid-template-columns: repeat(2, 1fr); }
  .dash-card--wide { grid-column: span 2; }

  .pro-grid   { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials    { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-auth { display: none; }
  .hamburger { display: flex; }

  .hero-inner       { padding: 60px 0; }
  .hero-title       { font-size: 3rem; }
  .hero-visual      { height: 280px; }
  .hero-card--campaign,
  .hero-card--notif { display: none; }

  .steps-grid      { grid-template-columns: 1fr; }
  .campaigns-grid  { grid-template-columns: 1fr; }
  .pro-grid        { grid-template-columns: 1fr 1fr; }

  .dash-grid       { grid-template-columns: 1fr; }
  .dash-card--wide { grid-column: span 1; }
  .dash-table      { font-size: 12px; }
  .dash-table th, .dash-table td { padding: 8px 6px; }

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

  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .cta-title { font-size: 2.5rem; }
  .cta-buttons { flex-direction: column; align-items: center; }

  .section-title { font-size: 2rem; }
  .brands-logos  { gap: 8px 20px; }
  .brand-logo-item { font-size: 15px; }

  .filter-group { flex-direction: column; align-items: flex-start; }
  .filter-label { min-width: auto; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .pro-grid   { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-tabs { flex-direction: column; align-items: stretch; }
  .cta-title { font-size: 2rem; }
}


/* ============================================================
   MODO CLARO DINÁMICO + SELECTOR LATERAL
   ============================================================ */
body.theme-light {
  --bg-primary:    #F6F8FC;
  --bg-secondary:  #FFFFFF;
  --bg-tertiary:   #EEF3FA;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-glass:      rgba(255, 255, 255, 0.94);
  --border:        rgba(15, 23, 42, 0.11);
  --border-light:  rgba(15, 23, 42, 0.22);
  --border-accent: rgba(0, 137, 123, 0.34);
  --text-primary:   #0F172A;
  --text-secondary: #334155;
  --text-muted:     #64748B;
  --teal:    #00897B;
  --teal-dim: rgba(0, 137, 123, 0.11);
  --pink:    #D81B60;
  --pink-dim: rgba(216, 27, 96, 0.10);
  --gold:    #B45309;
  --gold-dim: rgba(180, 83, 9, 0.12);
  --blue:    #2563EB;
  --blue-dim: rgba(37, 99, 235, 0.11);
  --gradient-teal:  linear-gradient(135deg, #00897B, #006C84);
  --gradient-pink:  linear-gradient(135deg, #D81B60, #A30F42);
  --gradient-brand: linear-gradient(135deg, #00796B 0%, #1D4ED8 100%);
  --shadow-sm:   0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md:   0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg:   0 22px 55px rgba(15, 23, 42, 0.14);
  --shadow-teal: 0 10px 28px rgba(0, 137, 123, 0.18);
  --shadow-pink: 0 10px 28px rgba(216, 27, 96, 0.16);
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 137, 123, 0.07), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(37, 99, 235, 0.07), transparent 26%),
    var(--bg-primary);
  color: var(--text-primary);
}

body.theme-light p,
body.theme-light li,
body.theme-light .section-subtitle,
body.theme-light .hero-subtitle,
body.theme-light .feature-item p,
body.theme-light .step-card p,
body.theme-light .pro-card p,
body.theme-light .testimonial-card > p,
body.theme-light .footer-brand p,
body.theme-light .cta-subtitle,
body.theme-light .dash-table td {
  color: var(--text-secondary);
}

body.theme-light strong,
body.theme-light h1,
body.theme-light h2,
body.theme-light h3,
body.theme-light h4,
body.theme-light h5,
body.theme-light .hero-title,
body.theme-light .section-title,
body.theme-light .cc-title,
body.theme-light .logo-text,
body.theme-light .stat-mini__num,
body.theme-light .dsc-num,
body.theme-light .stat-number {
  color: var(--text-primary);
}

body.theme-light .navbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.theme-light .navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}
body.theme-light .logo-mark { color: #FFFFFF; }
body.theme-light .nav-link { color: #334155; }
body.theme-light .nav-link:hover { color: #0F172A; background: #F1F5F9; }
body.theme-light .mobile-menu { background: rgba(255, 255, 255, 0.98); }

body.theme-light .btn--primary,
body.theme-light .tab-btn--active {
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
}
body.theme-light .btn--outline {
  background: #FFFFFF;
  color: #0F172A;
  border-color: rgba(15, 23, 42, 0.20);
}
body.theme-light .btn--outline:hover {
  background: #F8FAFC;
  color: #006C84;
  border-color: rgba(0, 108, 132, 0.45);
}
body.theme-light .btn--ghost {
  background: #F8FAFC;
  color: #334155;
  border-color: rgba(15, 23, 42, 0.12);
}
body.theme-light .btn--ghost:hover { background: #EEF3FA; color: #0F172A; }
body.theme-light .btn--creator { color: #FFFFFF; }

body.theme-light .hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 252, 0.96));
}
body.theme-light .hero-badge {
  background: #FFFFFF;
  color: #334155;
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: var(--shadow-sm);
}
body.theme-light .glow { opacity: 0.14; filter: blur(92px); }
body.theme-light .grid-pattern {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px);
}

body.theme-light .hero-card,
body.theme-light .step-card,
body.theme-light .brand-dashboard-preview,
body.theme-light .creator-profile-preview,
body.theme-light .filters-bar,
body.theme-light .campaign-card,
body.theme-light .dash-stat-card,
body.theme-light .dash-card,
body.theme-light .pro-card,
body.theme-light .testimonial-card,
body.theme-light .toast,
body.theme-light .rec-camp-item,
body.theme-light .notif-item,
body.theme-light .campaign-row,
body.theme-light .stat-mini,
body.theme-light .social-links a {
  background: #FFFFFF;
  color: var(--text-primary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
body.theme-light .hero-card:hover,
body.theme-light .step-card:hover,
body.theme-light .campaign-card:hover,
body.theme-light .dash-stat-card:hover,
body.theme-light .dash-card:hover,
body.theme-light .pro-card:hover,
body.theme-light .testimonial-card:hover,
body.theme-light .campaign-row:hover,
body.theme-light .rec-camp-item:hover {
  background: #FFFFFF;
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}
body.theme-light .card-header,
body.theme-light .stat-mini__label,
body.theme-light .campaign-applicants,
body.theme-light .notif-sub,
body.theme-light .brands-label,
body.theme-light .filter-label,
body.theme-light .cc-applicants,
body.theme-light .dsc-label,
body.theme-light .dash-table th,
body.theme-light .stat-description,
body.theme-light .testimonial-author span,
body.theme-light .footer-bottom p,
body.theme-light .footer-col a,
body.theme-light .footer-legal a { color: var(--text-muted); }
body.theme-light .notif-title,
body.theme-light .campaign-name,
body.theme-light .cr-name,
body.theme-light .preview-title,
body.theme-light .cc-brand-name,
body.theme-light .dt-user span,
body.theme-light .testimonial-author strong { color: var(--text-primary); }

body.theme-light .brands-strip,
body.theme-light .how-it-works,
body.theme-light .for-creators,
body.theme-light .dashboard-demo,
body.theme-light .stats-section,
body.theme-light .footer { background: var(--bg-secondary); }
body.theme-light .campaigns,
body.theme-light .for-brands,
body.theme-light .pro-features,
body.theme-light .final-cta { background: var(--bg-primary); }
body.theme-light .brand-logo-item { color: #475569; }
body.theme-light .brand-logo-item:hover { color: #0F172A; }

body.theme-light .section-tag {
  color: #00796B;
  background: rgba(0, 137, 123, 0.10);
  border-color: rgba(0, 137, 123, 0.28);
}
body.theme-light .section-tag--brand {
  color: #1D4ED8;
  background: rgba(37, 99, 235, 0.10);
  border-color: rgba(37, 99, 235, 0.26);
}
body.theme-light .section-tag--creator {
  color: #BE185D;
  background: rgba(216, 27, 96, 0.10);
  border-color: rgba(216, 27, 96, 0.24);
}
body.theme-light .chip,
body.theme-light .cc-pill,
body.theme-light .cr-tag,
body.theme-light .metric-pill,
body.theme-light .cpp-tags span,
body.theme-light .status-pill,
body.theme-light .eng-badge {
  background: #F8FAFC;
  color: #334155;
  border-color: rgba(15, 23, 42, 0.12);
}
body.theme-light .chip:hover { background: #EEF3FA; color: #0F172A; }
body.theme-light .chip--active {
  background: rgba(0, 137, 123, 0.12);
  color: #006C84;
  border-color: rgba(0, 108, 132, 0.36);
}
body.theme-light .campaign-budget,
body.theme-light .cc-budget,
body.theme-light .cp-percent,
body.theme-light .profile-score,
body.theme-light .stat-prefix,
body.theme-light .stat-suffix,
body.theme-light .dash-card-link,
body.theme-light .social-links a:hover { color: #00796B; }
body.theme-light .badge-active,
body.theme-light .dsc-change.positive,
body.theme-light .eng-badge--high,
body.theme-light .status--approved,
body.theme-light .ppi--done {
  color: #047857;
  background: rgba(4, 120, 87, 0.10);
}
body.theme-light .status--pending,
body.theme-light .eng-badge--mid {
  color: #B45309;
  background: rgba(180, 83, 9, 0.12);
}
body.theme-light .dash-table th,
body.theme-light .dash-table td,
body.theme-light .cc-footer,
body.theme-light .footer-bottom { border-color: rgba(15, 23, 42, 0.11); }
body.theme-light .progress-bar,
body.theme-light .card-bar-chart { background: #E2E8F0; }
body.theme-light .bar { background: #CBD5E1; }
body.theme-light .bar--accent,
body.theme-light .progress-fill { background: var(--gradient-teal); }
body.theme-light .creator-profile-preview,
body.theme-light .brand-dashboard-preview { background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%); }
body.theme-light .cpp-handle,
body.theme-light .rci-title,
body.theme-light .rci-platform { color: var(--text-secondary); }
body.theme-light .cpp-badge { color: #00796B; background: #FFFFFF; border-color: rgba(0, 137, 123, 0.22); }
body.theme-light .footer { background: #FFFFFF; }
body.theme-light .footer-col h5 { color: #0F172A; }
body.theme-light .footer-col a:hover,
body.theme-light .footer-legal a:hover { color: #00796B; }
body.theme-light .toast { background: #FFFFFF; color: #0F172A; border-color: rgba(15, 23, 42, 0.14); }
body.theme-light a:focus-visible,
body.theme-light button:focus-visible { outline: 3px solid rgba(37, 99, 235, 0.35); outline-offset: 3px; }

.theme-side-switcher {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.theme-side-switcher__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 4px auto 6px;
}
.theme-side-switcher__button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 18px;
  transition: var(--t);
  cursor: pointer;
}
.theme-side-switcher__button:hover,
.theme-side-switcher__button.is-active {
  background: var(--gradient-teal);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
}
.theme-side-switcher__mode {
  width: 42px;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .theme-side-switcher {
    right: 14px;
    top: auto;
    bottom: 18px;
    transform: none;
    flex-direction: row;
    border-radius: 999px;
  }
  .theme-side-switcher__label {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0 4px;
    align-self: center;
  }
}

/* ============================================================
   RESPONSIVE PREMIUM — creator.dygital.com.mx
   Optimización móvil, tablets y pantallas pequeñas
   ============================================================ */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
}

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

a,
button,
.btn,
.chip,
.tab-btn,
.theme-side-switcher__button {
  -webkit-tap-highlight-color: transparent;
}

button,
.btn,
.nav-link,
.chip,
.tab-btn {
  min-height: 44px;
}

.container {
  width: 100%;
}

/* Evita que tarjetas, tablas o textos largos rompan el ancho móvil */
.hero-title,
.section-title,
.cc-title,
.cpp-name,
.cr-name,
.campaign-name,
.dash-card h4,
.dsc-label,
.stat-mini__label,
.feature-item p,
.step-card p,
.notif-item p {
  overflow-wrap: anywhere;
}

/* Selector de tema más limpio */
.theme-side-switcher__button.is-active {
  box-shadow: 0 10px 25px rgba(0, 137, 123, 0.22);
}

@media (min-width: 769px) and (max-width: 1240px) {
  .container {
    padding-left: 28px;
    padding-right: 84px;
  }

  .theme-side-switcher {
    right: 16px;
  }
}

@media (max-width: 1120px) {
  .nav-inner {
    gap: 18px;
  }

  .nav-link {
    padding-inline: 9px;
  }

  .nav-auth .btn {
    padding-inline: 14px;
  }
}

/* ---------------- Tablet vertical y móvil grande ---------------- */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar {
    height: var(--nav-h);
    background: var(--bg-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    height: var(--nav-h);
    gap: 12px;
  }

  .nav-logo {
    min-width: 0;
    gap: 9px;
    font-size: 19px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex: 0 0 34px;
  }

  .logo-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hamburger {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
  }

  .hamburger span {
    width: 21px;
  }

  .mobile-menu {
    position: fixed;
    top: calc(var(--nav-h) + 10px);
    left: 14px;
    right: 14px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    max-height: calc(100dvh - var(--nav-h) - 30px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .mobile-menu ul {
    gap: 8px;
  }

  .mobile-menu .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-weight: 700;
  }

  .mobile-auth {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
    padding-top: 12px;
  }

  .mobile-auth .btn {
    width: 100%;
    justify-content: center;
  }

  .theme-side-switcher {
    left: 50%;
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    top: auto;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 999px;
    max-width: calc(100vw - 28px);
  }

  .theme-side-switcher__label {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0 3px 0 2px;
    line-height: 1;
    font-size: 10px;
  }

  .theme-side-switcher__button {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .theme-side-switcher__mode {
    width: auto;
    min-width: 42px;
    padding-right: 3px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding-top: var(--nav-h);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 18px 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    width: 100%;
  }

  .hero-badge {
    max-width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 7px 12px;
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 24px;
  }

  .hero-ctas {
    width: 100%;
    max-width: 420px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 26px;
  }

  .hero-ctas .btn,
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  .hero-trust p {
    font-size: 12.5px;
    max-width: 280px;
  }

  .trust-avatars {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    height: auto;
    max-width: 430px;
    margin: 0 auto;
  }

  .hero-card {
    position: relative;
  }

  .hero-card--main {
    width: 100%;
    max-width: 100%;
    top: auto;
    right: auto;
    padding: 16px;
    border-radius: 20px;
  }

  .card-header {
    margin-bottom: 14px;
  }

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

  .stat-mini {
    padding: 12px 10px;
  }

  .stat-mini__num {
    font-size: 21px;
  }

  .stat-mini__label {
    font-size: 10.5px;
  }

  .card-bar-chart {
    height: 56px;
  }

  .scroll-indicator {
    display: none;
  }

  .brands-strip {
    padding: 24px 0;
  }

  .brands-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .brands-logos {
    gap: 10px;
  }

  .brand-logo-item {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 13px;
  }

  .how-it-works,
  .for-brands,
  .for-creators,
  .campaigns,
  .dashboard-demo,
  .pro-features,
  .stats-section,
  .testimonials-section,
  .final-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-tag {
    margin-bottom: 14px;
    font-size: 10.5px;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .steps-grid,
  .campaigns-grid,
  .dash-grid,
  .testimonials,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 22px;
    border-radius: 20px;
  }

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

  .split-section,
  .split-section--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-content {
    max-width: none;
  }

  .feature-list {
    gap: 18px;
    margin: 26px 0;
  }

  .feature-item {
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-dashboard-preview,
  .creator-profile-preview,
  .filters-bar,
  .campaign-card,
  .dash-card,
  .dash-stat-card,
  .pro-card,
  .testimonial-card {
    border-radius: 20px;
  }

  .brand-dashboard-preview,
  .creator-profile-preview {
    padding: 18px;
  }

  .preview-header,
  .dash-card-header,
  .cc-header,
  .cc-footer,
  .rec-camp-item {
    gap: 10px;
  }

  .campaign-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 10px;
    align-items: center;
    padding: 12px;
  }

  .campaign-row .cr-info {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .preview-footer,
  .cpp-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cpp-metrics,
  .cpp-tags,
  .cc-meta,
  .filter-chips {
    gap: 8px;
  }

  .filters-bar {
    padding: 16px;
    gap: 18px;
  }

  .filter-group {
    width: 100%;
    align-items: stretch;
  }

  .filter-label {
    width: 100%;
    min-width: 0;
    margin-bottom: 2px;
  }

  .filter-chips {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .filter-chips::-webkit-scrollbar {
    height: 0;
  }

  .chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 9px 14px;
  }

  .campaign-card {
    padding: 18px;
  }

  .cc-title {
    font-size: 17px;
    line-height: 1.35;
  }

  .cc-footer {
    align-items: flex-start;
  }

  .dashboard-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }

  .dashboard-panel {
    width: 100%;
  }

  .dash-card--wide {
    grid-column: auto;
  }

  .dash-stat-card,
  .dash-card {
    padding: 18px;
  }

  .dash-stat-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .dsc-change {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .dash-card:has(.dash-table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dash-table {
    min-width: 620px;
    font-size: 12px;
  }

  .dash-table th,
  .dash-table td {
    padding: 10px 8px;
  }

  .notif-item,
  .rec-camp-item {
    align-items: flex-start;
  }

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

  .stat-card {
    padding: 18px 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .cta-buttons {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer {
    padding-bottom: 96px;
  }

  .footer-top {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 6px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .toast-container {
    left: 14px;
    right: 14px;
    bottom: 86px;
    align-items: stretch;
  }

  .toast {
    width: 100%;
    max-width: none;
  }
}

/* ---------------- Móvil pequeño ---------------- */
@media (max-width: 480px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-inner {
    padding: 36px 15px 42px;
  }

  .hero-title br {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 14.5px;
  }

  .btn--lg,
  .btn--xl {
    padding: 13px 18px;
    font-size: 14px;
  }

  .card-stats-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-mini {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: 10px;
    text-align: left;
  }

  .stat-mini__num {
    font-size: 24px;
  }

  .brand-logo-item {
    font-size: 12px;
    padding-inline: 9px;
  }

  .feature-item {
    align-items: flex-start;
  }

  .feature-item h4,
  .step-card h3 {
    font-size: 16px;
  }

  .feature-item p,
  .step-card p {
    font-size: 13.5px;
  }

  .campaign-row {
    grid-template-columns: 1fr;
  }

  .cr-tag,
  .cr-budget,
  .cr-status {
    justify-self: start;
  }

  .cc-header,
  .cc-footer,
  .dash-card-header,
  .rec-camp-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cc-brand {
    width: 100%;
    min-width: 0;
  }

  .cc-brand-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .apply-btn {
    min-height: 46px;
  }

  .cpp-avatar img {
    width: 72px;
    height: 72px;
  }

  .theme-side-switcher {
    padding: 7px 8px;
  }

  .theme-side-switcher__button {
    width: 38px;
    height: 38px;
  }

  .theme-side-switcher__label {
    display: none;
  }

  .mobile-menu {
    left: 10px;
    right: 10px;
  }
}

/* ---------------- Teléfonos muy angostos ---------------- */
@media (max-width: 360px) {
  .logo-text {
    max-width: 132px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.72rem;
  }

  .hero-badge {
    font-size: 11px;
  }

  .theme-side-switcher__mode {
    display: none;
  }
}

/* Reduce movimiento en equipos que lo solicitan y en móviles táctiles */
@media (prefers-reduced-motion: reduce), (hover: none) and (pointer: coarse) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .glow,
  .hero-card--campaign,
  .hero-card--notif,
  .scroll-line,
  .badge-dot {
    animation: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
