:root {
    --primary-color: #2c3e50;
    --secondary-color: oklch(50.61% 0.1421 149.2);
    --accent-color: #5776B0;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.index {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.index a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    background: white;
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.index a:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.stats-list {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}
.stats-list > * {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    min-width: 180px;
    flex: 1;
    max-width: 250px;
    font-style: normal;
}
.stats-list > * strong {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

#introducao blockquote {
    font-style: normal;
}
#introducao blockquote::before {
    content:"";
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}
blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    margin-left: -1.5rem;
    margin-top: -1rem;
    opacity: 0.3;
}

hr {
    border: none;
    height: 2px;
    background-color: var(--accent-color);
    margin: 1rem 0;
    width: 100%;
    display: block;
}

.image {
    clear: both;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}
.image img {
    width: 100%;
    max-width: auto;
    max-height: 600px;
    height: auto;
    display: block;
    object-fit: contain;
}
.image figcaption {
    font-size: 14px;
    padding: 1rem 0.5rem;
    background: var(--light-bg);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
    font-style: italic;
}

.judge-heading > * {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.95rem;
    margin-left: 1rem;
    display: inline-block;
    transition: background 0.2s;
}

.section-divider {
    text-align: center;
    margin: 4rem 0;
}
.section-divider::after {
    content: '⚖️';
    font-size: 2rem;
    display: block;
    margin: 1rem 0;
}

.timeline-section {
    position: relative;
    padding-left: 2rem;
}
.timeline-section::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: -0.5rem;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    z-index: 0;
}
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.9rem;
    top: 0.5rem;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 3px var(--accent-color);
    z-index: 1;
}

.highlight-box {
    background: var(--light-bg);
    border: 2px solid var(--secondary-color);
    color: black;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}