@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Brand Colors - PODER SILENCIOSO */
    --color-black-deep: #050505;
    --color-gold-imperial: #D4AF37;
    --color-gold-dark: #8c732b;
    --color-graphite: #141414;
    --color-carbon: #1e1e1e;
    --color-ivory: #F2E9D8;
    --color-gold-glow: #e6c872;

    /* Layout */
    --sidebar-width: 280px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(212, 175, 55, 0.15);
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-black-deep);
    color: var(--color-ivory);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
.cinzel {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-imperial);
}

/* Glassmorphism Containers */
.card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.card-premium:hover {
    border-color: var(--color-gold-imperial);
    background: rgba(212, 175, 55, 0.03);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(45deg, var(--color-gold-imperial), var(--color-gold-glow));
    color: var(--color-black-deep) !important;
    border: none;
    padding: 14px 30px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--color-gold-imperial);
    color: var(--color-gold-imperial);
    padding: 12px 28px;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    transition: var(--transition-premium);
    border-radius: var(--border-radius-sm);
}

.btn-outline-gold:hover {
    background: var(--color-gold-imperial);
    color: var(--color-black-deep);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold-imperial);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-input,
.form-control {
    width: 100%;
    background-color: var(--color-carbon) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px;
    color: var(--color-ivory) !important;
    border-radius: var(--border-radius-sm);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-premium);
}

.form-input:focus,
.form-control:focus {
    outline: none;
    border-color: var(--color-gold-imperial) !important;
    background-color: #333 !important;
    box-shadow: none !important;
}

/* Dashboard Utilities */
.progress-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-bar {
    height: 100%;
    background: var(--color-gold-imperial);
    box-shadow: 0 0 10px var(--color-gold-imperial);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Navigation */
.top-nav {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 90;
}

.top-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--color-ivory);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-nav-icon:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold-imperial);
    color: var(--color-gold-imperial);
}

.profile-pill {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 10px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
}

/* Plan and Investment UI */
.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.plan-card:hover,
.plan-card.active-plan {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

.wallet-reveal {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 8px;
}

/* Tree UI */
.tree-overflow-box {
    overflow-x: auto;
    cursor: grab;
}

.tree-overflow-box:active {
    cursor: grabbing;
}

.tree-guide {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.7rem;
    color: var(--color-gold-imperial);
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive Hide Sidebar */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        transition: var(--transition-premium);
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }
}

.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: var(--color-gold-imperial);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bg-gold {
    background-color: var(--color-gold-imperial) !important;
}

.text-gold {
    color: var(--color-gold-imperial) !important;
}

.ls-2 {
    letter-spacing: 2px;
}


