body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* .navbar {
    /* background-color: #0d0d52; 
} */

.navbar-brand,
.nav-link {
    color: white !important;
}

/* .header-title {
    background: linear-gradient(135deg, #0d0d52, #4a148c);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
} */

.info-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 30px;
    margin: 30px 80px 30px 80px;
}

.section-title {
    color: #0d0d52;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.row-title {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.references-grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.reference-link {
    color: #10b981;
    text-decoration: none;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    border-left: 4px solid #10b981;
}
.reference-link:hover {
    text-decoration: none;
    color: #fff;
    background: #10b981;
    border-left: 4px solid #fff;
}

.highlight-box {
    background-color: #f0f8ff;
    border-left: 5px solid #0d0d52;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.timeline {
    position: relative;
    padding-left: 50px;
    margin: 30px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0d0d52;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}


.timeline-date {
    font-weight: bold;
    color: #0d0d52;
}

.stats-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0d0d52;
    margin: 10px 0;
}

.stats-label {
    color: #6c757d;
    font-size: 1rem;
}

/* ********************************************************************************* */

/* Custom styles for the timeline 
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #1c492a;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid #1c492a;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 27px;
}

.timeline-year {
    font-weight: bold;
    color: #6c63ff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}
    */

/* Salary comparison styles */
.salary-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.salary-card:hover {
    transform: translateY(-5px);
}

.salary-header {
    background: linear-gradient(135deg, #165e2b, #047c22);
    color: white;
    padding: 15px;
    text-align: center;
}

.salary-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.salary-feminino {
    color: #070606;
}

.salary-masculino {
    color: #1d7731;
}

.salary-difference {
    font-size: 1.2rem;
    font-weight: bold;
    color: #495057;
}



@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        /* padding-left: 70px; */
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
    }

    .left::after,
    .right::after {
        left: 18px;
    }

    .right {
        left: 0;
    }

    .info-section {

    margin: 10px 14px 10px 14px;
}
}