/*
Theme Name: Mesa para 2 Child
Theme URI: https://mesapara2.com.br
Template: astra
Author: Mesa para 2
Author URI: https://mesapara2.com.br
Description: Tema filho do Astra para o blog Mesa para 2 - inspiração para casais que amam cozinhar juntos.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-mesa2
*/

/* ========== ESTILOS PERSONALIZADOS ========== */
/* Este é o lugar onde você vai adicionar seu CSS personalizado */

/* Cores principais */
:root {
    --terracota: #c27e5c;
    --verde-sálvia: #7f8c6d;
    --creme: #fef7e8;
    --marrom-suave: #4a3729;
    --areia: #e6dbcf;
}

/* Ajustes gerais */
body {
    background-color: var(--creme);
    color: var(--marrom-suave);
    font-family: 'Inter', sans-serif;
}

/* Títulos com fonte elegante */
h1, h2, h3, h4, h5, h6,
.entry-title,
.wp-block-post-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* Links e botões */
a {
    color: var(--terracota);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--verde-sálvia);
}

/* Botão principal */
.button, .ast-button, .wp-block-button__link {
    background-color: var(--terracota);
    color: white;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.button:hover, .ast-button:hover, .wp-block-button__link:hover {
    background-color: var(--verde-sálvia);
    transform: translateY(-2px);
}

/* Cards de receitas */
.ast-article-post {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ast-article-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Header personalizado */
.site-header {
    border-bottom: 2px solid var(--areia);
}

/* Footer */
.site-footer {
    background-color: var(--marrom-suave);
    color: var(--areia);
    padding: 40px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .button, .ast-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}