:root {
    --bs-primary: #0b3d59;
    --bs-primary-rgb: 11, 61, 89;
    --bs-body-font-family: 'Inter', sans-serif;
    --surface-bg: #f7f9fc;
    --deep-navy: #00315A;
    --primary-fixed: #cae6ff;
}

body {
    font-family: var(--bs-body-font-family);
    background-color: var(--surface-bg);
    color: #191c1e;
    padding-top: 80px;
}

.text-primary-custom {
    color: var(--bs-primary) !important;
}

.bg-primary-custom {
    background-color: var(--bs-primary) !important;
}

.bg-deep-navy {
    background-color: var(--deep-navy) !important;
}

.text-primary-fixed {
    color: var(--primary-fixed) !important;
}

.bg-primary-fixed {
    background-color: var(--primary-fixed) !important;
}

.btn-primary-custom {
    background-color: var(--bs-primary);
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #082c40;
    color: white;
}

.btn-primary-fixed {
    background-color: var(--primary-fixed);
    color: #001e2f;
    font-weight: 600;
}

.btn-primary-fixed:hover {
    background-color: white;
    color: #001e2f;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: -80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/foto2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 49, 90, 0.9) 0%, rgba(0, 49, 90, 0.7) 50%, transparent 100%);
    z-index: 1;
}

.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: linear-gradient(to top, var(--surface-bg) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #42474d;
}

.nav-link:hover {
    color: var(--bs-primary);
}

.card-hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(194, 199, 206, 0.3);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon-bg {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0.05;
    font-size: 120px !important;
    transition: all 0.5s ease;
}

.card-hover:hover .card-icon-bg {
    opacity: 0.1;
    transform: scale(1.1);
}

.chart-bar {
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
}

.navbar {
    .d-none a {
        color: #333 !important;
    }
}

.box {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card {
    a {
        text-decoration: none;
        color: #666;
    }
}