.elementor-kit-6{--e-global-color-primary:#F6F1ED;--e-global-color-secondary:#000000;--e-global-color-text:#574F4E;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Times New Roman";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* --- ESTADO INICIAL (TOPO DA PÁGINA) --- */

#logo-principal {
    opacity: 1; /* Visível */
    transition: opacity 0.3s ease; /* Animação suave */
}

#logo-scroll {
    opacity: 0; /* Invisível */
    position: absolute; /* Evita que o logo ocupe espaço e desalinhe o menu */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; /* Centraliza o logo no espaço do outro */
    transition: opacity 0.3s ease; /* Animação suave */
}


/* --- ESTADO DE ROLAGEM (QUANDO O JS ADICIONA A CLASSE) --- */

/* Quando a classe 'cabecalho-rolado' for adicionada ao header... */
.cabecalho-rolado #logo-principal {
    opacity: 0; /* Esconde o logo principal */
}

.cabecalho-rolado #logo-scroll {
    opacity: 1; /* Mostra o logo de scroll */
}

/* --- CORREÇÃO PARA IMAGENS DO EDITOR DE POSTS (GUTENBERG) --- */

/* Garante que o contêiner da imagem (figure) não se estique */
.elementor-widget-theme-post-content .wp-block-image {
    width: auto !important;
    max-width: 100%;
}

/* Força a imagem dentro do contêiner a se comportar corretamente */
.elementor-widget-theme-post-content .wp-block-image img {
    width: 100%; /* A imagem preenche o contêiner */
    height: auto; /* Mantém a proporção */
}

/* Regra para imagens alinhadas ao centro (o seu caso) */
.elementor-widget-theme-post-content .wp-block-image.aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Garante que a legenda, se houver, também centralize */
}

/* Regras opcionais para outros alinhamentos */
.elementor-widget-theme-post-content .wp-block-image.alignleft {
    margin-right: 2em;
    float: left;
}

.elementor-widget-theme-post-content .wp-block-image.alignright {
    margin-left: 2em;
    float: right;
}/* End custom CSS */