

.content-estudiantil {
    margin: 0 auto; /* Centra horizontalmente */
    margin-top: 30px;
    margin-bottom: 70px;
    text-align: center;
   /* background-color: #ffffff; */
}

.content-estudiantil {
    padding: 20px;
    text-align: center;
    /* max-width: 1000px; */
}

.content-estudiantil h1 {
    font-size: 42px;
    /* color: var(--color-texto-azul); */
    color: #343a40; /* Gris oscuro */
    letter-spacing: 1.2px; /* Espaciado entre letras */
    margin-top: 5px;
    margin-bottom: 45px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-estudiantil h2 {
    
    font-size: 36px;
    color:var(--color-negrosueve);
    
}

.content-estudiantil h3 {
    font-size: 24px;
    color:var(--color-negrosueve);
    
    
}






.circle-container {
    
    display: flex;        
    gap: 40px;
    
flex-wrap: wrap; /* Permite que los elementos se muevan a una nueva fila */
justify-content: center;
align-items: center;


}

.circle-menu {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* background: #ffffff; */
    /* background-color: #f9f9f9;  */
    background: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);

    /* border: 1PX dashed #9ccbfa; */
    border:none;
   
    /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* Sombra ligera */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}



.node{
    position: absolute;
    width: 90px;
    height: 45px;
    /* background-color: #78b6f4;
    color: #645f5f; */
    background: linear-gradient(to right, #f8fafc, #dbd9d9);
    /* background-color: #e8f0fe;  */
    /* Azul muy claro */
    color: #333; /* Texto oscuro */

    text-align: center;
    font-size: 12px;
    /* border: 1px #4640fbb3; */
    border: none;
    line-height: 1.2;
    border-radius: 7px;
    transform: rotate(var(--angle)) translate(130px) rotate(calc(-1 * var(--angle)));
    /* transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s; */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    z-index: 100;
   
}




.central {

    font-size: 14px;
}




.node:hover {
    /* background-color: #78b6f4; */
    background-color: #bbdefb; /* Azul más oscuro al pasar el mouse */
    /* color: #ffffff; */
    color: #000; /* Texto más visible */
    transform: rotate(var(--angle)) translate(140px) rotate(calc(-1 * var(--angle)));
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.circle-menu:hover {
    transform: scale(1.05); /* Efecto de agrandamiento */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra más fuerte */
    z-index: 100;
}


.central {
    width: 140px;
    height: 140px;
    /* background-color: #78b6f4; */
    background: linear-gradient(135deg, #78b6f4, #bbdefb); /* Degradado */
    color: #fff;
    border-radius: 50%;
    /* font-weight: 500; */
    text-align: center;
    
    /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); */
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);


    cursor: default;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    z-index: 10;
}

.circle-menu .central {
    font-family: 'Montserrat', sans-serif; /* Fuente moderna */
    font-size: 16px;
}


.node-msg{
    display:none;
}






@media (max-width: 768px) {
    .circle-container {
        flex-direction: column;
        gap: 20px;
    }
    .Xcircle-menu {
        width: 250px;
        height: 250px;
    }
    .Xnode {
        width: 80px;
        height: 40px;
        /* font-size: 10px; */
      
    }
    .Xcentral {
        width: 120px;
        height: 120px;
        /* font-size: 12px; */
    }
}