/* ============================================
   RESET & VARIABLES
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Paleta oficial Nira Apaec */
    --bg: #f5f0e8;
    --green-dark: #163b2d;
    --green-natural: #456b4f;
    --gold: #b8861b;
    --gold-light: #d4a437;
    --cream: #e6dccd;
    --beige-warm: #e6dccd;
    --text-primary: #183126;
    --text-secondary: #6b6b63;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Layout */
    --container-width: 1200px;
    --container-padding: 2rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(24, 49, 38, 0.08);
    --shadow-md: 0 4px 12px rgba(24, 49, 38, 0.1);
    --shadow-lg: 0 8px 24px rgba(24, 49, 38, 0.12);
    --shadow-glow: 0 0 24px rgba(184, 134, 27, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --easing-premium: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

::selection {
    background-color: var(--gold-light);
    color: var(--green-dark);
}