.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}
  
/* Modal */
.cookie-modal {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFF;
    padding: 10px;
    border-radius: 10px;
    color: #094DA4;
    width: 1326px;
    max-width: 100%;
    min-width: 300px;
    height: 80px;
    display: none;
    z-index: 9999;
    text-align: left;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-image {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    width: 81.321px;
    height: 65.227px;
    margin-left: 106px;
}

.cookie-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cookie-text h3 {
    margin: 0;
    text-align: center;
    font-family: Lobster;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.cookie-text p {
    margin: 5px 0 0;
    width: 810px;
    color: #094DA4;
    text-align: center;
    font-family: "space-grotesk";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 6px;
}

/* Botão Aceitar */
.btn-accept {
    background-color: #4CAF50;
    border: none;
    cursor: pointer;
    margin-left: 17px;
    color: #FFF;
    text-align: center;
    font-family: "space-grotesk";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 150px;
    height: 32.129px;
    flex-shrink: 0;
    border-radius: 30px;
    background: #F49811;
    margin-right: 148px;
}

.btn-accept:hover {
    border: 1px solid #F49811;
    background: #FFF;
    color: #F49811;
}

@media (max-width: 1358px) {
    .cookie-modal {
        width: 1219px;
    }
}

@media (max-width: 1231px) {
    .cookie-modal {
        width: calc(1326px * 0.8);
        height: calc(90px * 0.8);
    }

    .cookie-image {
        width: calc(81.321px * 0.8);
        height: calc(65.227px * 0.8);
        margin-left: calc(106px * 0.8);
    }

    .cookie-text p {
        width: calc(810px * 0.8);
        font-size: calc(12px * 0.8);
    }

    .btn-accept {
        width: calc(150px * 0.8);
        height: calc(32.129px * 0.8);
        margin-right: calc(148px * 0.8);
    }
}

@media (max-width: 1070px) {
    .cookie-modal {
        width: 975px;
        height: calc(90px * 0.8);
    }
}

@media (max-width: 999px) {
    .cookie-modal {
        width: 370px;
        height: 200px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: center;
    }

    .cookie-image {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .cookie-text p {
        width: 325px;
        height: 54px;
        color: #094DA4;
        text-align: center;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 12px;
    }

    .btn-accept {
        margin: 10px 0 0 0;
        width: 120px;
        height: 26px;
    }
}
