/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Description: Tema filho personalizado do Twenty Twenty-Five
Author: Jamilla
Author URI: https://example.com
Template: twentytwentyfive
Version: 1.0
Text Domain: twentytwentyfive-child
*/

/* =========================
   ESTILOS GLOBAIS
========================= */

body {
    font-family: Georgia, serif;
    line-height: 1.8;
}

/* Área principal do conteúdo */
.wp-site-blocks {
    max-width: 1200px;
    margin: auto;
}

/* Títulos */
h1, h2, h3, h4 {
    line-height: 1.3;
    margin-top: 2rem;
}

/* Parágrafos */
p {
    margin-bottom: 1.5rem;
}

/* Links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Exemplo de sidebar fixa */
.sumario-fixo {
    position: sticky;
    top: 20px;
    font-size: 14px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}