/* ==========================================================================
   MAYER PERÍCIAS - MAIN STYLE sheet (mayer-main.css)
   ========================================================================== */

/* Carregamento Explícito das Fontes Oficiais Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Importação de Camadas Modulares */
@import url('variables.css');
@import url('header.css');
@import url('home.css');
@import url('cards.css');
@import url('forms.css');
@import url('footer.css');

/* Reset Geral de Performance e Legibilidade */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--mayer-gray-dark);
    background-color: var(--mayer-blue-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--mayer-blue-deep);
    font-weight: 700;
}

/* Classes Utilitárias Globais de Botões */
.mayer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.mayer-btn-primary {
    background-color: var(--mayer-blue-electric);
    color: var(--mayer-white);
    box-shadow: 0 4px 15px rgba(30, 101, 214, 0.4);
}

.mayer-btn-primary:hover {
    background-color: var(--mayer-white);
    color: var(--mayer-blue-deep);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.mayer-btn-secondary {
    background-color: transparent;
    border-color: var(--mayer-white);
    color: var(--mayer-white);
}

.mayer-btn-secondary:hover {
    background-color: var(--mayer-white);
    color: var(--mayer-blue-deep);
}
