:root {
    --upv-red: #fa720e;
    --upv-dark: #1A1B1D;
    --upv-gray: #F4F4F4;
    --accent-blue: #004F9F;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background-color: white;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.upv-logo {
    height: 80px;
}

/* Navbar */
.navbar {
    background-color: var(--upv-dark) !important;
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #384d96 !important;
}

/* Breadcrumbs transition */
.breadcrumb-container {
    background-color: #333;
    color: #ccc;
    padding: 8px 0;
    font-size: 0.85rem;
}

.breadcrumb-container a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumb-container a:hover {
    color: white;
}

/* Section elements */
.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--upv-red);
}

/* Cards */
.sid-card {
    background: white;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    cursor: pointer;
    border-radius: 12px;
}

.sid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.05) !important;
}

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-custom-orange {
    background-color: rgba(250, 114, 14, 0.1) !important;
}

.text-custom-orange {
    color: #fa720e !important;
}

.icon-box i {
    position: relative;
    z-index: 2;
}

.bg-purple {
    background-color: #6f42c1;
}

.text-purple {
    color: #6f42c1;
}

.action-card {
    border-radius: 15px;
    position: relative;
}

.overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.action-card:hover .overlay {
    background: linear-gradient(to right, rgba(56, 77, 150, 0.8), rgba(0, 0, 0, 0.3));
}

.w-fit {
    width: fit-content;
}

/* Buttons */
.btn-red {
    background-color: var(--upv-red);
    color: white;
    border: none;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-red:hover {
    background-color: #e4650a;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delayed {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.animate-fade-in-latest {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.accordion-button:not(.collapsed) {
    background-color: var(--upv-gray);
    color: var(--upv-red);
}