@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #303030;
    font-family: Inter, Arial;
    overflow-x: hidden;
}

/* --- ÁREA DAS ABAS --- */
#tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    position: relative;
    z-index: 20; /* fica acima das setas */
}

.tab-btn {
    background-color: #161616;
    color: #EA7413;
    border: 2px solid #EA7413;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 600;
    font-family: Inter, Arial;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #EA7413;
    color: #ffffff;
}

.tab-btn.active {
    background-color: #EA7413;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(234, 116, 19, 0.5);
}

/* --- ÁREA PRINCIPAL DO FLUXOGRAMA --- */
div#main {
    font-size: 1em;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* As disciplinas ficam numa camada abaixo das setas */
#boxRows {
    position: relative;
    z-index: 2;
    padding: 0 20px 40px 20px;
}

/* O SVG das setas fica acima das caixas */
#svgContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 5;
    pointer-events: none;
}

/* --- PERÍODOS --- */
hr {
    border: #8888ff;
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 12px;
    color: #EA7413;
}

.rowContainer {
    display: flex;
    flex-wrap: wrap;
}

/* --- CAIXAS DAS DISCIPLINAS --- */
.modbox {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0);
    text-align: center;
    width: 12em;
    height: 6em;
    margin: 5px;
    padding: 5px;
    background-color: black;
}

line, .modbox {
    transition: all 200ms ease;
}

.modTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    height: 5.5em;
}

.modTitle img {
    max-width: 1.5em;
    max-height: 1.5em;
}

.rewardSpan {
    display: flex;
    flex-wrap: wrap;
}

.modText, .bonusText {
    color: #8888ff;
    font-size: 0.7em;
    line-height: 1px;
}
