

/*? Definimos la linea vertical central */
#timeLine {
    content: ' ';
    position: absolute;
    background: white;
    width: 3px;
    left: 50%;
}

.child {
    position: relative;
    margin: 20px;
    opacity: 1;
}


/*? PARES -- hacemos que los hijos o elementos pares de nuestro JSON, se alineen a la izquierda*/
.child:nth-child(odd) {
    float: left;
    background-color: rgba(255, 255, 255, 0.23);
    padding: 10px;
    width: 450px;
    /*? efecto GLASS */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255,255, 0.3);
}

/*? Ponemos los circulos en el centro de la linea para los HIJOS PARES*/
.child:nth-child(odd)::before {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: -29px;
}

/*? IMPARES -- hacemos que los hijos o elementos IMPARES de nuestro JSON, se alineen a la derecha*/
.child:nth-child(even) {
    float: right;
    background-color: rgba(255, 255, 255, 0.23);
    padding: 10px;
    width: 450px;
    /*? efecto GLASS */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255,255, 0.3);
}


/*? Circulos PARES */
.child:nth-child(even)::before {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    right: -29px;
}

/*? Rayas horizontales */
.child:nth-child(even)::after {
    content: ' ';
    position: absolute;
    background: white;
    width: 10px;
    height: 3px;
    right: -10px;
    top: 20px;
}

.child:nth-child(odd)::after {
    content: ' ';
    position: absolute;
    background: white;
    width: 10px;
    height: 3px;
    left: -10px;
    top: 20px;
}

.description {
    width: 300px;
}

a {
    font-size: 1.0em;  
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

/*? ANIMACION DEL TIMELINE ---------------------------------------------------- */

._show{
    opacity: 1;
    animation: __show 1s cubic-bezier(.99,-.7,.2,1.9);
}

._hide{
    opacity: 0;
    animation: __hide 1s cubic-bezier(.99,-.7,.2,1.9);
}

@keyframes __show {
    0% { transform: translateY(500px); opacity: 0; }
    100% { transform: translateY(0px); opacity: 1; }
}

@keyframes __show {
    0% { transform: translateY(0px); opacity: 1; }
    100% { transform: translateY(500px); opacity: 0; }
}


/*? PRESENTACION PROYECTOS PARA LOS MOVILES */
.box01 {
    /*? efecto GLASS */

    position: relative;
    width: 410px;
    height: 354px;
    transition: 200ms;
    margin: 100px auto 0; /* Esto centra horizontalmente */
    
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255,255, 0.3);
}

.box01 img{
    display: flex;
    position: relative;
    margin: 0 auto;
    justify-content: center; /* Esto centra verticalmente */
    align-items: center;
    margin: 8px auto;
}

.box01 P{
    margin-left: 3em;
    margin-right: 3em;
}

.box02 {
    position: relative;
    width: 410px;
    height: 654px;
}

.box03 {
    position: relative;
    width: 410px;
    height: 500px;
    margin-bottom: 100px;
}