/* Fundo personalizado */
        body {
            background-image: url('../images/thebillionairebrainwave_mobile.png');
            margin: 0;
            padding: 0;
            min-height: 100vh;
            background-size: 100% auto; /*cover*/
            background-position: 0 0; /*center*/
            background-repeat: no-repeat;
            background-attachment: fixed;
            font-family: -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* Overlay para melhor legibilidade */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        /* Conteúdo principal */
        .main-content {
            padding: 20px;
            color: white;
            text-align: center;
        }

        /* Estilo BASE (MOBILE FIRST) para o modal */
        #cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            border-radius: 12px 12px 0 0;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            max-width: 100%;
            display: none;
        }

        #cookie-consent h2 {
            margin: 0 0 10px 0;
            font-size: 18px;
            color: #333;
            font-weight: 600;
        }

        #cookie-consent p {
            margin: 0 0 15px 0;
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        /* MOBILE - Botões em bloco */
        #cookie-consent .buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        #cookie-consent .btn {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        #cookie-consent .btn-accept {
            background: #000;
            color: white;
        }

        #cookie-consent .btn-reject {
            background: transparent;
            color: #000;
            border: 1px solid #ddd;
        }

        /* DESKTOP - Layout Especial */
        @media (min-width: 768px) {

          body {
            background-image: url('../images/thebillionairebrainwave_desktop.png');
          }
            #cookie-consent {
                width: 600px;
                left: 20px;
                right: auto;
                bottom: 20px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                gap: 20px;
                padding: 15px 25px;
                animation: slideUp 0.5s ease-out;
            }

            #cookie-consent .content {
                flex: 1;
            }

            #cookie-consent h2 {
                margin-bottom: 5px;
                font-size: 16px;
            }

            #cookie-consent p {
                margin-bottom: 0;
                font-size: 13px;
            }

            #cookie-consent .buttons {
                flex-direction: column;
                width: 150px;
                gap: 8px;
            }

            #cookie-consent .btn {
                padding: 10px;
                font-size: 13px;
            }

            @keyframes slideUp {
                from {
                    transform: translateY(100px);
                    opacity: 0;
                }

                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }
        }