.cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;

        background: #000;
        color: #fff;

        padding: 22px 32px;
        /* ⬅️ mais espaço */
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;

        z-index: 9999;
        font-size: 1rem;
        /* ⬅️ texto maior */
}

.cookie-consent p {
        margin: 0;
        max-width: 900px;
        /* ⬅️ não estica demais */
        line-height: 1.6;
}

.cookie-consent a {
        color: #f1c40f;
        text-decoration: underline;
}

.cookie-consent button {
        padding: 10px 20px;
        /* ⬅️ botão maior */
        font-size: 0.95rem;
        font-weight: 600;
        white-space: nowrap;
}

@media (max-width: 768px) {
        .cookie-consent {
                flex-direction: column;
                align-items: flex-start;
                padding: 18px 20px;
                font-size: 0.95rem;
        }

        .cookie-consent p {
                max-width: 100%;
        }

        .cookie-consent button {
                width: 100%;
                text-align: center;
        }
}