/**
 * Theme Name: Blocksy Child
 * Description: Tema filho para Blocksy
 * Author: fabi fit
 * Template: blocksy
 * Text Domain: meuprojeto
 * Version: 1.0.0
 */

/* ============================================
   FONTES PERSONALIZADAS (exemplo)
   ============================================ */

@font-face {
    font-family: 'MinhaFonte';
    src: url('fonts/MinhaFonte-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MinhaFonte';
    src: url('fonts/MinhaFonte-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   PALETA DE CORES (substitui as do Blocksy)
   ============================================ */

:root {
    --theme-palette-color-1: #2c3e66;  /* links, botões */
    --theme-palette-color-2: #1e2a4a;  /* hover */
    --theme-palette-color-3: #4a4a4a;  /* texto principal */
    --theme-palette-color-4: #1a1a1a;  /* títulos */
    --theme-palette-color-5: #e0e0e0;  /* bordas */
    --theme-palette-color-6: #f5f5f5;  /* fundo leve */
    --theme-palette-color-7: #fafafa;  /* fundo principal */
    --theme-palette-color-8: #ffffff;  /* fundo branco */
}

/* ============================================
   TIPOGRAFIA BASE
   ============================================ */

body {
    font-family: 'MinhaFonte', sans-serif;
    color: var(--theme-palette-color-3);
    background-color: var(--theme-palette-color-7);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'MinhaFonte', sans-serif;
    font-weight: 700;
    color: var(--theme-palette-color-4);
}

/* ============================================
   LINKS E BOTÕES
   ============================================ */

a {
    color: var(--theme-palette-color-1);
    text-decoration: none;
}

a:hover {
    color: var(--theme-palette-color-2);
    text-decoration: underline;
}

.ct-button,
.wp-block-button__link,
button[type="submit"] {
    background-color: var(--theme-palette-color-1);
    color: var(--theme-palette-color-8);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.ct-button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover {
    background-color: var(--theme-palette-color-2);
    cursor: pointer;
}

/* ============================================
   RESPONSIVIDADE MÍNIMA
   ============================================ */

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .ct-button,
    .wp-block-button__link,
    button[type="submit"] {
        padding: 8px 16px;
    }
}