/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://sobrematernidade.com.br/
 Description:  Tema filho do GeneratePress para personalizações.
 Author:       Ana Paula Colli & Maciel C.
 Author URI:   https://sobrematernidade.com.br/
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         child-theme
*/

/* --- Início das Personalizações --- */

/* 1. Definição da Fonte Personalizada (Very Vogue) */
@font-face {
    font-family: 'Vogue Title';
    src: url('fonts/nicky-laatz-very-vogue-text-italic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Very Vogue Display';
    src: url('fonts/nicky-laatz-very-vogue-display.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Very Vogue Display';
    src: url('fonts/nicky-laatz-very-vogue-display-italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

/* 2. Definição da Paleta de Cores */
:root {
    --cor-fundo: #f7f2ee;
    --cor-texto: #555555;
    --cor-titulos: #6a7a8c;
    --cor-acento-principal: #6a7a8c;
    --cor-acento-secundario: #eef2f5;
    --cor-borda-card: #fae8e5;
    --cor-poa: #e7e2de;
    --cor-links: var(--cor-acento-principal);
}

body {
    background-color: var(--cor-fundo);
    background-image: radial-gradient(var(--cor-poa) 1px, transparent 1px);
    background-size: 15px 15px;
    font-family: 'Libre Baskerville', serif;
    color: var(--cor-texto);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Vogue Title', serif;
    font-style: normal;
    color: var(--cor-titulos);
    letter-spacing: normal;
    font-weight: normal;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }

.entry-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.9em;
    line-height: 1.4;
}

a, a:visited {
    color: var(--cor-links);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--cor-titulos);
}

.entry-title a { color: var(--cor-titulos); }
.entry-title a:hover { color: var(--cor-links); }

.site-header {
    background-color: #ffffff;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.main-navigation {
    background-color: #ffffff;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 1em;
}

.main-navigation .inside-navigation {
    padding: 0;
}

.main-navigation .main-nav ul li a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
}

.site-description {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5em;
    color: var(--cor-titulos);
    font-weight: 500;
}

.separate-containers .widget,
.separate-containers .page-header,
.separate-containers .comments-area,
.separate-containers .paging-navigation,
.separate-containers .posts-navigation,
.separate-containers .site-main > article {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    padding: 1.5em;
}

.separate-containers .site-main > article {
    border-top: 5px solid var(--cor-borda-card);
}

.entry-meta {
    font-family: 'Roboto', sans-serif;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b3b3b3;
}

.widget-title {
    background-color: transparent;
    color: var(--cor-titulos);
    padding: 10px 0;
    border-radius: 0;
    position: relative;
    margin-bottom: 2em;
    text-align: center;
}

.widget-title::before,
.widget-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--cor-acento-secundario);
}

.widget-title::before { top: 0; }
.widget-title::after { bottom: 0; } 