/*
Theme Name:   Mayer Perícias Child Theme
Theme URI:    https://mayerpericias.com.br/mayer-child
Description:  Tema Filho Premium e Escalável para a Plataforma Corporativa Mayer Perícias, baseado no Hello Elementor.
Author:       Equipe Antigravity Mayer
Author URI:   https://mayerpericias.com.br
Template:     hello-elementor
Version:      1.0.0
Text Domain:  mayer-child
*/

/* ==========================================================================
   Design System - Variáveis e Configurações Globais
   ========================================================================== */
:root {
    /* Paleta de Cores Oficial */
    --mayer-blue-deep: #0F1E36;      /* HSL 216, 56%, 14% */
    --mayer-blue-electric: #1E65D6;  /* HSL 217, 76%, 48% */
    --mayer-blue-light: #F4F7FC;     /* Fundo Neutro Claro */
    --mayer-gray-light: #E5E9F0;     /* Bordas e divisores */
    --mayer-gray-dark: #2E3440;      /* Texto Principal Escuro */
    --mayer-gray-medium: #4C566A;    /* Texto Secundário */
    --mayer-gold: #D4AF37;           /* Acentos de Prestígio Forense */
    --mayer-white: #FFFFFF;
    --mayer-black: #080F1B;
    
    /* Tipografia Oficial */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Efeitos Globais */
    --shadow-sm: 0 2px 4px rgba(15, 30, 54, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 30, 54, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 30, 54, 0.12);
    --shadow-premium: 0 15px 40px rgba(15, 30, 54, 0.18);
    --glass-bg: rgba(15, 30, 54, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Marca d'água corporativa discreta */
.mayer-watermark {
    position: relative;
}
.mayer-watermark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: url('assets/images/watermark.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}
