/* ========================================
   MAVICO - Variables Ferretería
   ======================================== */

:root {
    /* Colores Principales MAVICO */
    --color-primario: #C59A2F;
    --color-secundario: #A88427;
    --color-acento: #F4B400;
    --color-texto: #1A1A1A;
    --color-fondo: #F5F5F5;

    /* Colores Base - Modo Claro */
    --primary-color: #C59A2F;
    --secondary-color: #A88427;
    --accent-color: #F4B400;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --off-white: #F5F5F5;
    --gray-light: #e5e5e5;
    --gray-dark: #1a1a1a;
    --gray-border: #d0d0d0;
    --bg-body: #F5F5F5;
    --bg-card: #ffffff;
    --bg-header: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);

    /* Gradientes MAVICO */
    --gradient-primary: linear-gradient(135deg, #C59A2F 0%, #A88427 100%);
    --gradient-subtle: linear-gradient(to bottom, #F5F5F5, #ffffff);

    /* Sombras Suaves */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Tipografía */
    --font-titles: 'Anton', sans-serif;
    --font-body: 'Garet', sans-serif;
    --font-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Espaciados */
    --section-padding: 80px;
    --container-max: 1200px;
    --border-radius: 8px;
}

/* Modo Oscuro */
[data-theme="dark"] {
    --color-primario: #D4A83A;
    --color-secundario: #C59A2F;
    --color-acento: #FFC107;
    --color-texto: #F5F5F5;
    --color-fondo: #121212;

    --primary-color: #D4A83A;
    --secondary-color: #C59A2F;
    --accent-color: #FFC107;
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --text-light: #888888;
    --white: #1E1E1E;
    --off-white: #121212;
    --gray-light: #2a2a2a;
    --gray-dark: #f5f5f5;
    --gray-border: #333333;
    --bg-body: #121212;
    --bg-card: #1E1E1E;
    --bg-header: #1E1E1E;
    --shadow-color: rgba(0, 0, 0, 0.3);

    --gradient-primary: linear-gradient(135deg, #D4A83A 0%, #C59A2F 100%);
    --gradient-subtle: linear-gradient(to bottom, #1E1E1E, #121212);

    /* Sombras en modo oscuro */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body), var(--font-fallback);
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Tipografía */
h1, h2, h3, h5, h6 {
    font-family: var(--font-titles), var(--font-fallback);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 70px; }
h2 { font-size: 60px; }
h3 { font-size: 35px; }
h4 {
    font-size: 25px;
    font-family: 'Inter', 'Roboto', var(--font-body), var(--font-fallback);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    font-size: 16px;
    line-height: 1.7;
}

.highlight {
    color: var(--color-acento);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}
