.indicador-menu-nav {
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: 1em;
    font-weight: 600;

    color: var(--text-middle);
}

.headline-principal h2,
.headline h2 {
    text-align: center;
    line-height: 4rem !important;
}

.headline-principal {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    width: 60%;
    margin: auto;
    padding: 3rem;
    padding-bottom: .5rem;
    text-align: center;

    & h2 {
        font-size: 3.5em;
        font-weight: 600;
        color: var(--primary);
    }

    & p {
        font-size: 1.25em;
        color: var(--text-dark);
    }
}

.subheadline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;

    & h4 {
        font-size: .75em;
        font-weight: 500;
        color: var(--text-middle);
        text-align: center;
        width: 70%;
    }
}

.headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    width: 60%;
    margin: auto;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;

    & h2 {
        font-size: 3.5em;
        font-weight: 600;
        color: var(--primary);
    }

    & p {
        font-size: 1em;
        color: var(--text-middle);
    }
}

section {
    width: 80%;
    margin: auto;
    margin-bottom: 4rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;

    &>img {
        height: 100%;
        width: 25%;
        object-fit: cover;
    }
}

.section-fill {
    background-color: #FFF;
    box-shadow: var(--shadow);
    border-radius: .375rem;
    padding: 2.5rem 4rem;
}

.section-fill-blk {
    background-color: var(--dark-primary);
    width: 100%;
    border-radius: 0;
    padding: 6rem 4rem;
    text-align: center;

    &>div {
        width: 80%;
        margin: auto;

        &>h3 {
            font-size: 1.75em;
            font-weight: 400;
            font-style: italic;
        }

        & h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-light);
        }

        &>p {
            font-size: 1em;
            color: #FFF;
            font-weight: 300;
        }

        & strong {
            font-size: 1.25em;
            color: var(--text-light);
        }

        &>ul>li {
            font-size: .875em;
            color: #FFF;
            margin-bottom: 1rem;
        }
    }
}

.section-normal {
    border-bottom: 1px solid var(--middle-seco-+ndary);
    padding-bottom: 3rem;
}

.big-image {
    flex-direction: column;

    & img {
        width: 75%;
        height: auto;
        object-fit: cover;
    }
}

.img-peq {
    width: auto !important;
    height: auto;
    object-fit: cover;
}

.section-conteudo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;

    &>h2 {
        font-size: 2em;
        font-weight: 700;
        color: var(--dark-primary);
    }

    &>h3 {
        font-size: 1.125em;
        font-weight: 500;
        color: var(--text-middle);
    }

    &>p {
        font-size: 1em;
        color: var(--text-dark);
    }
}

.descricao-planos {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    &>h6 {
        font-size: 1.125em;
        font-weight: 600;
        color: var(--dark-primary);
    }

    &>p {
        font-size: .875em;
        color: var(--text-middle);
    }
}

.descricao-planos>ul>li,
.listagem-planos>ul>li {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: .5rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 1.25em;
}

h6 {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-dark);
    font-style: italic;
}

strong {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark-secondary);
}

.menu-conteudo {
    padding: 2rem;
    background-color: var(--middle-secondary);
    border-radius: .5rem;
    margin: auto;
    margin-bottom: 4rem;
    width: 85%;

    &>.header-topico-menu {
        font-size: 1em;
        font-weight: 500;
        font-style: italic;
        color: #FFF;
        margin-bottom: 1.5rem;
    }

    &>section {
        width: 100% !important;
    }
}

.menu-opcoes-navegacao-ids {
    display: flex;
    gap: .5rem;
    margin-left: .5rem;

    &>button {
        background: none;
        border: none;
        color: var(--text-dark);
        font-size: 1em;
        font-weight: 600;
        cursor: pointer;

        &:hover {
            color: var(--primary);
        }
    }
}

.comparacao-imagens {
    width: 85%;
    height: fit-content;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: flex-start;

    &>img {
        width: auto;
    }

    &>div.seta-comparacao {
        margin-top: 1rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
    }
}

.tabela {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;

    & tr {
        border: 1px solid #ddd;
    }

    & thead tr {
        background: #f0f0f0;
    }

    & th {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    & th:not(:first-child) {
        text-align: center;
    }

    & td {
        border: 1px solid #ddd;
        padding: 8px;
    }

    & td:not(:first-child) {
        text-align: center;
    }
}

.legenda-tabela {
    font-size: 14px;
    color: #666;
}