/* Life Cred Full-Width CSS — Versão Cirúrgica (v3.4)
 * Esconde SOMENTE o header/footer do tema WordPress (Twenty Twenty-Five)
 * NÃO afeta elementos da landing page (.topo, .rodape, etc.)
 */

/* 1. Remove admin bar */
html { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

/* 2. Remove HEADER do tema WordPress — apenas seletores específicos do tema */
.wp-site-blocks > header,
.wp-site-blocks > .wp-block-template-part:first-of-type {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* 3. Remove FOOTER do tema WordPress — apenas seletores específicos do tema */
.wp-site-blocks > footer,
.wp-site-blocks > .wp-block-template-part:last-of-type {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* 4. Full-width containers — sem global reset */
html, body {
    height: 100%;
    overflow-x: hidden;
}

/* Containers responsivos */
@media (min-width: 0px) {
    .wp-site-blocks {
        padding: 0;
    }
}

/* Remove gutters do Twenty Twenty-Five */
.wp-block-template-part {
    margin: 0 !important;
    padding: 0 !important;
}

/* Garante visibilidade do conteúdo */
:root {
    --wp--style--block-gap: 0;
}

body.is-fullwidth {
    max-width: none;
    width: 100%;
}
