.banner__hotsale {
    width: 100%;
    height: auto;
    overflow: hidden;
    max-width: 100%;
    padding: 3rem 0 0;
}

.banner__hotsale img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.container__hotsale__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container__counter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
}

.title__counter {
    font-size: 1.5rem;
    position: relative;
    margin: 0;
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 600;
    margin-top: 2rem;
    color: #fff;
}

.units,
.clock {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.clock {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    gap: 30px;
}

.content__hour,
.content__minute,
.content__second,
.content__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content__hour span,
.content__minute span,
.content__second span,
.content__day span {
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 600;
    color: #fff;
}

.numer__text {
    font-size: 3.875rem;
    will-change: transform;
}

.units__legend {
    font-size: 1.5rem;
}

#clock:after {
    content: "";
    display: block;
    clear: both;
}

span.turn {
    animation: turn 0.7s ease forwards;
    font-size: 3.875rem;
}

@keyframes turn {
    0% {
        transform: rotateX(0deg)
    }

    100% {
        transform: rotateX(360deg)
    }
}

.container__terminos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 0;
    max-width: 1280px;
}

.title__terminos {
    font-size: 1.5rem;
    position: relative;
    margin-bottom: 1em;
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 600;
}

.banner__desktop {
    display: block;
}

.banner__mobile {
    display: none;
}

.container__promo {
    padding: 1rem 0;
}



.content__promo {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    max-height: 300px;
    position: relative;
    height: 300px;
}


.content__promo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.button__promo {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.content__promo .content__title {
    font-size: 1.2rem;
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 600;
    color: #fff;
}


.text__costodel {
    text-decoration: line-through;
    font-size: 1.2rem;
    font-family: "Noto Sans SC", sans-serif;
    color: #fff;
}

.text__costo {
    font-size: 1.2rem;
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 500;
    color: #FFF;
}

.text__costo span {
    font-size: 1.5rem;
}

.container__pago {
    display: none;
}

.title__desglose {
    font-size: 0.875rem;
    color: #1c1c1c;
    margin-bottom: 0.5em;
    display: inline-block;
    width: 100%;
    font-weight: 600;
}

.content__oferta {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.header__compra {
    padding: 0 !important;
}

.text__resumen {
    font-size: 1rem;
    font-family: "Noto Sans SC", sans-serif;
    font-weight: 600;
    color: #000;
}

.link__terminos {
    text-decoration: none;
    font-size: 1rem;
    font-family: "Noto Sans SC", sans-serif;
    color: #000;
}

@media screen and (max-width: 1280px) {
    .banner__hotsale {
        padding: 8rem 0 0;
    }

    .container__terminos {
        padding: 3rem 2.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .container__terminos {
        padding: 3rem 2rem;
    }

    .banner__hotsale {
        padding: 10rem 0 0;
    }
}

@media screen and (max-width:820px) {
    .banner__hotsale {
        padding: 6rem 0 0;
    }
}

@media screen and (max-width: 768px) {
    .container__terminos {
        padding: 3rem 1.5rem;
    }

    .banner__desktop {
        display: none;
    }

    .banner__mobile {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .banner__hotsale {
        padding: 3rem 0 0;
    }

    .units,
    .clock {
        gap: 20px;
    }

    .container__terminos {
        padding: 3rem 1.5rem;
    }

    .banner__desktop {
        display: none;
    }

    .banner__mobile {
        display: block;
    }

    .numer__text {
        font-size: 2rem;
    }

    .units__legend {
        font-size: 1rem;
    }

    .text__costo {
        font-size: 1rem;
    }

    .text__costo span {
        font-size: 1.5rem;
    }

    .content__promo .content__title {
        font-size: 1.5rem;
    }

    .column {
        padding: 0 1rem;
    }

    .container__promo .row {
        width: 100%;
        margin: 0;
    }

    .container__promo {
        padding: 0;
    }

    .button__promo {
        top: 77%;
    }

    .content__promo {
        height: 250px;
    }
}