/* Timeline */
.tcm-timeline-wrapper{
    position:relative;
    width:100%;
    overflow-x:auto;
    overflow-y:visible;
    padding-bottom:40px;

    /* permitir scroll por tacto en iOS */
    -webkit-overflow-scrolling:touch;

    /* ocultar scrollbar visualmente */
    scrollbar-width:none;           /* Firefox */
    -ms-overflow-style:none;        /* IE/Edge antiguo */
}
.tcm-timeline-wrapper::-webkit-scrollbar{
    display:none;                   /* Chrome/Safari */
}

.tcm-items{
    display:flex;
    gap:60px;
    position:relative;
    width:max-content;  /* fuerza que el contenido se extienda horizontalmente */
}

.tcm-item{
    text-align:center;
    cursor:pointer;
    position:relative;
}

.tcm-image{
    width:180px;
    border-radius:12px;
    display:block;
    margin:auto;
}

.tcm-title{
    margin-top:10px;
    font-weight:600;
    font-size:16px;
}

.tcm-dot{
    width:22px;
    height:22px;
    background:#4b4bff;
    border-radius:50%;
    margin:10px auto 0;
    position:relative;
    z-index:2;
}

/* Línea conectando puntos: justo por el centro de los puntos */
.tcm-line{
    position:absolute;
    left:0;
    bottom:27px; /* pasa por el centro de los puntos */
    width:200%;
    height:4px;
    background:#4b4bff;
    z-index:1;
}

/* Popup */
.tcm-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:9999;
}

.tcm-popup-content{
    background:#fff;
    padding:30px;
    max-width:500px;
    border-radius:12px;
    position:relative;
    z-index:10000;
}

.tcm-popup-close{
    position:absolute;
    top:10px;
    right:15px;
    font-size:20px;
    background:none;
    border:none;
    cursor:pointer;
}

.tcm-popup-btn-close{
    margin-top:18px;
    padding:8px 18px;
    border-radius:20px;
    border:none;
    background:#4b4bff;
    color:white;
    cursor:pointer;
}
