/*
 Theme Name:   Chronus Child
 Template:     chronus
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* O teu CSS personalizado entra abaixo desta linha */

:root {
	--primary-color: #6694eb;
	--secondary-color: #4c3fab;
	--tertiary-color: #3122a1;
	--accent-color: #91cc56;
	--highlight-color: #239999;
	--light-gray-color: #f0f0f0;
	--gray-color: #999;
	--dark-gray-color: #303030;
	--text-color: #303030;
	--medium-text-color: #666;
	--light-text-color: #999;
	--page-background-color: #fff;
	--dark-border-color: #303030;
	--medium-border-color: rgba(0, 0, 0, 0.15);
	--light-border-color: rgba(0, 0, 0, 0.10);
	--link-color: #2a6099;
	--link-hover-color: #303030;
	--button-color: #6694eb;
	--button-hover-color: #303030;
	--navi-color: #303030;
	--navi-hover-color: #6694eb;
	--navi-submenu-color: #6694eb;
	--navi-submenu-text-color: #fff;
	--navi-submenu-hover-color: rgba(255, 255, 255, 0.5);
	--navi-submenu-border-color: rgba(255, 255, 255, 0.1);
	--title-color: #303030;
	--title-hover-color: #6694eb;
	--widget-title-color: #303030;
	--widget-title-hover-color: #6694eb;
	--text-font: "Newsreader", arial, helvetica, sans-serif;
	
	/* Definições oficiais da Poppins nas variáveis do tema */
	--title-font: 'Poppins', sans-serif;
	--navi-font: 'Abril Fatface', serif; /* ALTERADO: Recupera a fonte do tema pai */
	--widget-title-font: 'Poppins', sans-serif;
	--title-font-weight: 700;
	--navi-font-weight: 400; /* ALTERADO: Peso ideal para Abril Fatface */
	--widget-title-font-weight: 700;
    
	--title-text-transform: none;
	--navi-text-transform: none;
	--widget-title-text-transform: none;
	--text-line-height: 1.2;
	--title-line-height: 1.4;
}

/* Aplicação direta nos títulos do site */
h1, h2, h3, h4, h5, h6, 
.site-title, 
.entry-title, 
.widget-title {
    font-family: var(--title-font) !important;
    font-weight: var(--title-font-weight) !important;
    letter-spacing: -0.03em !important; /* Letras ligeiramente mais juntas nos títulos */
}

/* Aplicação direta nos menus de navegação (Inclui submenus e itens em cascata) */
.main-navigation-menu a, 
.main-navigation-menu ul a, /* ADICIONADO: Garante o tamanho correto nos submenus */
.main-navigation-toggle,
.top-navigation-menu a,
.top-navigation-menu ul a,  /* ADICIONADO: Garante o tamanho correto nos submenus */
.footer-navigation-menu a {
    font-family: var(--navi-font) !important;
    font-weight: var(--navi-font-weight) !important; /* Usa o peso 600 global */
    font-size: 15px !important;        /* Tamanho reduzido para 13px */
    letter-spacing: 0.05em !important; /* Espaçamento suave entre letras */
}
