@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-100.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-100i.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-200.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-200i.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-300i.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-400i.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-500i.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-600i.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-700i.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-800.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-800i.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-900.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Rawline";
    src: url("../../fonts/rawline/rawline-900i.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

body {
    font-family: "Rawline", sans-serif;
    font-weight: 400;
}

/* ---------------------------------------------------------------------------------- */

:root {
    --header-height: 134px;
    --mobile-header-height: 80px;
    --header-radius: 32px;
}

/* ---------------------------------------------------------------------------------- */

.h-100 {
    height: 100%;
}

/* ---------------------------------------------------------------------------------- */

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 39px 0;
    border-radius: 0 0 var(--header-radius) var(--header-radius);
    background-color: #fff;
    z-index: 1;
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.149);
}

@media (max-width: 1199.98px) {
    header {
        /*height: var(
            --mobile-header-height
        );*/ /* acima de 1200px, height: 135px */
        padding: 20px 0;
    }
}

header img.logo {
    width: auto;
    height: auto;
}

@media (max-width: 575.98px) {
    header img.logo {
        height: 42px;
    }
}

header .search-box {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.251);
    width: 520px;
    height: 55px;
    border-radius: 10px;
    padding: 0 18px;
}

@media (max-width: 599.98px) {
    header .search-box {
        width: 100%;
    }
}

header .search-box input {
    border: none;
    outline: none;
    margin-left: 0.5rem;
    font-size: 0.875rem;
}

header .search-box input::placeholder {
    color: #1e0427;
}

header a.btn-outline {
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #1351B4;
    background: none;
    color: #1351B4;
    padding: 8px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

header a.btn-outline:hover {
    background: #1351B4;
    color: #fff;
}

header button.navbar-toggler {
    padding: 0;
    border: 0;
}

header button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.autoComplete_wrapper>ul {
    width: 521px;
    margin-left: -38px;
    margin-top: -5px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.251);
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.autoComplete_wrapper>ul>li mark {
    color: #0F64A1;
}

/* ---------------------------------------------------------------------------------- */

section#hero {
    background-color: #f0f5fd;
    margin-top: calc(var(--header-height) - var(--header-radius));
    padding-top: 80px;
}

section#hero .hero-container {
    width: 80%;
    max-width: 1350px;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    section#hero .hero-container {
        width: 90%;
    }
}

@media (max-width: 1199.98px) {
    section#hero {
        height: auto;
        padding-bottom: var(--header-radius);
        margin-top: calc(var(--header-height) - var(--header-radius) - 25px);
        padding-top: 50px;
    }
}

@media (max-width: 575.98px) {
    section#hero {
        margin-top: calc(var(--header-height) - var(--header-radius) - 35px);
        padding-top: 40px;
    }
}

section#hero .hero-text {
    width: 100%;
    max-width: 595px;
}

@media (min-width: 1200px) and (max-width: 1577.98px) {
    section#hero img {
        width: 500px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    section#hero img {
        width: 100%;
        max-width: 595px;
    }
}

@media (max-width: 767.98px) {
    section#hero img {
        width: 100%;
    }
}

section#hero h1 {
    font-weight: 500;
    font-size: 38px;
    color: #75667b;
}

section#hero h1 span {
    font-weight: 700;
}

section#hero p {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #1e0427;
}

@media (max-width: 575.98px) {
    section#hero h1 {
        font-size: 28px;
        text-wrap: balance;
    }

    section#hero p {
        font-size: 16px;
    }
}

@media (max-width: 379.98px) {
    section#hero p br {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    section#hero h1, section#hero p {
        text-align: center;
    }
}

/* ---------------------------------------------------------------------------------- */


section#acesso-dados {
    background-color: #f0f5fd;
    padding: 2rem 0 5rem;
}

section#acesso-dados a.ide-card {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    padding: 52px 52px 32px;
    background: #faf9f9;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all .3s ease-in-out;
}

section#acesso-dados a.ide-card:hover {
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    section#acesso-dados a.ide-card {
        max-width: 50%;
    }
}

@media (max-width: 991.98px) {
    section#acesso-dados a.ide-card {
        max-width: 100%;
    }
}

@media (max-width: 575.98px), (min-width: 992px) and (max-width: 1199.98px) {
    section#acesso-dados a.ide-card {
        padding: 52px 24px 24px;
    }
}

@media (max-width: 492.98px) {
    section#acesso-dados a.ide-card img {
        height: 80px;
    }
}

