/* Wrapper del carrusel */
.ct-unete-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 20px;
}

/* Track */
.ct-unete-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;

    /* Ocultar scrollbars */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.ct-unete-track::-webkit-scrollbar {
    display: none;
}

/* Tarjetas */
.ct-unete-card {
    min-width: 32%;
    max-width: 32%;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 10px 8px 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}

.ct-unete-card h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.ct-unete-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #6c7a89;
    margin-bottom: 18px;
}

/* Botón */
.ct-unete-card a {
    background: #eef8e8;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    color: #4aa62a;
    width: fit-content;
}

/* Flechas (orejitas) */
.ct-unete-left,
.ct-unete-right {
    position: absolute;
    top: 40%;
    width: 54px;
    height: 54px;
    background: #e7edf5;
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(0,94,255,.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity .3s ease;
}

/*.ct-unete-right {
    right: -25px;
}

.ct-unete-left {
    left: -25px;
    opacity: 0;
    pointer-events: none;
}*/

/* Mostrar orejita izquierda cuando hay scroll */
/*.ct-unete-left.visible {
    opacity: 1;
    pointer-events: auto;
}*/

/* Flechas internas (similar a primer widget) */
/*.ct-unete-left svg,
.ct-unete-right svg {
    width: 22px;
    height: 22px;
    stroke: #1d2a37;
}*/


/* Contenedor de flechas al lado derecho */
.ct-unete-arrows {
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
}

/* Flechas / orejitas */
.ct-unete-arrow {
    width: 54px;
    height: 54px;
    background: #e7edf5;
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(0,94,255,.12);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity .3s ease, transform .2s ease;
}

/* Ocultar orejita izquierda inicialmente */
.ct-unete-arrow.left {
    opacity: 0;
    pointer-events: none;
}

/* Mostrar cuando hubo scroll */
.ct-unete-arrow.left.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Espacio derecho para que las flechas no tapen tarjetas */
.ct-unete-carousel {
    padding-right: 80px;
    position: relative;
}




