
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    min-height: 100vh;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

* img {
    filter: brightness(1);
}

.oferta-detalhes {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
}


.oferta-detalhes h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}


.oferta-detalhes img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}


.oferta-detalhes .descricao {
    font-size: 1.1rem;
    line-height: 1.6;

    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 5px solid #e2e2e2;
}


.oferta-detalhes .preco {
    font-size: 1.8rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
}

.oferta-detalhes .desconto {
    color: #696969;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 10px;
}

.oferta-detalhes .preco-original {
    font-size: 1.4rem;
    color: #696969;
    text-decoration: line-through;
}


.oferta-botao {
    display: inline-block;
    background: #0068d6;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.oferta-botao:hover {
    background: #004fa3;
}

.oferta-detalhes i{color:#fff;font-size:15px;margin-right:5px;padding:6px;background-color:#303030;border-radius:5px}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #252525;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    z-index: 1000;
}
.cookie-banner p {
    margin: 0;
    display: inline-block;
    padding-right: 10px;
}
.cookie-banner a {
    color: #1389e9;
    text-decoration: none;
}
.cookie-banner a:hover {
    text-decoration: underline;
}
.accept-btn {
    padding: 10px 20px;
    background-color: #2593ec;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 20px;
    font-size: 1.3rem;
}
.accept-btn:hover {
    background-color: #3373a7;
}
.cookie-banner.hidden {
    display: none;
}


@media (max-width: 768px) {
    .oferta-detalhes h1 {
        font-size: 2rem;
    }

    .oferta-detalhes .descricao {
        font-size: 1rem;
    }

    .oferta-detalhes .preco {
        font-size: 1.5rem;
    }

    .oferta-detalhes img {
        width: 70%;
        max-width: 100%;
    }

    .oferta-detalhes {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .oferta-detalhes h1 {
        font-size: 1.8rem;
    }

    .oferta-detalhes .descricao {
        font-size: 0.95rem;
    }

    .oferta-detalhes .preco {
        font-size: 1.4rem;
    }

    .oferta-botao {
        font-size: 1rem;
        padding: 10px 18px;
    }
}
