/* ESTILOS GENERALES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #060b14; /* Fondo azul super oscuro como la foto */
    color: #ffffff;
    overflow-x: hidden;
}

/* MENÚ DE NAVEGACIÓN */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #4f46e5; /* Azul claro / Morado */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #a1a1aa;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

/* BOTONES */
.btn-primary {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #4f46e5;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* SECCIÓN PRINCIPAL */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 80vh;
}

.hero-content {
    max-width: 50%;
}

.badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: #8b5cf6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

h1 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: #6366f1;
}

p {
    color: #a1a1aa;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    color: #71717a;
    font-size: 13px;
}

/* EFECTO DE LUZ DE FONDO (Derecha) */
.hero-image-placeholder {
    width: 40%;
    position: relative;
}

.glow-circle {
    width: 300px;
    height: 300px;
    background: #4f46e5;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}