:root {
  /* 🎯 Base */
  --bg-main: #0B0B0F;
  --bg-secondary: #111118;
  --bg-tertiary: #1A1A24;

  /* ✨ Marca */
  --primary: #7C3AED;
  --primary-hover: #6D28D9;
  --primary-active: #5B21B6;

  --accent: #00BFFF;
  --accent-hover: #00A6D6;

  /* 🧾 Texto */
  --text-main: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #6B7280;

  /* 🧱 Bordes */
  --border: #1F1F2E;
  --border-light: #2A2A3C;

  /* 🚦 Estados */
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  /* 🌫️ Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);

  /* 💡 Glow (para efectos) */
  --glow-primary: 0 0 10px rgba(124, 58, 237, 0.6);
  --glow-accent: 0 0 10px rgba(0, 191, 255, 0.6);


  --font-title: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

}

body {
  background-color: var(--bg-main);
  font-family: var(--font-body);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
}


/* MENU */

.navbar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 100%;
  margin: auto;
  padding: 4px 20px;
  width: 90%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 6rem;
  text-align: center;

  margin-bottom: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: 0.2s;
}

.nav-links a:hover {
  text-shadow: 0 0 11px var(--accent-hover);
  border-bottom-style: solid;
  padding-bottom: 0.3rem;
  border-color: var(--accent-hover);
  transition: 0.2s;
  border-width: 2px;
  cursor: pointer;
}

/* Botón */
.btn-login {
  background: var(--primary);
  color: var(--text-main);
  border: none;
  padding: 4px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-login:hover {
  box-shadow: var(--glow-primary);
}

.hover_logo_h svg{
  width: 6.5rem;
  height: auto;
  position: absolute;
  top: 0;
}

.hover_logo_h svg path {
  fill: var(--text-main);
  transition: 0.2s;
}

.hover_logo_h:hover svg path{
  fill: var(--accent-hover);
  transition: 0.2s;
  filter: drop-shadow(0 0 11px var(--accent-hover));
  cursor: pointer;
}

.flecha_button{
  color: var(--text-main);
  display: inline-block;
}


.btn-login:hover .flecha_button {
  animation: moverFlecha 0.6s ease infinite alternate;
}

@keyframes moverFlecha {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(8px);
  }
}


/* INDEX */

.division{
  margin-top: 5rem;
}

.img_ppal1{
  width: 59rem;
  position: absolute;
  left: 49rem;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.35))
          drop-shadow(0 0 20px rgba(147, 51, 234, 0.25));
  z-index: 1;
} 


.title1_index, .title1_2_index, .title1_3_index{
  color: var(--text-main);
  z-index: 2;
}

.title1_index{
  font-size: 4rem;
  width: 38rem;
}

.title1_2_index, .title1_3_index {
  width: 21rem;
}


.colored_resalted{
  color: var(--info);
}

.sub_1_index{
  color: var(--text-muted);
}

.btn-second{
  background: var(--text-main);
  color: var(--bg-secondary);
  border: none;
  padding: 4px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-second:hover {
  box-shadow: var(--glow-accent);
}


.buttons_bg{
  width: 15rem;
}

.board_principal{
  margin-top: 5rem;;
}