/* ===============================
   VARIAVEIS
================================== */
:root {
    --fonte-principal: 'Roboto', sans-serif;
    --cor-branca: #ffffff;
    --cor-laranja: #EB7013;
    --cor-laranja-hover: #EB7013;
    --cor-texto: #e0e0e0;
    --cor-cinza: #ccc;
    --cor-fundo-lista: #f9f9f9;
    --cor-hover-toggle: #EB7013;
    --sombra-texto: 3px 6px 4px #000000;
}


/* ===============================
   IMPORTAÇÃO DE FONTES
================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

#alert-title {
    font-family: var(--fonte-principal);
    font-weight: 800;
}


.alert-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.alert-box {
    width: 90%;
    max-width: 420px;
    background: var(--cor-branca);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--sombra-texto);
    position: relative;
    font-family: var(--fonte-principal);
}

.alert-close {
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    width: 30px;
    border-radius: 5px;
}

.alert-close:hover {
    background-color: var(--cor-laranja-hover);
    transform: translateY(-2px);
    box-shadow: var(--sombra-texto);
}


.alert-box h2 {
    margin: 0 0 8px;
}

.alert-box p {
    margin: 0 0 12px;
}

.alert-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.alert-ok {
    font-size: 20px;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: var(--cor-laranja);
    color: var(--cor-branca);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--fonte-principal);
    text-shadow: var(--sombra-texto);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.alert-box h2 {
    margin: 0 0 8px;
}

.alert-box p {
    margin: 0 0 12px;
}

.alert-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.alert-ok:hover {
    background-color: var(--cor-laranja-hover);
    transform: translateY(-2px);
    box-shadow: var(--sombra-texto);
}

.banner_cupom {
    width: 380px;
    border-radius: 8px;
}

@media(max-width: 420px) {

    .banner_cupom {
        width: 360px;
        border-radius: 8px;
    }

    .alert-box {
        display: flex;
        padding: 10px;
        flex-direction: column;
        align-items: center;

    }

}

@media(max-width: 439px) {

    .banner_cupom {
        width: 360px;
        border-radius: 8px;
    }

    .alert-box {
        display: flex;
        padding: 10px;
        flex-direction: column;
        align-items: center;

    }

}

@media(max-width: 380px) {

    .banner_cupom {
        width: 320px;
        border-radius: 8px;
    }

    .alert-box {
        display: flex;
        padding: 10px;
        flex-direction: column;
        align-items: center;

    }
}