/*
Theme Name: G4 Smart - Electric Template
Theme URI: https://g4electric.com.br
Description: Tema customizado para G4 Electric & G4 Smart Solutions. Foco em AdSense e Performance.
Author: Daniel Mello
Version: 2.0
*/
/* Configuração para Celulares (Telas menores que 768px) */
@media (max-width: 768px) {
    .sparky-welcome {
        right: 0px; /* Colado na borda */
        bottom: 10px;
    }

    .sparky-img {
        width: 150px; /* Reduz pela metade no celular */
        margin-right: -20px; /* Ajusta o corte lateral */
    }

    .sparky-bubble {
        max-width: 130px;
        font-size: 11px;
        margin-right: 20px;
        margin-bottom: 5px;
    }

    .sparky-bubble::after {
        right: 15px; /* Realinha a setinha no celular */
    }
}
/* Impede a rolagem horizontal indesejada */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Garante que imagens de logo não estourem o container no mobile */
.site-logo img, .navbar-brand img {
    max-width: 100%;
    height: auto;
}
<style>
/* Corrige a grade do topo para não estourar no mobile */
.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Isso faz os logos descerem se não houver espaço */
}

@media (max-width: 768px) {
    .logo-area, .logo-smart-area {
        flex: 1 1 100%; /* Ocupa a largura total no celular */
        text-align: center;
        margin-bottom: 10px;
    }
    
    .logo-electric, .logo-smart {
        max-width: 150px; /* Reduz o tamanho para caber na tela */
        height: auto;
    }

    /* Impede a rolagem horizontal */
    html, body {
        overflow-x: hidden;
    }
}
</style>