body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f7;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.promo, .bonus, .cta {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.promo h2, .bonus h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.promo p, .bonus p {
    font-size: 1.1rem;
    color: #555;
}

.promo ul, .bonus ul {
    list-style: none;
    padding: 0;
}

.promo ul li, .bonus ul li {
    background: #ecf0f1;
    margin: 10px 0;
    padding: 15px;
    border-left: 5px solid #3498db;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.buy-btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.buy-btn:hover {
    background: #219653;
}

.countdown, .buyers-left {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
    text-align: center;
    margin-top: 20px;
}

.small-text {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

.bonus {
    background: #ecf0f1;
    border: 2px solid #3498db;
}

.bonus h2 {
    color: #2c3e50;
}

.bonus ul li {
    background: #e0e7e9;
}

.cta {
    text-align: center;
    padding: 40px 20px;
}

.cta .buy-btn {
    max-width: 400px;
    margin: 0 auto;
}

/* Estilo do Pop-up Dinâmico */
#popUp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .promo h2, .bonus h2 {
        font-size: 1.5rem;
    }

    .promo p, .bonus p {
        font-size: 1rem;
    }

    .buy-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }

    #popUp {
        font-size: 0.9rem;
        padding: 10px 20px;
        bottom: 10px;
        right: 10px;
    }
}

.logo {
    max-width: 150px; /* Ajuste o tamanho conforme necessário */
    margin-bottom: 20px; /* Espaçamento abaixo da logo */
    display: block; /* Garante que a logo fique centralizada */
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-color: rgba(183, 195, 204, 0.226);
}

.ebook-cover {
    max-width: 150px;
    border-radius: 10px;
    margin-right: 10px;
}