:root {
    --bs-primary: #355C7D;
    --bs-secondary: #C6A15B;
    --bs-light: #F5F1EA;
    --bs-dark: #243746;

    --bs-body-bg: #F5F1EA;
    --bs-body-color: #2E2E2E;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F1EA;
    color: #2E2E2E;
}

/* NAVBAR */
.navbar {
    background-color: #243746 !important;
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: white !important;
}

.navbar .nav-link:hover {
    color: #C6A15B !important;
}

/* CARDS */
.card {
    border: none;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* BOTONES */
.btn-primary {
    background-color: #355C7D;
    border-color: #355C7D;
}

.btn-primary:hover {
    background-color: #2B4A63;
    border-color: #2B4A63;
}

.btn-secondary {
    background-color: #C6A15B;
    border-color: #C6A15B;
    color: white;
}

.btn-secondary:hover {
    background-color: #ad8b4f;
    border-color: #ad8b4f;
}

/* TABLAS */
.table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}