.cookie-banner {

    position: fixed;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 40px);

    max-width: 1200px;

    background-color: rgba(17, 17, 17, 0.95);

    color: #ffffff;

    padding: 18px 22px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    z-index: 999999;

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* TEXTO */

.cookie-texto {

    font-size: 0.95rem;

    line-height: 1.5;

    color: #f5f5f5;
}

.cookie-texto a {

    color: #00d26a;

    font-weight: 600;
}

/* BOTÃO */

.cookie-btn {

    min-width: 130px;

    height: 46px;

    border: none;

    border-radius: 12px;

    background-color: #00d26a;

    color: #111111;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

.cookie-btn:hover {

    opacity: 0.92;

    transform: translateY(-1px);
}

/* MOBILE */

@media (max-width: 768px) {

    .cookie-banner {

        flex-direction: column;

        align-items: flex-start;

        bottom: 15px;

        width: calc(100% - 20px);

        padding: 18px;
    }

    .cookie-btn {

        width: 100%;
    }
}