@import url('https://googleapis.com');

:root {
    --falcoes-black: #111111;
    --falcoes-gold: #FFCC00;
    --falcoes-white: #FFFFFF;
    --falcoes-red: #D61C1C;
    --falcoes-gray: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--falcoes-black);
    color: var(--falcoes-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-image: radial-gradient(circle at center, #222 0%, var(--falcoes-black) 70%);
}

.repo-container {
    text-align: center;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    background-color: var(--falcoes-gray);
    border: 2px solid var(--falcoes-white);
    border-top: 6px solid var(--falcoes-gold);
    border-bottom: 6px solid var(--falcoes-red);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.logo-wrapper {
    margin-bottom: 15px;
}

.logo-o11ce {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo-o11ce:hover {
    transform: scale(1.05) rotate(2deg);
}

.repo-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--falcoes-white);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.bimestre-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-bimestre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--falcoes-white);
    text-decoration: none;
    padding: 15px;
    border: 2px solid var(--falcoes-white);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-bimestre span {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-bimestre small {
    font-size: 0.7rem;
    margin-top: 4px;
    color: #888;
    font-weight: 400;
}

.btn-bimestre:hover {
    background-color: var(--falcoes-white);
    color: var(--falcoes-black);
}

.btn-bimestre:hover small {
    color: var(--falcoes-black);
}

.btn-bimestre.highlight {
    border-color: var(--falcoes-gold);
    color: var(--falcoes-gold);
}

.btn-bimestre.highlight:hover {
    background-color: var(--falcoes-gold);
    color: var(--falcoes-black);
}