/*
Theme Name: Tekshine Blog Custom
Theme URI: https://tekshine.com.br/
Description: Tema exclusivo em código puro feito sob medida para o Blog da Tekshine, sem builders ou plugins de layout.
Version: 1.0.0
Author: Antigravity AI
Author URI: https://google.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tekshine-blog
*/

/* Reset & Variáveis Globais */
:root {
    --color-primary: #C9A84C; /* Dourado Oficial Tekshine */
    --color-secondary: #0D0D0D; /* Preto Oficial Tekshine */
    --color-background: #F8F9FA; /* Cinza claro elegante */
    --color-white: #FFFFFF;
    --color-text-dark: #0D0D0D; /* Texto em preto oficial */
    --color-text-light: #666666;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif; /* Fonte Poppins unificada para todo o site */
    --font-button: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    background-color: var(--color-background);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Alinhamentos WordPress */
.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}
.clear {
    clear: both;
}
