/*
Theme Name: Tema Demo
Theme URI: https://wordpress.org/themes/twentytwenty/
Author: Natan Rodrigues
Author URI: https://natanrodrigues.com
Description: Tema desenvolvido para teste
Version: 1.3
*/


@import 'css/header.css';
@import 'css/reset.css';
@import 'css/home.css';
@import 'css/blog.css';
@import 'css/single-post.css';
@import 'css/footer.css';


:root {
    /* Paleta Base (Conforme Design System) */
    --color-preto: #000000;
    --color-cinza-escuro: #111827;
    --color-amarelo: #EDB70D;
    --color-cinza-claro: #E5E7EB;
}

/* ==========================================
   APLICAÇÃO BASE (Body e Textos gerais)
   ========================================== */
body {
    font-family: 'Inter', sans-serif;
    /* Declarado diretamente */
    color: #111827;
    background-color: #ffffff;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

/* ==========================================
   ESTILIZAÇÃO DAS TAGS DE TÍTULO (Headings)
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    /* Declarado diretamente */
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
    color: #111827;
}

/* Tamanhos e Pesos Desktop */
h1 {
    font-size: 56px;
    font-weight: 600;
}

/* 48px - Extrabold */

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* 40px - Bold */

h3 {
    font-size: 2rem;
    font-weight: 700;
}

/* 32px - Bold */

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* 24px - Semibold */

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* 20px - Semibold */

h6 {
    font-size: 1rem;
    font-weight: 600;
}



/*boxed container*/
.container-boxed {
    width: 100%;
    max-width: 1300px;
    padding: 120px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

/*Estilo de botões*/


/*Botão amarelo*/
.btn-primary {
    background-color: var(--color-amarelo);
    color: var(--color-preto);
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid var(--color-amarelo);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--color-preto);
    color: var(--color-amarelo);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;

}

/*Botão preto*/

.btn-outline {
    background-color: transparent;
    color: var(--color-amarelo);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid var(--color-amarelo);
}

.btn-outline:hover {
    background-color: var(--color-amarelo);
    color: var(--color-preto);
}



/* ==========================================
   RESPONSIVO (Ajuste direto nas tags para Mobile)
   ========================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    /* 40px */

    h2 {
        font-size: 2rem;
    }

    /* 32px */

    h3 {
        font-size: 1.5rem;
    }

    /* 24px */

    h4 {
        font-size: 1.25rem;
    }

    /* 20px */

    h5 {
        font-size: 1.125rem;
    }

    /*botões*/
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

 
}