:root {
    /* Colores Principales */
    --unap-primary: #046cae;
    --unap-secondary: #445267;
    --unap-success: #0faec0;
    --unap-info: #565fa7;
    --unap-warning: #fab736;
    --unap-danger: #b72763;
    --unap-light: #a1c2f3;
    --unap-dark: #083351;
}

.unap-gradient-primary-to-success {
    background: linear-gradient(135deg, var(--unap-primary), var(--unap-success));
    color: white;
}

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--unap-light);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 10px;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background-color: var(--unap-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-nexus {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.card-nexus:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.card-header-nexus {
    background-color: var(--unap-primary);
    color: white;
    padding: 1rem;
    font-weight: bold;
}

.card-body-nexus {
    padding: 1.5rem;
}

.nexus-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.nexus-list li:before {
    content: "•";
    color: var(--unap-success);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.nexus-excluded li:before {
    content: "✕";
    color: var(--unap-danger);
}

.risk-card {
    background-color: white;
    border-left: 4px solid var(--unap-warning);
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.btn-nexus {
    background-color: var(--unap-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-nexus:hover {
    background-color: #035d95;
}

.hero-nexus {
    padding: 3rem 0;
    text-align: center;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-title h1 {
    font-size: 2.5rem;
    margin: 0;
    margin-right: 0.5rem;
    color: white;
}

.nexus-logo {
    height: 3.5rem;
    margin-left: 0.5rem;
}

.section-header {
    color: var(--unap-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--unap-light);
}

.cartel {
    height: 85px;
}

#particles-js {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: -1; */ /* Asegura que las partículas estén detrás del contenido */
    background-color: var(--unap-primary-alpha);
}
