/* countdown */
.countdown {
    position: relative;
    text-align: center;
}

.countdown_wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    position: fixed; /* Mudei de absolute para fixed */
    top: 0; /* Ajustado para garantir que seja posicionado no topo */
    left: 50%;
    transform: translateX(-50%);
    padding: 7px;
    background-color: #FBB13E;
    border-radius: 3px;
    z-index: 1000; /* Adicionado para garantir que fique acima de outros elementos */
}

.countdown_wrapper .title {
    font-size: 0.875em;
    padding: 0px 5px;
}

.oferta {
    font-size: 0.5em;
    padding: 7px;
    background-color: #FBB13E;
    border-radius: 4px;
    font-weight: var(--weight-bold);
}

.countdown_wrapper div {
    display: flex;
}

.countdown_wrapper div > span {
    font-size: 1em;
    color: #eeeeee;
    font-weight: 600;
    text-align: left;
    line-height: 15px;
    font-weight: var(--weight-bold);
}

.countdown_wrapper div > span .countdown_legend {
    font-size: 0.65em;
    text-transform: uppercase;
}

.countdown_wrapper div > span .countdown_legend {
    font-size: 0.65em;
    text-transform: uppercase;
    color: #FFFFFF;
}

@media(max-width: 52em) {
    .countdown_wrapper {
        width: 100%;
        top: 0; /* Ajuste dinâmico para manter sempre no topo */
        padding: 0px;
    }

    .countdown_wrapper .title {
        font-size: 0.875em;
    }
}