/* =================================================================
   VARIABLES CSS CORPORATIVAS - MÁRMOLES DEL NERVIÓN
   Basado en: www.marmolesdelnervion.com
   ================================================================= */

:root {
    /* Colores Corporativos - Mármoles del Nervión */
    --color-primary: #40685c;        /* Verde corporativo principal (del logo) */
    --color-secondary: #78ad8d;       /* Verde claro secundario */
    --color-accent: #40685c;          /* Verde oscuro para acentos */
    --color-light: #ffffff;           /* Blanco para fondos */
    --color-dark: #32373c;            /* Gris oscuro para textos */

    /* Estados del Sistema */
    --color-success: #28a745;         /* Verde éxito */
    --color-warning: #ffc107;         /* Amarillo advertencia */
    --color-danger: #dc3545;          /* Rojo error */
    --color-info: #17a2b8;            /* Azul información */

    /* Estados de Solicitud */
    --estado-borrador: #6c757d;       /* Gris */
    --estado-pendiente: #ffc107;      /* Amarillo */
    --estado-aprobada: #28a745;       /* Verde */
    --estado-medicion: #17a2b8;       /* Azul */
    --estado-finalizada: #155724;     /* Verde oscuro */
    --estado-rechazada: #dc3545;      /* Rojo */
    --estado-cancelada: #6c757d;      /* Gris oscuro */
    --estado-pte-fecha-med: #fd7e14;  /* Naranja */
    --estado-medicion-realizada: #20c997; /* Teal */
    --estado-pendiente-pago: #6f42c1; /* Púrpura */

    /* Fondos */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-accent: rgba(64, 104, 92, 0.1);   /* Verde corporativo muy suave */
    --bg-dark: #40685c;

    /* Tipografía */
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Espaciado */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 4px 12px rgba(64, 104, 92, 0.4);

    /* Transiciones */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* Override Bootstrap CSS Variables */
:root {
    --bs-primary: #40685c;
    --bs-secondary: #78ad8d;
    --bs-success: #28a745;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #40685c;
    --bs-body-font-family: var(--font-primary);
}
