* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    
    /* Fundo desktop */
    background-image: url('imgc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Overlay escuro */
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Ajuste a opacidade aqui (0.35 = mais claro, 0.6 = mais escuro) */
    z-index: 1;
}

/* Fundo mobile */
@media (max-width: 768px) {
    body {
        background-image: url('imgm.png');
    }
}

/* Banner de Cookies */
#cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 42px 40px 38px;
    z-index: 999999;
    display: none;
}

/* Resto do CSS (botões, textos, etc.) */
#close {
    position: absolute;
    right: 18px;
    top: 16px;
    background: none;
    border: none;
    color: #2E7EF7;
    font-size: 20px;
    cursor: pointer;
}

h2 {
    font-size: 26px;
    color: #111;
    margin-bottom: 14px;
    font-weight: 700;
}

p {
    max-width: 900px;
    color: #222;
    font-size: 16px;
    line-height: 1.55;
}

a {
    color: #2E7EF7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#accept {
    margin-top: 28px;
    background: #2E7EF7;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(46, 126, 247, 0.35);
    transition: all 0.3s;
}

#accept:hover {
    background: #1b68df;
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 28px 22px 32px;
    }
    h2 { font-size: 22px; }
    p { font-size: 15px; }
}