:root {
    --bg-color: #F9F6F1;
    --sidebar-bg: rgba(255, 255, 255, 0.7);
    --panel-bg: rgba(255, 255, 255, 0.75);
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --accent-color: #FF5757;
    --accent-hover: #E64E4E;
    --border-color: rgba(0, 0, 0, 0.03);
    --glass-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    --radius-lg: 2.5rem;
    --radius-md: 1.5rem;
    --font-family: 'Inter', -apple-system, sans-serif;
    --font-bricolage: 'Bricolage Grotesque', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: var(--font-family); 
    background-color: var(--bg-color); 
    color: var(--text-primary); 
    height: 100vh; 
    overflow: hidden;
    position: relative;
}

/* Normy Blobs System */
body::before, body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
    animation: float-blobs 20s infinite alternate ease-in-out;
}

@keyframes float-blobs {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 40px) scale(1.1); }
}

body[data-profile="freelance"]::before {
    top: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: #FF5757; /* Salmón Normy */
}
body[data-profile="freelance"]::after {
    bottom: 0%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: #BFE3C8; /* Menta Normy */
}

body[data-profile="company"]::before {
    top: 10%;
    right: 0%;
    width: 700px;
    height: 700px;
    background: #B9E2FF; /* Cielo Normy */
}
body[data-profile="company"]::after {
    bottom: -5%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: #DDEFFF; /* Azul Nube */
}

/* Utility Classes */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.text-muted { color: var(--text-secondary); font-size: 14px; }
.text-secondary { color: var(--text-secondary); }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.mt-05 { margin-top: 8px; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.hidden { display: none !important; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-5px); } }
@keyframes slideUpFadeIn { from { opacity: 0; transform: translateY(28px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
