/* PatrimonioGreen - Design System 2026 */

:root {
    --primary-dark: #1a2a22;   /* Antracite Istituzionale */
    --accent-green: #198754;   /* Verde Finanziario */
    --bg-light: #f8f9fa;
    --text-muted: #6c757d;
    --gold-value: #d4af37;     /* Accento per ROI e Valore */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

/* Navbar */
.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-minimal {
    background: #ffffff;
    padding: 100px 0 60px 0;
    border-bottom: 1px solid #eee;
}

.section-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-green);
}

/* Card Asset */
.card-placeholder {
    border: 1px solid #e9ecef;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
    padding: 2rem;
}

.card-placeholder:hover {
    border-color: var(--accent-green);
    background: #f9fffb;
    transform: translateY(-3px);
}

/* Buttons */
.btn-dark-custom {
    background: var(--primary-dark);
    color: #fff;
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-dark-custom:hover {
    background: var(--accent-green);
    color: #fff;
}

/* Footer */
.footer-minimal {
    background: #111;
    color: #eee;
    padding: 60px 0 30px 0;
}

.text-gold { color: var(--gold-value); }
