/* ===== AVALON CREATORS - ESTILO PROFESIONAL DEFINITIVO ===== */
:root {
  --gold: #F5B041;
  --gold-dark: #D68910;
  --magenta: #E91E63;
  --cyan: #00E5FF;
  --purple: #9C27B0;
  --dark-bg: #0A0F1A;
  --dark-card: rgba(18, 25, 45, 0.85);
  --light-bg: #F8FAFC;
  --light-card: rgba(255,255,255,0.95);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --shadow: 0 20px 35px -12px rgba(0,0,0,0.4);
  --radius: 20px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease-smooth: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
[data-theme="dark"] {
  --bg-body: var(--dark-bg);
  --bg-surface: #111827;
  --bg-card: var(--dark-card);
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --border: rgba(245,176,65,0.2);
  --hero-grad: linear-gradient(135deg, #020617 0%, #1E1B4B 100%);
  --card-glow: 0 0 0 1px rgba(245,176,65,0.15), 0 20px 35px -8px black;
  --navbar-bg: rgba(10,10,26,0.98);
  --nav-link: #F1F5F9;
}
[data-theme="light"] {
  --bg-body: var(--light-bg);
  --bg-surface: #FFFFFF;
  --bg-card: var(--light-card);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --border: rgba(245,176,65,0.4);
  --hero-grad: linear-gradient(135deg, #FEF3C7 0%, #FFE0B5 100%);
  --card-glow: 0 0 0 1px rgba(245,176,65,0.3), 0 20px 35px -8px rgba(0,0,0,0.1);
  --navbar-bg: rgba(255,255,255,0.98);
  --nav-link: #0F172A;
}
html {
  overflow-y: scroll;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}
.container { max-width: 1300px; margin:0 auto; padding:0 24px; }
.section { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.section-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 700px; margin:0 auto; }
.gradient { background: linear-gradient(135deg, var(--gold), var(--magenta), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* CANVAS FONDO FIJO */
#avalonCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  background: var(--bg-body);
}

/* NAVBAR FIJA */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--navbar-bg);
  backdrop-filter: blur(15px);
  padding: 12px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(245,176,65,0.2);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--magenta), var(--cyan));
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.4s ease;
}
.logo:hover {
  background-position: 100% 0%;
}
.nav-menu { display: flex; list-style: none; gap: 1rem; align-items: center; }
.nav-link { color: var(--nav-link); text-decoration: none; font-weight: 500; transition: color 0.3s; font-size: 0.9rem; }
.nav-link:hover { color: var(--gold); }
.btn-panel { background: rgba(245,176,65,0.15); padding: 6px 16px; border-radius: 30px; color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: var(--transition); }
.btn-panel:hover { background: var(--gold); color: #0A0F1A; }
.theme-toggle { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--nav-link); }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background: var(--nav-link); margin: 3px 0; transition: 0.3s; }

/* HERO */
.hero {
  position: relative;
  background: var(--hero-grad);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 150px 0 60px;
  margin-top: 0;
}
.hero-overlay {
  position: absolute;
  inset:0;
  background: radial-gradient(circle at 20% 30%, rgba(245,176,65,0.1), transparent 60%);
}
.hero-container {
  position: relative;
  z-index:2;
  text-align: center;
  width: 100%;
}
.hero-content {
  max-width: 850px;
  margin: 0 auto;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-glow {
  background: linear-gradient(135deg, var(--gold), var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(245,176,65,0.3);
}
.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: #0A0F1A;
  box-shadow: 0 8px 20px rgba(245,176,65,0.4);
}
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(245,176,65,0.1); transform: translateY(-3px); }

/* ESTADÍSTICAS */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 2px;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-top: 5px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 0 10px;
}
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--magenta), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--card-glow);
}
.feature-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

