body, h1, p, a {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
    text-align: center;
}

#container {
    width: 100%;
    margin: 0 auto;
    background-color: #dcdcdc;
    padding: 30px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.title {
    font-weight: 900;
    color: #000;
    margin-top: 40px;
}

.access-link {
    margin: 50px 0;
}

.access-link a {
    color: #ff5200;
    text-decoration: underline;
    font-weight: 500;
}

.access-link a:hover {
    text-decoration: underline;
}

.offer-text {
    margin-top: 20px;
    font-weight: 500;
    color: #333333;
}
.offer-text-2 {
    margin-top: 20px;
    font-weight: 500;
    color: #696969;
    font-size: 15px;
}

#redirect-message {
    font-size: 14px;
    margin-top: 20px;
    color: #888888;
}

@media only screen and (max-width: 600px) {
    /* Adicione estilos específicos para dispositivos móveis se necessário */
    #container {
        max-width: 100%;
        padding: 10px;
    }
}

.content {
    max-width: 1600px; /* ou o valor desejado */
    margin: 0 auto; /* Centraliza o content dentro do container */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 20px;
    padding: 20px;
}

.text {
    flex: 0 0 60%;
    text-align: left;
}

.text h3 {
    text-align: left;
}

.image {
    flex: 0 0 35%;
    margin: 20px;
}

.image img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 700px) {
    .content {
        flex-direction: column;
        align-items: center; /* Centraliza os itens na direção da coluna */
    }

    .text {
        text-align: center;
    }

    .text,
    .image {
        flex: 0 0 100%;
    }
}

.centered-container {
    width: 100%;
    background-color: red;
    color: #fff;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row; /* Mantém a direção como linha (padrão) para dispositivos com tela maior que 600 pixels */ 
}

.left-content {
    flex-basis: 100%; 
    text-align: center;
    margin: 0 10px; 
}
.left-content h1 {
    font-weight: 900;
}

.right-content {
    flex-basis: 100%; 
    text-align: center;
    max-width: 350px;
    margin: 10px 10%;
}

#countdown {
    text-align: center;
    display: flex;
    justify-content: space-around;
    font-size: 24px;
    color: yellow;
}
#countdown h1 {
    font-weight: 900;
}
#countdown p {
    font-size: 12px;
}

.countdown-item {
    text-align: center;
}

#countdown div {
    text-align: center;
}
@media only screen and (min-width: 600px) {
    .left-content, .right-content {
        flex-basis: 50%; /* Define a largura para 48% para que fiquem lado a lado */
        text-align: center; /* Alinha o texto à esquerda */
    }

    .right-content {
        text-align: center; /* Alinha o texto à direita */
    }
}

.best-praises-section {
    background-color: #fff; /* Cor de fundo para a sessão */
    color: #000; /* Cor do texto */
    padding: 40px 0; /* Espaçamento interno */
}

.best-praises-section h2 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.praises-content {
    display: flex;
    flex-wrap: wrap;
    margin: 30px;
}

.advantages {
    flex-basis: 48%; /* Largura da div de vantagens */
}

.advantages h3 {
    font-size: 24px;
    font-weight: 900;
}

.advantages ul {
    list-style: none;
    padding: 0;
}

.advantages li {
    font-size: 18px;
    margin-bottom: 10px;
}

.ebook-image {
    flex-basis: 48%; /* Largura da div da imagem */
}

.ebook-image img {
    width: 100%;
    height: auto;
    margin: 30px 0;
}

@media only screen and (max-width: 700px) {
    .praises-content {
        flex-direction: column; /* Muda a direção para coluna em dispositivos móveis */
        align-items: center;
    }

    .advantages,
    .ebook-image img {
        margin-bottom: 20px; /* Adiciona espaço entre as seções em dispositivos móveis */
        width: 100%;
    }
}


.special-offer-section {
    background-color: #dcdcdc; /* Fundo cinza claro */
    color: #000; /* Cor do texto preto */
    padding: 70px 0; /* Espaçamento interno */
    text-align: center;
}

.special-offer-section h1 {
    font-size: 36px;
    font-weight: 900;
    margin: 30px 0;
}

.special-offer-section .discount {
    color: #ff0000; /* Cor vermelha para o valor com desconto */
    text-decoration: line-through; /* Adiciona o risco no meio do texto */
    margin-left: 10px; /* Adiciona espaço entre os valores */
}

.special-offer-section .green {
    color: green;
}

.special-offer-section h2 {
    font-size: 24px;
    margin: 20px 10px;
}
.special-offer-section .container img {
    max-width: 400px;
}

.green-button {
    display: inline-block;
    max-width: 60%;
    margin: 0;
    padding: 30px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    color: #fff; /* Cor do texto branco */
    background-color: green; /* Cor verde para o botão */
}
.green-button:hover {
    background-color: #006400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.rodape {
    display: flex;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.rodape a {
    text-decoration: underline;
    color: #fff;
}

.rodape a:hover {
    text-decoration: none;
}

.cookie-banner {
    background-color: #fff;
    box-shadow: 0px 0px 27px 0px rgba(0, 0, 0, 0.5); /* Esfumaçado */
    color: #333;
    position: fixed;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%);
    width:80%;
    padding: 20px;
    border-radius: 4px;
    align-items: center;
}

.cookie-banner.mostar {
    display: block;
}

.cookie-banner .cookie-txt {
    text-align: justify;
    display: flex;
    align-items: center;
}

.cookie-txt a {
    text-decoration: underline;
    color: green;
}
.cookie-banner button {
    background-color: green;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 0 20px;
    font-size: 18px;
    transition: .2s;
    border-radius: 3px;
}

.cookie-banner button:hover {
    transform: scale(0.95);
}
.button-zap {
    background-color: green;
    color: #fff;
    margin: 100px 0;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    transition: .2s;
    border-radius: 3px;
    align-items: center;
}

#contador {
    font-weight: 900;
    font-size: 25px;
}