.new-container-plan {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.plan-title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #95DB32;
    text-transform: uppercase;
}

.current-plan-card-title {
    display: flex;
    align-items: baseline;
}

.plan-card-title {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #95DB32;
}

.plan-card-title-ligth {
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 18px;
    color: #95DB32;

}

.plan-details-new {
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #E0E4D3;
}

.plan-details-new svg {
    fill: #95DB32;
}

.tu-plan-container {
    display: flex;
    flex-direction: column;
    width: 680px;
    opacity: 1;
    /* gap: 24px; */
    border-radius: 16px;
    padding: 40px;
    background-color: #10150A;
}

.current-plan-card,
.current-plan-time-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    /* height: 448px; */
    opacity: 1;
    border-radius: 16px;
    background-color: #32362A;
    padding: 20px;
}

.plan-time-card-separation {
    margin-top: 24px;
}

.plan-card-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #E0E4D3;
}

.plan-card-text-green {
    color: #ADD37C;
}

.plan-card-text-green svg {
    width: 15px;
}

.date-text-group {
    display: flex;
    flex-direction: column;
}

.change-plan {
    width: 190px;
    height: 40px;
    opacity: 1;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #203700;
    background: #95DB32;
}

.cancel-plan {
    width: 190px;
    height: 40px;
    opacity: 1;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #95DB32;
    background: transparent;
}

/* LISTA DE FEATURES */

.features-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.features-container li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #e0e0e0;
    font-size: 1rem;
}

.features-container li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2395DB32"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

.features-container li strong {
    color: #E0E4D3;
    font-weight: 600;
}

/* Versión alternativa con animación */
.features-container.animated li:before {
    animation: checkFadeIn 0.3s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes checkFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* BArra de progreso  */
.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #10150A;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar {
    height: 100%;
    background-color: #95DB32;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.time-remaining {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 10px 0;
}

.time-remaining .remaining-hours {
    font-family: 'Montserrat';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #95DB32;
    margin: 20px 0;
}

.time-remaining .total-hours {
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 20px 0;
}

.end-card-text {
    font-family: 'Raleway';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #ADD37C;
}

/* Boton free */
.change-plan-from-free {
    width: 388px;
    height: 40px;
    opacity: 1;
    gap: 8px;
    padding: 10px 24px;

    font-family: 'Montserrat';
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    background-color: #95DB32;
    color: #203700;
}

.free-plan-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content-plan-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


@media (max-width: 1023px) {
    .content-plan-new {
        width: 320px;
        padding: 10px;
    }

    .tu-plan-container {
        width: 320px;
        margin-top: 40px;
        padding: 5px;
    }

    .plan-card-title {
        font-size: 16px;
    }

    .plan-card-title-ligth {
        font-family: 'Montserrat';
        font-size: 14px;
    }

    .plan-card-text {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
    }

    .change-plan .cancel-plan {
        width: 100%;
    }

    .time-remaining .remaining-hours {
        font-size: 16px;
    }

    .end-card-text {
        font-size: 14px;
    }

    .plan-details-new{
        font-size: 14px;
    }

}