section#acesso-dados a.ide-card h2 {
    font-weight: 600;
    font-size: 26px;
    line-height: 28px;
    letter-spacing: 0.25px;
    color: #5B505F;
}

section#acesso-dados a.ide-card p {
    font-weight: 400;
    margin-bottom: 0;
    color: #1E0427;
}

@media (max-width: 575.98px) {
    section#acesso-dados a.ide-card h2 {
        font-size: 22px;
        line-height: 120%;
    }

    section#acesso-dados a.ide-card p {
        font-size: 16px;
    }
}

section#sobre-ide {
    padding: 6rem 0 3rem;
}

section#sobre-ide {
    background-color: #faf9f9;
    background-image: url("../../img/ide-ms/body-circuit.png"), url("../../img/ide-ms/body-map.png");
    background-position: center left -225px, center right;
    background-size: 700px auto, auto 700px;
    background-repeat: no-repeat;
    /* background-size: contain; */
}

@media (max-width: 1399.98px) {
    section#sobre-ide {
        background-position: left -700px bottom 200px, right -400px bottom 200px;
    }
}

@media (max-width: 991.98px) {
    section#sobre-ide {
        background-image: url("../../img/ide-ms/body-circuit.png");
        background-position: left -900px bottom;
        background-size: auto 100%, auto 980px;
    }
}

section#sobre-ide details {
    width: 100%;
    max-width: 935px;
    margin: 0 auto;
}

section#sobre-ide details summary {
    position: relative;
    list-style: none;
    padding-left: 65px;
    margin-bottom: 2.5rem;

    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: -0.75px;
    color: #144AA0;
}

section#sobre-ide details[open] summary {
    margin-bottom: 0;
}

section#sobre-ide details .content {
    padding: 1.5rem 0 2.5rem;

    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: -0.75px;
}

section#sobre-ide details .content p,
section#sobre-ide details .content ul {
    margin: 0;
}

section#sobre-ide details .content p {
    padding-left: 50px;
}

section#sobre-ide details .content ul {
    padding-left: 70px;
}

@media (max-width: 575.98px) {
    section#sobre-ide details summary {
        font-size: 22px;
    }

    section#sobre-ide details .content {
        font-size: 16px;
        line-height: 28px;
    }
}

/* Remove marcador padrão do WebKit */
section#sobre-ide details summary::-webkit-details-marker {
    display: none;
}

/* Adiciona a imagem do marker */
section#sobre-ide details summary::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url('../../img/ide-ms/arrow.png'); /* imagem do marker fechado */
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

/* Quando o details está aberto, rotaciona a seta ou muda a imagem */
section#sobre-ide details[open] summary::before {
    transform: translateY(-50%) rotate(90deg);
    /* ou trocar a imagem:
    background-image: url('seta-aberta.png');
    */
}

main section:last-child {
    background: #f0f5fd;
}

/* ---------------------------------------------------------------------------------- */

footer .main-footer {
    padding: 2rem 0;
    background-color: #0F64A1;
    background-image: url('../../img/ide-ms/footer-circuito.png');
    background-repeat: no-repeat;
    background-position-x: calc(50% + 170px);
    background-position-y: calc(100% + 60px);
    background-size: 430px auto;
    border-top: 6px solid #F5A131;
}

footer a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

footer ul li {
    line-height: 100%;
}

footer ul hr {
    border: 1px solid #1E8FDF;
    width: 40px;
}

footer .img-wrapper {
    height: 50px;
}

footer .img-wrapper.img-wrapper-left {
    border-right: 1px solid #F5A131;
}

footer .img-wrapper.img-wrapper-right {
    border-left: 1px solid #F5A131;
}

@media (max-width: 399.98px) {
    footer ul {
        flex-direction: column !important;
    }
}

@media (max-width: 575.98px) {
    footer .img-wrapper.img-wrapper-right img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 389.98px) {
    footer .img-wrapper.img-wrapper-left img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1399.98px) {
    footer .main-footer {
        background-image: none;
    }

    footer ul,
    footer .img-wrapper.img-wrapper-left,
    footer .img-wrapper.img-wrapper-right {
        border: none;
        margin: 0 auto !important;
    }

    footer .img-wrapper.img-wrapper-left {
    }

    footer .img-wrapper.img-wrapper-right {
        border: none;
    }

}

footer .powered-by {
    background: #064471;
}

footer .powered-by p {
    font-size: 14px;
    color: #fff;
}