/* css/00-base.css */

/* Variáveis de Cores e Fontes */
:root {
    --primary-color: #b79642; /* Dourado */
    --secondary-color: #a6a6a6; /* Cinza Claro */
    --background-color: #ffffff; /* Branco */
    --text-dark: #333333;
    --text-light: #666666;
    --light-grey-bg: #f8f8f8; /* Para seções de fundo cinza claro */
    --light-gold-bg: #fdfae7; /* Dourado claro para a seção institucional */

    /* Cores WhatsApp */
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #1DA851;

    /* Fontes - Agora apenas Lato */
    --font-heading: 'Lato', sans-serif; /* Títulos também usam Lato */
    --font-body: 'Lato', sans-serif;
}

/* Reset Básico e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container para centralizar conteúdo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Títulos Globais */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.8em; }

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #9c7b34;
}

/* Classes utilitárias */
.grey-bg {
    background-color: var(--light-grey-bg);
}

.text-center {
    text-align: center;
}