
    /* Reset básico */
    body { margin: 0; padding: 0; }

    /* Estilos da Barra de Aviso */
    .apometria-alert-bar {
        background: transparent; /* Fundo controlado pelo Elementor */
        color: #f0f0f0; 
        font-family: "Montserrat", "Helvetica", "Arial", sans-serif;
        
        /* Tipografia Fluida */
        font-size: clamp(12px, 1.2vw, 18px); 
        
        font-weight: 400;
        text-align: center;
        padding: 8px 10px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        z-index: 9999;
        letter-spacing: 0.5px;
    }

    .icon-alert {
        margin-right: 6px;
        font-size: 1.1em; 
    }

    .highlight-text {
        color: #FFD700; /* Dourado */
        font-weight: 600;
    }

    /* Estilo do Contador */
    #countdown-timer {
        color: #FFD700;
        font-weight: 700;
        font-feature-settings: "tnum"; /* Números tabulares para não pular */
        font-variant-numeric: tabular-nums;
    }

    .highlight-white {
        color: #ffffff;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85em;
        background-color: rgba(255,255,255,0.15);
        padding: 3px 8px;
        border-radius: 4px;
        margin-left: 5px;
        white-space: normal; /* Permite quebra de linha se necessário no celular */
        display: inline-block; /* Garante que o padding funcione bem */
    }

    .separator {
        color: rgba(255,255,255,0.3);
        margin: 0 10px;
    }

    @keyframes pulse-gold {
        0% { opacity: 0.9; }
        50% { opacity: 1; text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
        100% { opacity: 0.9; }
    }

    .pulse-effect {
        animation: pulse-gold 2s infinite ease-in-out;
    }

    /* Ocultar elementos via JS quando expirar */
    .hidden {
        display: none !important;
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .apometria-alert-bar {
            font-size: 12px; /* Levemente menor para caber mais texto */
            padding: 10px 10px;
            line-height: 1.5;
        }
        
        .separator {
            display: none;
        }
        
        .mobile-block {
            display: block;
            margin-top: 5px;
        }

        .highlight-white {
            font-size: 11px; 
            margin-top: 2px;
        }
    }