/* PORTAFOLIO CARRUSEL */
.portfolio-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 60px;
  overflow: visible;
}
.portfolio-carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s var(--ease-smooth);
  padding: 15px 0;
}
.portfolio-item {
  flex: 0 0 calc(33.33% - 17px);
  max-width: calc(33.33% - 17px);
  background: var(--bg-card);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
}
.portfolio-item:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(245,176,65,0.25); border-color: var(--gold); }
.video-label { padding: 12px; background: rgba(0,0,0,0.3); }
.video-badge { background: linear-gradient(135deg, var(--gold), var(--magenta)); color: #0A0F1A; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; display: inline-block; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* SHORTS CARRUSEL */
.shorts-carousel-container, .channels-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 60px;
  overflow: visible;
}
.shorts-carousel-track, .channels-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease-smooth);
  padding: 15px 0;
}
.short-item {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  aspect-ratio: 9/16;
}
.short-item-content {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s var(--ease-smooth);
}
.short-item:hover .short-item-content { transform: translateY(-8px); border-color: var(--gold); }
.short-badge { position: absolute; top: 12px; right: 12px; background: linear-gradient(135deg, var(--gold), var(--magenta)); color: #0A0F1A; padding: 4px 10px; border-radius: 20px; font-size: 0.65rem; font-weight: 800; z-index: 5; }
.short-video { position: relative; width: 100%; height: 100%; background: #000; }
.short-video iframe { width: 100%; height: 100%; border: none; }

/* CANALES */
.channel-item {
  flex: 0 0 calc(20% - 16px);
  max-width: calc(20% - 16px);
  background: var(--bg-card);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.channel-item:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(245,176,65,0.25); border-color: var(--gold); }
.channel-avatar { position: relative; margin-bottom: 15px; }
.avatar-circle { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold), var(--magenta)); }
.channel-image { width: 100%; height: 100%; object-fit: cover; }
.channel-fallback { display: none; font-weight: bold; color: white; font-size: 1.2rem; }
.online-dot { position: absolute; bottom: 5px; right: 5px; width: 12px; height: 12px; background: #666; border-radius: 50%; border: 2px solid var(--bg-card); transition: all 0.5s; }
.online-dot.active { background: #00ff00; box-shadow: 0 0 8px #00ff00; }
.channel-name { font-weight: 700; font-size: 1rem; margin-bottom: 5px; text-align: center; }
.channel-subs { font-size: 0.7rem; color: var(--text-secondary); display: flex; align-items: center; gap: 5px; justify-content: center; }
.channel-hover { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(245,176,65,0.95); backdrop-filter: blur(4px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: var(--transition); color: #0A0F1A; font-weight: bold; }
.channel-item:hover .channel-hover { opacity: 1; }

/* BOTONES CARRUSEL GENERALES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
}
.carousel-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  transform: translateY(-50%) scale(1.15);
  color: #0A0F1A;
  box-shadow: 0 0 12px rgba(245,176,65,0.6);
}
.portfolio-carousel-container .carousel-btn.prev,
.shorts-carousel-container .carousel-btn.prev,
.channels-carousel-container .carousel-btn.prev {
  left: -10px;
}
.portfolio-carousel-container .carousel-btn.next,
.shorts-carousel-container .carousel-btn.next,
.channels-carousel-container .carousel-btn.next {
  right: -10px;
}
.reviews-carousel-container .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  right: auto;
}
.reviews-carousel-container .carousel-btn.next {
  left: auto;
  right: -20px;
}
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

/* INDICADORES */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}
.indicator.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--gold);
}

/* RESEÑAS CARRUSEL */
.reviews-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.reviews-carousel-track {
  position: relative;
  margin-bottom: 20px;
}
.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  transition: all 0.5s var(--ease-smooth);
  visibility: hidden;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.review-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  visibility: visible;
  z-index: 2;
  box-shadow: var(--card-glow);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  flex-shrink: 0;
}
.review-image { width: 100%; height: 100%; object-fit: cover; }
.review-fallback { display: none; align-items: center; justify-content: center; width: 100%; height: 100%; color: white; font-weight: bold; }
.review-channel-name { font-size: 1.1rem; margin-bottom: 4px; color: var(--gold); }
.review-channel-link { font-size: 0.75rem; color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
.review-channel-link:hover { color: var(--gold); text-decoration: underline; }
.review-text {
  font-style: italic;
  line-height: 1.6;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 6px var(--gold);
}

/* CONTACTO */
.contact-cta {
  text-align: center;
  padding: 40px 20px;
  margin: 20px 0 30px;
}
.contact-description {
  max-width: 650px;
  margin: 0 auto 25px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.5;
}
.btn-large { font-size: 1.1rem; padding: 14px 40px; }

/* WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  z-index: 99;
  text-decoration: none;
}
/* SOLO SE AGRANDA UN POCO, NO CAMBIA DE COLOR */
.whatsapp-float:hover { transform: scale(1.1); }

/* FOOTER */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 35px 0 20px;
  margin-top: 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-name h3 {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold), var(--magenta), var(--cyan));
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.4s ease;
  display: inline-block;
}
.footer-name h3:hover {
  background-position: 100% 0%;
}
.footer-name p { color: var(--gold); font-size: 0.7rem; letter-spacing: 1px; }
.social-links { display: flex; gap: 12px; }
.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}
.social-circle:hover {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: white;
  transform: translateY(-3px);
}
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 15px;
}
.copyright {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* ===== ESTILOS PARA FORMULARIOS (CORREGIDOS) ===== */
input, select, textarea, .form-control, .form-select, .form-input {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 10px 15px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  width: 100%;
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus, .form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,176,65,0.2);
}
select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}
.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}
.w-100 {
  width: 100%;
  display: block;
}
.btn-block {
  width: 100%;
}
.text-muted {
  color: var(--text-secondary);
  font-size: 0.8rem;
}
.day-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 14px;
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.day-chip.selected {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: #0A0F1A;
  border-color: transparent;
}
.day-chip.selected:hover {
  color: #FFFFFF !important;
}
.day-chip input {
  margin: 0;
  accent-color: var(--gold);
}
.day-chip:hover {
  border-color: var(--gold);
  background: rgba(245,176,65,0.1);
}
.editor-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 15px;
  margin-bottom: 12px;
  border-left: 4px solid #666;
  transition: 0.2s;
}
.editor-online {
  border-left-color: #2ecc71;
  background: rgba(46,204,113,0.05);
}
.video-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
}
.scroll-list {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 5px;
}
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}
.status-pending { background: rgba(245,176,65,0.2); color: var(--gold); }
.status-assigned { background: rgba(0,229,255,0.2); color: var(--cyan); }
.status-edited { background: rgba(156,39,176,0.2); color: var(--purple); }
.status-delivered { background: rgba(46,204,113,0.2); color: #2ecc71; }
.status-revision_requested { background: rgba(233,30,99,0.2); color: #E91E63; }
.status-rejected { background: rgba(233,30,99,0.4); color: #E91E63; }

/* ===== OTRAS MEJORAS ===== */
.tab-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.tab-btn {
  background: transparent;
  border: none;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 40px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: #0A0F1A;
  box-shadow: 0 2px 8px rgba(245,176,65,0.3);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Clase para los dashboards: espaciado superior uniforme */
.dashboard-main {
  padding-top: 100px;
}

/* ===== NUEVAS REGLAS PARA CONTADOR DE PLAZO Y MODAL DE RECHAZO ===== */
.deadline-timer {
  margin-top: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: 30px;
  padding: 4px 10px;
  display: inline-block;
  font-size: 0.75rem;
  font-family: monospace;
}
.timer-value {
  font-weight: bold;
  color: var(--gold);
}
.modal-reject {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.modal-reject-content {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
  max-width: 500px;
  width: 90%;
  border: 1px solid var(--gold);
  position: relative;
}
.close-reject {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gold);
}
.reject-btn {
  background: rgba(233,30,99,0.15);
  border: 1px solid #E91E63;
  color: #E91E63;
  border-radius: 60px;
  padding: 5px 12px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.75rem;
}
.reject-btn:hover {
  background: #E91E63;
  color: white;
}

/* ===== CORRECCIONES DE BORDES Y OUTLINES ===== */
.btn-outline, .btn-small, .btn-danger, .btn-primary, .btn-outline-danger {
    outline: none !important;
    box-shadow: none !important;
}
.btn-outline:focus, .btn-small:focus, .btn-danger:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(245,176,65,0.4) !important;
}
.btn-small {
    border-radius: 60px !important;
}
.btn-outline-danger {
    border: 1px solid #E91E63;
    background: transparent;
    color: #E91E63;
    border-radius: 60px;
    padding: 6px 14px;
}
.btn-outline-danger:hover {
    background: #E91E63;
    color: white;
}
/* Input file personalizado */
.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}
.custom-file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.custom-file-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--magenta));
    color: #0A0F1A;
    padding: 8px 20px;
    border-radius: 60px;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    width: 100%;
}
.custom-file-label:hover {
    transform: translateY(-2px);
    background: var(--gold);
}

