:root {
    --verde: #00A651;
    --azul: #005BAA;
    --amarelo: #FFD400;
}

body,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.topo {
    background: var(--verde);
    position: relative;
    z-index: 9999;
}

.topo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.topo .logo {
    background: url(../img/bg-logo-60mais.jpg) right center no-repeat;
    background-size: cover;
    display: block;
    min-width: 210px;
    position: relative;
    padding: 20px 0;
}

.topo .logo img {
    width: 80px;
}

.topo .logo:after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    display: block;
    background: var(--azul);
}

.topo .menu {
    display: flex;
    align-items: center;
}

.topo .menu a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 10px 8px;
    font-weight: bold;
}

.topo .menu li:hover a {
    background: var(--azul);
}

.topo .menu ul li {
    position: relative;
}

.topo .menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--azul);
    flex-direction: column;
    width: 250px;
}

.topo .menu ul li:hover ul {
    display: flex;
}

.topo .menu ul li ul a {
    padding: 15px;
}

.topo .menu ul li ul a:hover {
    background: var(--amarelo);
    color: var(--azul);
}

.topo .menu ul.menu > li:last-child > a {
    background: var(--amarelo);
    color: var(--verde);
    border-radius: 40px;
    padding: 12px 25px;
}


/* Intro */
section.intro {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.intro img {
    display: block;
    width: 100%;
}


/* Title */
.title__section {
    display: flex;
    gap: 50px;
    align-items: center;
    text-transform: uppercase;
}

.title__section h2 {
    display: flex;
    flex-direction: column;
    font-size: 40px;
}

.title__section h2 strong {
    display: block;
    font-size: 78px;
    font-weight: 900;
}

.title__section:after {
    content: '';
    width: auto;
    height: 100;
    background: url(../img/bg-title-60.png) center right no-repeat;
    display: block;
    flex: 1;
}

/* Conheça */
section.conheca {
    background: url(../img/bg-conheca-60.jpg) center center no-repeat;
    background-size: cover;
    padding: 90px 0;
}

section.conheca h2 {
    color: #fff;
}

section.conheca h3 {
    font-size: 36px;
    font-weight: bold;
    color: var(--amarelo);
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

section.conheca h4 {
    font-size: 48px;
    color: var(--amarelo);
    font-weight: bold;
    margin-bottom: 60px;
}

section.conheca .desc {
    margin-top: 60px;
    margin-bottom: 90px;
}

section.conheca .desc img {
    display: block;
    margin: auto;
}

section.conheca .desc .box {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    color: var(--azul);
    text-align: center;
}

section.conheca .desc .box p:not(:last-child) {
    margin-bottom: 30px;
}

section.conheca .bloco .row {
    align-items: center;
}

section.conheca .bloco p {
    font-size: 34px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
}


/* Projetos */
section.projetos {
    background:url(../img/fundo-verde.jpg) center center no-repeat var(--verde);
    background-size: cover;
    padding: 130px 0;
}

section.projetos h2 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 80px;
    color: var(--amarelo);
}

section.projetos .bloco:not(:last-child) {
    margin-bottom: 60px;
}

section.projetos h4 {
    background: #fff;
    padding: 30px;
    font-size: 36px;
    color: var(--azul);
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

section.projetos .bloco img {
    display: block;
    margin: auto;
}

section.projetos .bloco p {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}


/* Prioridades */
section.prioridades {
    background:url(../img/fundo-amarelo.jpg) center center no-repeat var(--amarelo);
    background-size: cover;
    padding: 130px 0;
    color: var(--azul);
}

section.prioridades h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1.3;
}

section.prioridades ul {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    gap:40px;
    justify-content: space-between;
}

section.prioridades ul li {
    position: relative;
    padding-left: 65px;
    width: calc(50% - 40px);
}

section.prioridades ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: var(--verde);
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


/* Informações */
section.informacoes {
    background:url(../img/bg-conheca-60.jpg) center center no-repeat var(--amarelo);
    background-size: cover;
    padding: 130px 0;
    color: #fff;
}

section.informacoes h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
    color: var(--amarelo);
}

section.informacoes ul {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    list-style: disc;
    list-style-position: inside;
    gap:20px;
    display: flex;
    flex-direction: column;
}


