@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  background: #0a1428;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.landing {
  min-height: 100vh;
}

.header {
  background: #0a1550;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container img {
  width: 15%;
}
.header .container nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .container nav a {
  color: #ffffff;
  text-decoration: none;
}
.header .container nav .btn-login {
  background-color: #2A7CEB;
  padding: 5px 15px;
  border-radius: 10px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}

.hero {
  text-align: center;
  padding: 120px 0 80px 0;
  background: #0a1550;
}
.hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}
.hero p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  padding: 80px 0;
  background: #0a1428;
}
.features h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(42, 176, 232, 0.3);
}

.btn-primary, .btn-primary-large {
  display: inline-block;
  background: #2AB0E8;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.2s;
}
.btn-primary:hover, .btn-primary-large:hover {
  opacity: 0.85;
}

.btn-primary-large {
  padding: 18px 48px;
  font-size: 18px;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.badge-free {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(42, 176, 232, 0.15);
  color: #2AB0E8;
  border: 1px solid rgba(42, 176, 232, 0.3);
}

.cta {
  padding: 80px 0;
  background: #0a1550;
  text-align: center;
}
.cta h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}
.cta p {
  color: #94a3b8;
  font-size: 18px;
  margin-bottom: 40px;
}

.footer {
  background: rgb(8.3, 17.43, 66.4);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer p {
  color: #94a3b8;
  font-size: 14px;
}
.footer .footer-links {
  display: flex;
  gap: 24px;
}
.footer .footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}
.footer .footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .dashboard-content {
    margin-left: 0;
    padding: 20px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .url-container {
    flex-direction: column;
  }
  .color-input-group {
    flex-direction: column;
    align-items: stretch;
  }
}
.dashboard {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #0f1c35;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}
.sidebar .logo {
  font-size: 20px;
  font-weight: 600;
  padding: 32px 24px 24px;
  color: white;
}

.user-info {
  text-align: center;
  padding: 0 24px 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.user-info h3 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
  color: white;
}

.avatar {
  width: 64px;
  height: 64px;
  background: rgba(42, 176, 232, 0.2);
  border: 2px solid #2AB0E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
}

.plan-badge {
  display: inline-block;
  background: rgba(42, 176, 232, 0.2);
  color: #2AB0E8;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.sidebar-nav {
  padding: 0 16px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 4px;
  border-radius: 6px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-item:hover {
  background: rgba(42, 176, 232, 0.1);
  color: white;
}
.nav-item.active {
  background: rgba(42, 176, 232, 0.2);
  color: #2AB0E8;
}

.nav-icon {
  font-size: 18px;
}

.sidebar-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-logout {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: transparent;
  color: #94a3b8;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-logout:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.dashboard-content {
  flex: 1;
  margin-left: 280px;
  padding: 32px;
  overflow-y: auto;
  max-width: 1000px;
}

.config-section {
  display: none;
}
.config-section.active {
  display: block;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.section-header h1 {
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4b5563;
  transition: 0.3s;
  border-radius: 26px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2AB0E8;
}
input:checked + .slider:before {
  transform: translateX(24px);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-weight: 500;
  font-size: 14px;
}
.form-group input[type=text],
.form-group input[type=number],
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}
.form-group input[type=text]:focus,
.form-group input[type=number]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2AB0E8;
}
.form-group textarea {
  resize: vertical;
}

.color-input-group {
  display: flex;
  gap: 12px;
  align-items: center;
}
.color-input-group input[type=color] {
  width: 60px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
}
.color-input-group input[type=text] {
  flex: 1;
  font-family: "Courier New", monospace;
}

.switch-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}
.switch-group label {
  margin-bottom: 0;
}

.btn-save {
  background: #2AB0E8;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-save:hover {
  background: rgb(21.7330508475, 148.3516949153, 201.2669491525);
  transform: translateY(-1px);
}

.preview-container {
  background: rgba(0, 0, 0, 0.8);
  padding: 32px;
  border-radius: 8px;
  min-height: 400px;
}

.preview-overlay {
  max-width: 700px;
  margin: 0 auto;
}