/* ===== NUEVA CLASE PARA BOTONES SIN CONTORNO (SOLO TEXTO SUBRAYADO) ===== */
.btn-link-clean {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 8px 0 0 !important;
    text-decoration: none;
    color: var(--gold);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-link-clean:hover {
    color: var(--magenta);
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }
  .short-item { flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px); }
  .channel-item { flex: 0 0 calc(33.33% - 14px); max-width: calc(33.33% - 14px); }
  .portfolio-item { flex: 0 0 calc(50% - 13px); max-width: calc(50% - 13px); }
  .carousel-btn.prev { left: -10px; }
  .carousel-btn.next { right: -10px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-surface);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    border-top: 1px solid var(--border);
  }
  .nav-menu.active { left: 0; }
  .nav-link { margin: 10px 0; }
  .hero {
    min-height: auto;
    padding: 130px 0 50px;
  }
  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .hero-stats { gap: 30px; margin-top: 30px; }
  .stat-num { font-size: 1.8rem; }
  .stat-suffix { font-size: 1.4rem; }
  .short-item { flex: 0 0 100%; max-width: 100%; }
  .channel-item { flex: 0 0 calc(50% - 10px); max-width: calc(50% - 10px); }
  .portfolio-item { flex: 0 0 100%; max-width: 100%; }
  .shorts-carousel-container, .channels-carousel-container, .portfolio-carousel-container {
    padding: 0 30px;
  }
  .carousel-btn { width: 35px; height: 35px; font-size: 0.9rem; }
  .carousel-btn.prev { left: -5px; }
  .carousel-btn.next { right: -5px; }
  .reviews-carousel-container { padding: 0 30px; }
  .review-card { padding: 18px; }
  .section { padding: 40px 0; }
  .two-columns {
    grid-template-columns: 1fr;
  }
  table, thead, tbody, tr, th, td {
    display: block;
  }
  tr {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
  }
  td {
    text-align: right;
    position: relative;
    padding-left: 50%;
  }
  td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    font-weight: bold;
    text-align: left;
  }
  /* Corrección para lista de editores en móvil */
  .editor-card-horizontal {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-description { font-size: 0.95rem; }
  .channel-item { flex: 0 0 100%; max-width: 100%; }
  .btn { padding: 10px 20px; }
  .whatsapp-float { width: 44px; height: 44px; font-size: 1.5rem; }
  .stat-num { font-size: 1.3rem; }
  .stat-suffix { font-size: 1rem; }
  .carousel-btn.prev { left: -5px; }
  .carousel-btn.next { right: -5px; }
}