/* ========================================
   SPINA SHOP - Variables Minimalistas
   ======================================== */

:root {
    /* Colores Principales - Simplificados */
    --color-azul: #71C9E7;
    --color-rosa: #DE40AA;
    --color-beige: #F5F0EB;

    /* Colores Base - Minimalistas */
    --primary-color: #1a1a1a;
    --secondary-color: #666666;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-light: #f0f0f0;
    --gray-dark: #2a2a2a;
    --gray-border: #e5e5e5;

    /* Gradientes Sutiles */
    --gradient-primary: linear-gradient(135deg, #71C9E7 0%, #DE40AA 100%);
    --gradient-subtle: linear-gradient(to bottom, #fafafa, #f5f5f5);

    /* 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;
}

/* 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(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px;
}

/* 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-rosa);
}

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