.preview-opcion {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.preview-letra {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.preview-barra-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-barra-container {
  position: relative;
  width: 100%;
  height: 40px;
  background: rgba(16, 1, 38, 0.8);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.preview-barra {
  height: 100%;
  transition: width 0.5s ease;
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.preview-porcentaje {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.preview-votos {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.info-box {
  background: rgba(42, 176, 232, 0.05);
  padding: 16px;
  border-radius: 6px;
  border-left: 3px solid #2AB0E8;
  margin-top: 16px;
}
.info-box strong {
  color: #2AB0E8;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.info-box ul {
  list-style: none;
  padding: 0;
}
.info-box ul li {
  color: #94a3b8;
  font-size: 14px;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.info-box ul li::before {
  content: "•";
  color: #2AB0E8;
  position: absolute;
  left: 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}
.info-list li {
  color: #94a3b8;
  font-size: 14px;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.info-list li::before {
  content: "✓";
  color: #2AB0E8;
  position: absolute;
  left: 0;
  font-weight: bold;
}

code {
  background: rgba(42, 176, 232, 0.1);
  color: #2AB0E8;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.bot-status {
  background: rgba(42, 176, 232, 0.05);
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-indicator span {
  font-weight: 600;
  color: white;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.status-dot.active {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse 2s infinite;
}
.status-dot.inactive {
  background: #6b7280;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.btn-toggle {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  margin-top: 16px;
}
.btn-toggle.btn-danger {
  background: transparent;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.5);
}
.btn-toggle.btn-danger:hover {
  background: rgba(239, 68, 68, 0.1);
}
.btn-toggle.btn-success {
  background: #22c55e;
  color: white;
}
.btn-toggle.btn-success:hover {
  background: #16a34a;
}
.btn-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pack-icon {
  display: flex;
  gap: 15px;
  align-items: center;
}
.pack-icon .icon-function-primary {
  width: 40px;
  height: 40px;
}
.pack-icon .icon-function-secondary {
  width: 20px;
  height: 20px;
}

.card {
  background: #0f1c35;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.card h2 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.text-muted {
  color: #94a3b8;
  font-size: 13px;
  margin-top: 6px;
}

.url-container {
  display: flex;
  gap: 8px;
}
.url-container input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-family: "Courier New", monospace;
}

.btn-copy {
  background: rgba(42, 176, 232, 0.15);
  color: #2AB0E8;
  border: 1px solid rgba(42, 176, 232, 0.3);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-copy:hover {
  background: rgba(42, 176, 232, 0.25);
}

.help-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}
.help-box strong {
  color: white;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}
.help-box ul {
  list-style: none;
  padding: 0;
}
.help-box ul li {
  color: #94a3b8;
  font-size: 13px;
  padding: 3px 0 3px 16px;
  position: relative;
}
.help-box ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2AB0E8;
}

.sr-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sr-stats-header h2 {
  margin-bottom: 0;
}
.sr-stats-header select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.sr-stats-header select:focus {
  outline: none;
  border-color: #2AB0E8;
}

.sr-stats-totales {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.stat-total-card {
  flex: 1;
  background: rgba(42, 176, 232, 0.07);
  border: 1px solid rgba(42, 176, 232, 0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-total-numero {
  font-size: 36px;
  font-weight: 700;
  color: #2AB0E8;
}

.stat-total-label {
  font-size: 13px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sr-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sr-stats-col h3 {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.stats-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-posicion {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(42, 176, 232, 0.15);
  color: #2AB0E8;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.stat-info {
  flex: 1;
  min-width: 0;
}
.stat-info .stat-nombre {
  font-size: 13px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-info .stat-detalle {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

.stat-veces {
  font-size: 12px;
  font-weight: 600;
  color: #2AB0E8;
  white-space: nowrap;
  flex-shrink: 0;
}

.test-shoutout-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.test-shoutout-form .form-group {
  max-width: 320px;
}

.btn-test {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}
.btn-test:hover {
  background: rgba(255, 193, 7, 0.2);
}
.btn-test:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

select {
  background-color: #1a1a2e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}
select option {
  background-color: #1a1a2e;
  color: #ffffff;
}

.onboarding {
  min-height: 100vh;
  background: #0a1428;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.onboarding-container {
  max-width: 700px;
  width: 100%;
}
.onboarding-container h1 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: white;
}

/*# sourceMappingURL=styles.css.map */
