/* ================================
   Fontes Personalizadas
   ================================ */

/* Poiret One - Cabeçalhos (H1, H2) */
@font-face {
    font-family: 'Poiret One';
    src: url('fonts/PoiretOne-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Inter - Corpo de texto */
@font-face {
    font-family: 'Inter Custom';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Aplicação de Fontes */
h1, h2 {
    font-family: 'Poiret One', sans-serif;
}

body, p, li, a, span {
    font-family: 'Inter Custom', sans-serif;
}


/* ================================
   Estrutura de Layout
   ================================ */

body,
body.woocommerce {
    background-color: #eaeaea !important;
}

/* Define a largura máxima para o conteúdo principal */
.wp-site-blocks > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

/* === Correção de Scroll Horizontal em Mobile === */
html, body {
    overflow-x: hidden;
}

.wp-site-blocks, 
.wp-site-blocks > * {
    overflow-x: hidden;
}

img, iframe, table, pre, code, .wp-block {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
}
