#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f4f5f6;
    border-top: 2px solid #ccc;
    padding: 10px;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    height: 325px;
    z-index: 99999;
    display: none;
    box-sizing: border-box;
}

    #cookie-banner h3 {
        margin-top: 0;
        font: 15px;
        font-weight: bold;
    }

    #cookie-banner label {
        display: block;
        margin: 5px 0;
        font: 11px Verdana, Geneva, sans-serif;
    }

    #cookie-banner .buttons {
        margin-top: 15px;
    }

    #cookie-banner button {
        margin-right: 10px;
        padding: 8px 12px;
        border: none;
        cursor: pointer;
        background: #0073e6;
        color: #fff;
        border-radius: 4px;
    }

        #cookie-banner button:hover {
            background: #005bb5;
        }

.box {
    display: inline-block;
    margin-right: 10px; /* Espaço entre as divs */
}

.cookie-container {
    display: flex;
    align-items: flex-start;
}

.cookie-logo {
    width: 15%;
    text-align: center;
}

.cookie-tabs {
    width: 85%;
    padding-left: 20px;
}

.tab-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

    .tab-menu li {
        cursor: pointer;
        padding: 8px 12px;
        background: #eee;
        border-radius: 4px;
        border: 1px;
        border-style:dotted;
    }

        .tab-menu li:hover {
            background: #ddd;
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }
