/*
Theme Name: Henrique Melo Epifania
Theme URI: https://henriquemelopsicologo.com.br
Author: Henrique Melo
Description: Tema minimalista Dark/Gold focado em Psicanálise e Cinema.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

/* --- Variáveis Globais --- */
:root {
    --gold: #c5a47e;
    --bg: #0d0d0d;
    --text: #e5e5e5;
}

/* --- Estrutura Base --- */
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- Tipografia --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1rem;
}

a { color: var(--gold); text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; }

/* --- Blocos do WordPress --- */
/* Garante que o editor visual fique igual ao site */
.wp-block-button__link {
    background-color: var(--gold) !important;
    color: #000 !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    padding: 15px 30px !important;
}

.wp-block-cover h1, .wp-block-cover h2 {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.wp-block-columns { margin-bottom: 2rem; }

/* Container Centralizado */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}