.elementor-7 .elementor-element.elementor-element-e4d7872{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6f86f4e *//* Estilos otimizados para a logo */
.logo-container {
    height: 50px; /* Altura fixa para consistência */
    display: flex;
    align-items: center;
    padding: 5px 0; /* Espaçamento interno */
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 180px; /* Largura máxima para desktop */
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast; /* Melhora a nitidez */
    image-rendering: crisp-edges;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .logo-container {
        height: 40px; /* Reduz um pouco no mobile */
    }
    
    .logo-img {
        max-width: 150px; /* Largura menor para mobile */
    }
}

@media (max-width: 480px) {
    .logo-container {
        height: 35px; /* Versão ainda menor para celulares pequenos */
    }
    
    .logo-img {
        max-width: 130px;
    }
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Estilo para o crédito Criativos Conectado */
.credit-footer {
    background-color: #111827;
    padding: 1rem 0;
    text-align: center;
}

.credit-link {
    color: #c100e9;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: white;
}/* End custom CSS */