    /* Estilos do Banner */
    .lgpd-banner,
    .lgpd-modal {
        font-family: Arial, sans-serif;
        font-size: 14px;
        position: fixed;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        transform: translateY(100%);
    }

    .lgpd-banner.show,
    .lgpd-modal.show {
        opacity: 1;
        transform: translateY(0);
    }

    .lgpd-banner {
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        /* Garante que 'display: flex' seja usado quando visível */
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background-color: rgb(34, 34, 34);
        /* Cor escura para contraste */
        color: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .lgpd-banner-text {
        display: flex;
        align-items: center;
        gap: 5px;
        flex: 1;
        line-height: 1.4;
        flex-wrap: wrap;
        padding: 10px;
        justify-content: center;
    }

    .lgpd-banner-text a {
        color: #3498db;
        text-decoration: underline;
    }

    .lgpd-banner-actions {
        display: flex;
        gap: 10px;
        margin-left: 20px;
    }

    .lgpd-banner-actions button {
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    #lgpd-btn-accept-all {
        background-color: #1a7a42;
        color: #fff;
        font-size: 15px;
    }

    #lgpd-btn-accept-all:hover {
        background-color: #15633a;
    }

    #lgpd-btn-manage {
        background-color: #bdc3c7;
        color: #2c3e50;
    }

    #lgpd-btn-manage:hover {
        background-color: #b0b5b9;
    }

    /* Estilos do Modal */
    .lgpd-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        /* Garante que 'display: flex' seja usado quando visível */
        justify-content: center;
        align-items: center;
        z-index: 9998;
    }

    .lgpd-modal-content {
        background: white;
        padding: 30px;
        border-radius: 8px;
        max-width: 500px;
        width: 90%;
        position: relative;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .lgpd-modal-content h3 {
        margin-top: 0;
        color: #2c3e50;
    }

    .lgpd-category {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .lgpd-category:last-child {
        border-bottom: none;
    }

    .lgpd-category-info {
        flex: 1;
        padding-right: 15px;
    }

    .lgpd-category-info strong {
        display: block;
        margin-bottom: 5px;
    }

    .lgpd-category-info p {
        margin: 0;
        font-size: 13px;
        color: #7f8c8d;
    }

    .lgpd-modal-actions {
        margin-top: 30px;
        text-align: right;
    }

    #lgpd-btn-save-preferences {
        background-color: #3498db;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    #lgpd-btn-save-preferences:hover {
        background-color: #2980b9;
    }

    /* Botão "Gerenciar cookies" no footer — touch-friendly em mobile */
    #open-lgpd-modal {
        touch-action: manipulation;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }