:root {
    --naranja: #FF7A1A;
    --dark: #050505;
}

.index-vanguard {
    background-color: var(--dark);
    margin: 0;
    overflow: hidden;
    color: white;
    font-family: 'Inter', system-ui, sans-serif;
}

.video-bg-container {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, var(--dark) 100%);
    z-index: 1;
}

.hero-full {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.logo-hero {
    height: 40px;
    opacity: 0.9;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
}

.glitch-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.text-naranja {
    color: var(--naranja);
    text-shadow: 0 0 30px rgba(255, 122, 26, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-portal {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    color: black;
    padding: 20px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid white;
}

.btn-portal:hover {
    background: var(--naranja);
    border-color: var(--naranja);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 122, 26, 0.4);
}

.btn-icon {
    font-size: 1.5rem;
}

.index-footer {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.4;
}

/* Animación de entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content-center {
    animation: fadeInUp 1s ease-out;
}