
.cookie-popup {
    /* Estilos para o popup de cookies */
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateX(-0%) translateY(1%);;
    background-color: #f1f1f1;
    padding: 1em 0;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    justify-content: space-between;
    z-index: 10000;
    transition: 2s ease-in-out;
    opacity: .95;
    
}

.cookie-row {
    display: flex;
    width: 80%;
    height: 100%;
    margin: 0 auto;
    justify-content: space-between;
    max-width: 1200px;
    flex-direction: column;

}

.cookie-row p {
    width: 100%;
    font-family: 'Outfit', sans-serif;
}

.cookie-button-area {
    display: flex;
    gap: 1em;
    width: 100%;
    margin: 0 auto;
    max-width: 475px;
}


.cookie-popup button {
    background-color: var(--highlight);
    border: none;
    color: white;
    padding: .55em 0;
    width: 50%;
    font-family: 'Outfit', sans-serif;

}

.cookie-popup button:hover {
    background-color: var(--background);
    cursor: pointer;
}

@media (min-width: 800px) {

    .cookie-row {
        flex-direction: row;
    }

    .cookie-button-area {
        width: 40%;
    }

    .cookie-popup button {
        padding: .15em 0;
    }


}