/* === OUROFINO BASE — Reset WP + Design Tokens Figma === */
:root {
    --color-primary: #072047;
    --color-secondary: #007CC1;
    --color-accent: #10AD31;
    --color-emerald: #10b981;
    --color-cyan: #20D5F2;
    --color-dark: #002147;

    /* Tipografia — escala Figma */
    --font-family: 'Montserrat', 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --line-height-heading: 1.2;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: var(--line-height-base);
    color: #1e293b;
    background: #EFEFEF !important;
    margin: 0;
    padding: 0;
}

/* Tipografia global — Figma tokens */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 700;
    line-height: var(--line-height-heading);
    color: var(--color-primary);
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

/* Reset WP admin bar spacing */
html { margin-top: 0 !important; }

/* Reset WP defaults */
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
input { font-family: inherit; }

/* Hide WP admin bar */
#wpadminbar { display: none !important; }
