.modal-timer {
    z-index: 200000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.modal-timer.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: radial-gradient(circle, rgba(255, 173, 84), rgba(255, 133, 2) 100%);
    color: #000;
    width: 90%;
    max-width: 700px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 450px;
}

.modal-header-timer {
    font-family: 'roboto-bold';
    color: white;
    background-color: #000;
    font-size: 44px;
    font-weight: 900;
    margin-top: 10px;
    padding-left: 80px;
    display: block;
    letter-spacing: 0.10em;
    word-spacing: 0.10em;
    width: calc(100% + 50px);
    margin-left: -20px;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: left;
    box-sizing: border-box;
}

.modal-body {
    margin: 15px 0;
    font-size: 18px;
    text-align: left;
    padding-right: 120px;
}

.one {
    text-align: center;
    font-family: 'Roboto-ligth';
    font-size: 30px;
    line-height: 1;
}

.two {
    text-align: center;
    margin-top: 28px;
    font-family: 'Roboto-bold';
    line-height: 1.2;
    font-size: 22px;
}

.modal-footer {
    align-items: center;
    border-top: none;
    margin-top: -30px;
}

.btn-whatsapp {
    display: inline-block;
    
}

.btn-whatsapp img {
    margin-bottom: 20px;
    width: 300px;
    height: auto;
    margin-right: 220px;
    border: 2px solid white !important;
    border-radius: 32px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.alien-img {
    width: 270px;
    height: 420px;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.logo-timer {
    width: 200px;
    height: auto;
    text-align: left;
    margin-left: 20px;
}

.footer-text {
    font-size: 10px;
    color: #000;
    margin-top: 5px;
    text-align: center;
    font-style: 'roboto';
    padding-right: 140px;
}

@media (max-width: 600px) {
    .modal-content {
        width: 90%;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .modal-header-timer {
        font-size: 20px;
        width: 100%;
        text-align: center;
        margin: 10px 0;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .modal-body {
        font-size: 16px;
        text-align: center;
        padding: 0 10px;
    }

    .modal-body .one,
    .modal-body .two {
        margin: 10px 0;
        padding: 0 10px;
    }

    .modal-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }

    .btn-whatsapp img {
        width: 220px;
        height: auto;
        display: block;
        margin: 10px auto;
    }

    .footer-text {
        font-size: 12px;
        text-align: center;
        margin-top: 10px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .alien-img {
        display: none;
    }

    .logo-timer {
        width: 120px;
        height: auto;
        margin-bottom: 10px;
    }

    .close-modal {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        cursor: pointer;
    }
}

