     :root {
        --morado-900: #903f94;
        --morado-titulo: #77267b;
        --morado-700: #6f2dbd;
        --morado-500: #a663cc;
        --morado-100: #efe7ff;
        --blanco: #ffffff;
        --negro: #1a1a1a;
    }
    
    body {
        background: var(--blanco);
        color: var(--negro);
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
    }
    /* Cambiar fuente del menú */
    
    .navbar .nav-link {
        font-family: 'Roboto', sans-serif;
        /* Cambia 'Roboto' por la fuente que quieras */
        font-size: 13px;
        /* Cambia este número por el tamaño que quieras */
        font-weight: 600;
        /* Opcional: grosor de la letra */
    }
    /* Navbar general */
    
    .navbar {
        background-color: var(--blanco);
        z-index: 2000;
    }
    /* Logo */
    
    .navbar-brand img {
        width: 80px;
        height: 80px;
    }
    /* Links del navbar */
    
    .navbar-nav {
        flex-wrap: wrap;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1rem;
        color: var(--negro) !important;
        padding: 1px 15px;
        white-space: nowrap;
    }
    
    .nav-link:hover {
        color: var(--morado-900) !important;
    }
    /* Botón hamburguesa */
    
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='purple' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    /* Menú colapsado (móvil) */
    
    .navbar-collapse {
        background-color: var(--blanco);
        border-radius: 0;
        padding: 10px;
    }
    /* Espaciado de los items en móvil */
    
    @media (max-width: 991px) {
        .nav-item {
            margin-bottom: 10px;
        }
    }
    /* CURSOS EGPP*/
    
    .egpp-section {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
    }
    
    .egpp-section h1 {
        font-size: 2em;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
        color: var(--morado-titulo);
    }
    
    .egpp-section p {
        font-size: 1.1em;
        color: #555;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .egpp-content {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .egpp-image {
        width: 100%;
        max-width: 700px;
        border-radius: 10px;
        opacity: 0.9;
    }
    
    .egpp-logo img {
        width: 300px;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .egpp-button {
        display: inline-block;
        margin: 5px auto 0 auto;
        /* centrado horizontal */
        background-color: #000;
        color: #fff;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        transition: background 0.3s;
        text-align: center;
    }
    
    .egpp-button-container {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }
    
    .egpp-button:hover {
        background-color: #444;
    }
    
    .egpp-button:hover {
        background-color: #444;
    }
    /* IMAGEN GIZ */
    
    .imagengiz {
        /* IMAGEN GIZ DE LA PAGINA WEB*/
        margin: 20px;
        /* margen igual en los 4 lados */
        /* o individualmente: */
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        /* Opcional: ajustar tamaño */
        width: 100%;
        height: auto;
        /* mantiene proporción */
    }
    /*REDES SOCIALES*/
    /* Barra social fija */
    
    .barra-social {
        position: fixed;
        top: 50%;
        right: 10px;
        /* Cambia a left: 20px; si la quieres al lado derecho */
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }
    /* Estilo general de los iconos */
    
    .barra-social .icono {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        background-color: var(--negro);
        /* morado */
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    /* Efecto hover */
    
    .barra-social .icono:hover {
        transform: scale(1.15);
        background-color: #9C27B0;
    }
    /* Ejemplo de colores específicos si quieres personalizar */
    
    .icono.facebook:hover {
        background-color: #1877f2;
    }
    
    .icono.instagram:hover {
        background-color: #e4405f;
    }
    
    .icono.twitter:hover {
        background-color: #000;
    }
    
    .icono.linkedin:hover {
        background-color: #0077b5;
    }
    
    .icono.tiktok:hover {
        background-color: #5b5c58;
    }
    
    .icono.youtube:hover {
        background-color: #e4405f;
    }
    /* FOOTER(ULTIMO BLOQUE) */
    
    .footer-grad {
        background: linear-gradient(90deg, var(--morado-700), var(--morado-900));
        color: var(--blanco);
    }