/* Override CSS - Correções mínimas para garantir funcionamento */

/* Garantir que elementos Elementor sejam visíveis */
.elementor-element {
    opacity: 1 !important;
}

/* Garantir que o conteúdo seja visível */
body * {
    visibility: visible !important;
}

/* Correções específicas para fontes que podem não carregar */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Garantir que imagens sejam responsivas */
img {
    max-width: 100%;
    height: auto;
}

