
/* Estilos do Popup */
/* Imagem no topo */
.popup-image img {
    max-width: 200px; /* Tamanho da imagem ampliado */
    height: auto;
    margin: 0 auto 10px; /* Espaço inferior */
    display: block; /* Centralização */
}

#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; /* Largura desktop */
    max-width: 90%; /* Limita a largura em dispositivos móveis */
    background-color: #0D72B8; /* Fundo do popup (cor amarela clara) */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra preta */
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out; /* Animação de fade-in */
    text-align: center;
}

/* Efeito de fade-in */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Título principal */
#popup h3 {
    font-family: 'Arial Black', sans-serif; /* Fonte semelhante ao primeiro exemplo */
    font-size: 40px;
    font-weight: 900;
    color: #FFFFFF; /* Cor branca para o título */
    margin-bottom: 10px;
}

/* Título OFF */
#popup h4 {
    font-family: 'Arial Black', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #F7F700; /* Cor vermelha para o título "OFF" */
    margin-bottom: 10px;
}

/* Subtítulo */
#popup p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #FFFFFF; /* Cor branca */
    margin-bottom: 20px;
}

/* Campo de input */
#couponInput {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 15px auto; /* Centralizado com margem superior */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    display: block; /* Garante alinhamento centralizado */
}

/* Botão de resgatar */
.popup-button {
     font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    width: 50%; /* Mesma largura do campo de email */
    max-width: 400px; /* Limita a largura no mobile */
    padding: 10px;
    background-color: #E6502B; /* Preto, fundo do botão */
    color: #FFFFFF; /* Branco, texto do botão */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.popup-button:hover {
    background-color: #F94979; /* Amarelo mais escuro ao passar o mouse */
}

/* Botão de fechar (X) */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent; /* Fundo transparente */
    color: #F94979; /* Cor amarela para o "X" */
    font-size: 24px; /* Tamanho do símbolo */
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.close-button:hover {
    transform: scale(1.2); /* Leve aumento ao passar o mouse */
}

.close-button:hover {
    transform: scale(1.2); /* Leve aumento ao passar o mouse */
}

/* Fundo Escurecido */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo transparente */
    z-index: 999;
    display: none;
}

/* Responsividade */
@media (max-width: 768px) {
    #popup {
        width: 100%;
        padding: 20px;
    }

    #couponInput, .popup-button {
        width: 90%; /* Largura maior em telas menores */
    }

    #popup h3 {
        font-size: 30px; /* Ajusta o título no mobile */
    }

    #popup p {
        font-size: 14px; /* Ajusta o subtítulo no mobile */
    }

    .close-button {
        font-size: 20px; /* Ajusta o tamanho no mobile */
    }
}

    