@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: unset !important;
    font-family: "Inter", sans-serif;
    transition: 200ms;
}
:root {
    /* Majority */
    --color-white: #ffffff;
    --color-yellow: #fec800;
    --color-green: #34a360;
    --color-blue: #0065b4;
    /* Fonts */
    --color-grey: #616161;
    --color-light-grey: #868686;
}

body {
    color: var(--color-grey);
    background-color: var(--color-white);
    width: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 40px;
    @media (max-width: 900) {
        gap: 20px;
        font-size: 16px;
        justify-content: flex-start;
        padding: 40px 0px 100px 0px;
    }
}
.section {
    width: 100%;
    display: flex;
    justify-content: center;
}
.section-cursos {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -30px !important;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 480px;
}

.ranking-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.title {
    font-size: 16px;
    text-align: center;
}

.light {
    color: var(--color-light-grey);
    font-weight: 400;
}

.super-strong {
    color: var(--color-grey) !important;
    font-weight: bolder;
}

.light-strong {
    color: var(--color-light-grey) !important;
    font-weight: 700;
}

.strong {
    color: var(--color-grey);
    font-weight: 800;
}

.super-strong a,
.super-strong a:visited,
.super-strong a:hover,
.super-strong a:focus,
.super-strong a:active {
    text-decoration: none;
    color: var(--color-grey);
}

.super-strong a:focus {
    color: var(--color-light-grey);
}

.light-strong {
    color: var(--color-light-grey) !important;
    font-weight: 700;
}

.light-strong a,
.light-strong a:visited,
.light-strong a:hover,
.light-strong a:focus,
.light-strong a:active {
    text-decoration: none;
    color: var(--color-light-grey);
}
.bar-top,
.bar-bottom {
    width: 100%;
    height: 30px !important;
    display: flex;
}

.bar {
    height: 100%;
    flex: 1;
}

.yellow {
    background-color: var(--color-yellow);
}

.green {
    background-color: var(--color-green);
}

.blue {
    background-color: var(--color-blue);
}

.image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.emec {
    width: 120px;
    height: auto;
}

.igc {
    font-size: 20px;
    margin-bottom: 10px;
}

.ranking {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 15px;
}

.separator {
    display: block;
    width: 90%;
    height: 1px !important;
    background-color: #d0d0d0;
    border: none;
    margin: 10px auto;
    border-radius: 1px;
}

.description {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
}

.h1-descricao {
    text-align: center;
    max-width: 100%;
    line-height: 1.3;
    word-break: break-word;
    width: 100%;
    font-size: 16px;
    padding: 0 5px;
}

.table-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    width: 100%;
    padding: 0 10px;
}

.ranking-table {
    width: 100%;
    font-size: 12px;
    border-collapse: collapse;
}

.ranking-table th,
.ranking-table td {
    height: 35px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 5px;
}

.ranking-table th.ies {
    background-color: #f7c600;
    color: #fff;
}

.ranking-table th.indice {
    background-color: #2eaa63;
    color: #fff;
}

.ranking-table th.conceito {
    background-color: #0066b3;
    color: #fff;
}

.fonte {
    font-size: 10px;
    margin-top: 5px;
    color: #007bff;
    align-self: flex-end;
    padding-right: 10px;
}

.fonte a,
.fonte a:visited,
.fonte a:hover,
.fonte a:focus,
.fonte a:active {
    text-decoration: none;
    color: #007bff;
}

.texto-container {
    padding: 15px;
    width: 100%;
    max-width: 100%;
}

.text-1 {
    font-size: 12px;
    color: var(--color-grey);
    line-height: 1.3;
}

.titulo-text {
    color: var(--color-grey);
    font-size: 12px;
    padding: 10px 0 5px 20px;
    font-weight: 700;
}

.bullet-text {
    font-size: 12px;
    color: var(--color-grey);
    padding: 0 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.text-2 {
    font-size: 12px;
    color: var(--color-grey);
    line-height: 1.3;
}

/* Fix mobile spacing */
@media (max-width: 640px) {
    .bar-top,
    .bar-bottom {
        height: 8px;
    }

    .ranking-table {
        font-size: 11px;
    }

    .ranking-table th,
    .ranking-table td {
        height: 30px;
        padding: 2px;
    }

    .h1-descricao {
        font-size: 14px;
    }

    .title {
        font-size: 14px;
    }

    .igc {
        font-size: 18px;
    }
}
