/**
 * shared/css/brand.css — Agnostic neutral fallback.
 *
 * Each product overrides this with its own /css/brand.css (per-product file
 * placed under each product's web/css/ — deploy-web.ps1 copies it last).
 *
 * If the per-product file fails to deploy, these neutral defaults keep the
 * UI legible (gray + indigo) without leaking any brand identity.
 */
:root {
    /* UI accent — verde WhatsApp (tema ai-bot / Mockup C) */
    --brand-primary-rgb:       37 211 102;
    --brand-primary:           #25d366;
    --brand-primary-hover:     #00a884;

    /* Secondary green */
    --brand-secondary-rgb:     16 185 129;
    --brand-secondary:         #10b981;

    /* Dark backgrounds */
    --brand-dark:              #0b141a;
    --brand-dark-card:         #111b21;

    /* Sidebar tooltip bg */
    --brand-tooltip-bg:        #1e293b;

    /* Progress bar gradient */
    --brand-progress-gradient: linear-gradient(90deg, #6366f1, #10b981);

    /* Active nav shadow */
    --brand-nav-shadow:        rgba(99, 102, 241, 0.35);

    /* Chat bubble */
    --brand-chat-user-bg:      #6366f1;

    /* Period selector active */
    --brand-period-active-color: #6366f1;

    /* OG image (referenced by per-product HTML) */
    --brand-og-image:          /images/og-banner.png;

    /* Favicon */
    --brand-favicon:           /favicon.ico;

    /* Logo image path */
    --brand-logo-src:          url('/images/logo.png');
}
