/* ========== BIOVTR - PALETAS DE CORES ========== */

/* 1. Ocean - Azuis profundos e turquesa */
.palette-ocean {
    --primary: #0ea5e9;
    --secondary: #0284c7;
    --accent: #06b6d4;
    --background: #0c4a6e;
    --text: #f0f9ff;
}

/* 2. Sunset - Laranjas, rosas e roxos */
.palette-sunset {
    --primary: #f97316;
    --secondary: #ec4899;
    --accent: #7c3aed;
    --background: #1e1b4b;
    --text: #fef3c7;
}

/* 3. Forest - Verdes e tons terrosos */
.palette-forest {
    --primary: #22c55e;
    --secondary: #15803d;
    --accent: #84cc16;
    --background: #14532d;
    --text: #ecfdf5;
}

/* 4. Neon - Rosa, ciano e amarelo vibrantes */
.palette-neon {
    --primary: #f0abfc;
    --secondary: #22d3ee;
    --accent: #facc15;
    --background: #09090b;
    --text: #fafafa;
}

/* 5. Monochrome - Preto, branco e cinzas */
.palette-monochrome {
    --primary: #a1a1aa;
    --secondary: #71717a;
    --accent: #f4f4f5;
    --background: #18181b;
    --text: #fafafa;
}

/* 6. Candy - Pastéis suaves */
.palette-candy {
    --primary: #fda4af;
    --secondary: #c4b5fd;
    --accent: #a5f3fc;
    --background: #1e1b4b;
    --text: #fdf2f8;
}

/* 7. Fire - Vermelhos e laranjas intensos */
.palette-fire {
    --primary: #ef4444;
    --secondary: #f97316;
    --accent: #fbbf24;
    --background: #450a0a;
    --text: #fef2f2;
}

/* 8. Aurora - Verdes, roxos e azuis */
.palette-aurora {
    --primary: #a855f7;
    --secondary: #22c55e;
    --accent: #0ea5e9;
    --background: #0f172a;
    --text: #f0fdf4;
}

/* 9. Coffee - Marrons e cremes */
.palette-coffee {
    --primary: #a16207;
    --secondary: #78350f;
    --accent: #fcd34d;
    --background: #1c1917;
    --text: #fef3c7;
}

/* 10. Royal - Roxos e dourados */
.palette-royal {
    --primary: #7c3aed;
    --secondary: #a855f7;
    --accent: #fcd34d;
    --background: #1e1b4b;
    --text: #faf5ff;
}

/* Custom palette uses inline styles from page.custom_colors */
.palette-custom {
    /* Uses inline CSS variables set in template */
}

/* ========== Cards Theme Light Backgrounds ========== */
/* Para o tema cards que tem fundo claro */

.palette-ocean body.cards,
body.palette-ocean[class*="cards"] {
    --background: #f0f9ff;
    --text: #0c4a6e;
}

.palette-sunset body.cards,
body.palette-sunset[class*="cards"] {
    --background: #fef3c7;
    --text: #1e1b4b;
}

.palette-forest body.cards,
body.palette-forest[class*="cards"] {
    --background: #ecfdf5;
    --text: #14532d;
}

.palette-neon body.cards,
body.palette-neon[class*="cards"] {
    --background: #fafafa;
    --text: #09090b;
}

.palette-candy body.cards,
body.palette-candy[class*="cards"] {
    --background: #fdf2f8;
    --text: #1e1b4b;
}

.palette-fire body.cards,
body.palette-fire[class*="cards"] {
    --background: #fef2f2;
    --text: #450a0a;
}

.palette-aurora body.cards,
body.palette-aurora[class*="cards"] {
    --background: #f0fdf4;
    --text: #0f172a;
}

.palette-coffee body.cards,
body.palette-coffee[class*="cards"] {
    --background: #fef3c7;
    --text: #1c1917;
}

.palette-royal body.cards,
body.palette-royal[class*="cards"] {
    --background: #faf5ff;
    --text: #1e1b4b;
}