/* Conteudo */
section.conteudo {
    padding: 120px 0;
    background: url(../img/bg-conteudo.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

section.conteudo h2 {
    color: var(--azul);
}

section.conteudo .title__section {
    margin-bottom: 120px;
}

section.conteudo .stories {
    display: flex;
    gap: 45px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
}

section.conteudo .stories .bloco {
    width: 100%;
}

section.conteudo .stories .bloco:nth-child(2) {
    transform: scale(1.2);
}

section.conteudo .stories iframe {
    width: 100% !important;
}

section.conteudo .galeria {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    flex-wrap: wrap;
}

section.conteudo .galeria a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}


/* Filiacao */
section.filiacao {
    background: url(../img/bg-filiacao-60.jpg) top center no-repeat #000;
    background-size: auto;
    position: relative;
    padding-top: 90px;
}
section.filiacao .container {
    position: relative;
    z-index: 2;
}

section.filiacao h2 {
    font-size: 54px;
    color: var(--azul);
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 80px;
    background: url(../img/after-title.png) bottom left no-repeat;
}

section.filiacao .content {
    margin: auto;
    margin-top: 700px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 79%);
    color: #fff;
    display: table;
    width: 100%;
}

section.filiacao .content .container {
    width: 980px;
}

section.filiacao h3 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 30px;
}

section.filiacao .content p {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px;
}

section.filiacao a {
    display: table;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 90px;
    padding: 20px 50px;
    background: var(--amarelo);
    border-radius: 30px;
    color: var(--verde);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}


/* Contato */
section.contato {
    background: var(--azul);
    padding: 30px 0;
}

section.contato .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

section.contato h2 {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    gap: 15px;
    align-items: center;
}

section.contato h2 i {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: var(--amarelo);
    color: var(--azul);
    font-size: 36px;
}

section.contato a {
    display: block;
    padding: 15px 35px;
    border-radius: 50px;
    color: var(--amarelo);
    background: var(--verde);
    font-size: 18px;
    font-weight: bold;
}

/* Estados */
section.estados {
    padding: 120px 0;
    background: var(--amarelo);
}

section.estados .title__section {
    color: var(--azul);
}

.title__section:after {
    background: url(../img/bg-title-60-estados.png) center right no-repeat;
}

section.estados .contato a {
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
    background: var(--azul);
    display: table;
}

section.estados .intro {
    font-size: 24px;
    margin: 30px 0;
    color: var(--azul);
    font-weight: bold;
    text-transform: uppercase;
}


section.estados .row {
    align-items: center;
}

#lista-representante .box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 50px #00000014;
}

#lista-representante h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--azul);
    margin-bottom: 10px;
}

#lista-representante p {
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
}

#lista-representante .box:after {
    content: '';
    display: block;
    width: 106px;
    height: 5px;
    background: var(--azul);
    position: absolute;
    top: calc(50% - 2px);
    right: calc(100% - 15px);
}

#lista-representante .box:before {
    content: '';
    display: block;
    width: 20px;
    height: 19px;
    background: var(--azul);
    border-radius: 50%;
    position: absolute;
    right: calc(100% + 91px);
    top: calc(50% - 9px);
}


@media (max-width:1140px) {
    .topo .menu {
        display: none;
    }
}

@media (max-width:998px) {
    section.conheca .bloco {
        margin-bottom: 30px;
        text-align: center;
    }

    section.conheca h3 {
        font-size: 24px;
        margin: 15px 0;
    }

    section.conheca .bloco p {
        font-size: 16px;
        line-height: 1.4;
    }

    section.conheca .bloco img {
        margin-top: 30px;
    }

    section.conteudo .stories {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    section.conteudo .title__section {
        margin-bottom: 30px;
    }

    section.conteudo .stories .bloco:nth-child(2) {
        transform: none;
    }

    section.conteudo .galeria {
        grid-template-columns: repeat(2, 1fr);
    }

    section.filiacao h2 {
        font-size: 36px;
    }

    section.filiacao .content .container {
        width: 90%;
    }
    
    section.filiacao h3 {
        font-size: 36px;
    }

    section.filiacao .content p {
        font-size: 18px;
    }

    .title__section h2 {
        font-size: 24px;
    }

    section.estados .intro {
        text-align: center;
        line-height: 1.3;
    }

    #lista-representante .box:before,
    #lista-representante .box::after {
        display: none;
    }

    section.contato .container {
        justify-content: center;
    }

    section.contato a {
        font-size: 14px;
    }

    section.contato h2 {
        font-size: 16px;
    }

    section.prioridades ul li {
        width: 100%;
    }
}