@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: 22px;
}

:root {
    --gray-1: #2D2B31;
    --gray-2: #4E4B4D;
    --yellow: #D6A328;
    --white: #FFFFFF;
    --white-2: #FAFAFA;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: var(--white-2);
}

.top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: fixed;
    z-index: 9999;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 60px;
    margin-top: 20px;
    padding: 0 10px;
    background-color: var(--white);
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
}

.logo a, .nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    width: 230px;
    height: 60px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.nav {
    justify-content: end;
    width: 900px;
    height: 60px;
    gap: 0 5px;
}

.nav > a, .dropdown > span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 40px;
    color: var(--gray-2);
    cursor: pointer;
}

.nav > a.ativ, .nav > a:hover, .dropdown > span.ativ {
    background-color: var(--yellow);
    color: var(--white);
    border-radius: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown span {
    gap: 5px;
}

.dropdown span img {
    transition: 0.3s ease-in-out;
}

.dropdown:hover span img {
    transform: rotateZ(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    width:300px;
    padding: 7px 10px;
    margin-top: 0;
    border-radius: 16px;
    background-color: var(--white-2);
    z-index: 1;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 8px 15px;
    margin: 2px 0;
    font-size: 0.9rem;
    color: var(--gray-1);
}

.dropdown-content img {
    max-width: 18px;
    height: 18px;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dropdown-content a:hover {
    color: var(--gray-2);
}

button#btnNav {
    display: none;
    width: 50px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

button .linha {
    width: 35px;
    height: 1px;
    border-bottom: 2px solid var(--gray-2);
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 700px;
    padding: 70px 70px 100px 70px;
    background: url(../img/hero_bg.jpg) no-repeat;
    background-position: top center;
}

.hero_title {
    display: flex;
}

.hero_title h1 {
    font-size: 3rem;
    line-height: 3.3rem;
    color: var(--gray-1);
    width: 50%;
    margin-top: 40px;
}

.hero_title span {
    color: var(--yellow);
}

.hero p {
    font-size: 1rem;
    font-weight: 600;
    width: 700px;

}

.hero a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    color: var(--white);
    font-weight: 500;
    font-size: .8rem;
    text-transform: uppercase;
    width: 160px;
    height: 40px;
    border-radius: 20px;
}

.hero a:hover {
    color: var(--gray-1);
    background-color: var(--white-2);
    border: 1px solid var(--yellow);
}

.logos {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 180px;
    white-space: nowrap;
    margin-top: -40px;
}

.logos h5 {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -170px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    height: 40px;
    padding: 0 20px;
    background-color: var(--yellow);
    color: var(--white);
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: flex;
    align-items: center;
    animation: 50s slide infinite linear;
    background-color: var(--white);
    height: 100px;
}

.logos-slide img {
    height: 80px;
    margin: 0 40px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.servicos_home {
    padding: 50px;
}
.servicos_home h5, .sobre_home h5, .contato_home h5 {
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.servicos_home h1, .sobre_home h1, .contato_home h1 {
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: var(--gray-1);
    margin-bottom: 10px;
}

.servicos_home p, .sobre_home p, .contato_home p {
    color: var(--gray-1);
    font-weight: 400;
    width: 100%;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
    width: 100%;
}

.card {
    position: relative;
    flex: 1 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 320px;
    height: 200px;
    padding: 20px;
    border-radius: 20px;
}

.card .titulo {
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 600;
}

.card a {
    position: absolute;
    right: 20px;
    bottom: 20px;
    border-radius: 20px;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: .8rem;
    cursor: pointer;
}

.card:nth-child(1) {
    background-color: var(--yellow);
}
.card:nth-child(1) .titulo {
    color: var(--white);
}
.card:nth-child(1) a {
    color: var(--white);
    border: 1px solid var(--white);

}

.card:nth-child(2) {
    background-color: #EAEAEA;
}
.card:nth-child(2) .titulo {
    color: var(--gray-1);
}
.card:nth-child(2) a {
    color: var(--gray-1);
    border: 1px solid var(--gray-1);

}

.card:nth-child(3) {
    background-color: #EFEFEF;
}
.card:nth-child(3) .titulo {
    color: var(--gray-1);
}
.card:nth-child(3) a {
    color: var(--gray-1);
    border: 1px solid var(--gray-1);
}

.sobre_home {
    position: relative;
    padding: 50px 50px 80px 50px;
    background-color: var(--white);
}

.sobre_home .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.sobre_home .content div {
    position: relative;
    margin-bottom: 20px;
}

.sobre_home p {
    position: relative;
    margin: 15px 0;
}

.sobre_home a {
    position: absolute;
    background-color: var(--yellow);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: .8rem;
    right: 20px;
}

.contato_home {
    padding: 80px 50px;    
}
.contato_home .grids {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 25px 0;
}
.contato_home .grid {
    width: 300px;
    flex: 1 auto;
    padding: 0 25px;
}
.contato_home .grid:nth-child(1) {
    display: flex;
    justify-content: center;
}
.contato_home p {
    font-size: .8rem;
    margin-bottom: 10px;
}
.contato_home a, .contato_home span {
    display: flex;
    align-items: center;
    gap: 5px;
    color:  var(--gray-1);
    width: auto;
    margin-bottom: 5px;
}
.contato_home a:hover {
    color: var(--yellow);
}

.contato_home a img, .contato_home span img {
    width: 20px;
    height: 20px;
}

.sobre, .servicos, .contato {
    margin-top: 80px;
    padding: 50px 50px 0 50px;
    background-color: var(--white-2);
}
.sobre h5, .servicos h5, .contato h5 {
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.sobre h1, .servicos h1, .contato h1 {
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: var(--gray-1);
    margin-bottom: 10px;
}

.sobre p, .servicos p, .contato p {
    color: var(--gray-1);
    font-weight: 400;
    width: 100%;
    margin-bottom: 10px;
}

.sobre_topico {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}
.sobre_topico h1 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.sobre_topico .topicos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sobre_topico .topicos span {
    text-align: center;
    width: 320px;
    flex: 1 auto;
    padding: 40px;
    margin: 5px 10px;
    border-radius: 5px;
    font-size: .85rem;
    text-transform: uppercase;
    color: var(--gray);
    background-color: var(--white);
    font-weight: 600;
}

.missao_visao_valores {
    background-color: var(--white-2);
    padding: 50px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: all 0.3s;
}
.missao_visao_valores details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: var(--yellow);
    border-radius: 25px;
    height: 45px;
    padding: 0 25px;
}

.missao_visao_valores details summary h5 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white);
}

.missao_visao_valores details summary img {
    width: 15px;
    height: 15px;
    margin-left: 15px;
    filter: invert(100%);
}

.missao_visao_valores div {
    height: auto;
}

.missao_visao_valores div p {
    margin: 10px 0;
    font-size: .9rem;
    text-align: justify;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
}

.missao_visao_valores div span {
    color: var(--yellow);
    font-weight: 600;
}

.missao_visao_valores h5 {
    color: var(--gray-1);
    font-size: 1.4rem;
}

.servicos_cards {
    padding: 0 50px;
}

.servicos_cards .cards {
    display: flex;
    gap: 15px;
}

.servicos_cards .cards .card {
    height: auto;
    padding: 25px;
}
.servicos_cards .cards .card .titulo {
    font-size: 1.5rem;
}
.servicos_cards .cards .card li {
    list-style: disc;
    margin-left: 15px;
}
.servico_topico {
    padding: 50px;
    background-color: var(--white);
}
.servico_topico h1 {
    font-size: 1.2rem;
    line-height: 1.5rem;
}
.servico_topico p {
    padding: 10px 0;
}
.servico_topico span {
    color: var(--yellow);
    font-weight: 600;
}

.sobre_topico#experiencia {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background-color: var(--white);
}
.sobre_topico#experiencia h5 {
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.sobre_topico .empresas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
    gap: 10px;
}

.empresas .empresa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 80px;
}
.empresas .empresa img {
    max-width: 100%;
    height: auto;
}

.sobre_topico#equipe {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background-color: var(--white-2);
}

.sobre_topico#equipe h5 {
    font-size: .8rem;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}


.sobre_topico#equipe h1 {
    line-height: 1.8rem;
}

.equipe_tecnica {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.member {
    padding: 40px;
    border-radius: 20px;
    background-color: var(--white);
}

.member p {
    text-align: justify;
    margin-bottom: 10px;
}

.member p span {
    color: var(--yellow);
    font-weight: 600;
}

.equipe_tecnica figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}
.equipe_tecnica figure figcaption {
    margin-top: 10px;
    color: var(--yellow);
    font-weight: 600;
    font-weight: 1rem;
    text-transform: uppercase;
}


.grid_contato {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    gap: 20px;
}

.grid_contato .grid {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    background-color: var(--white);
    border-radius: 20px;
}

.grid_contato .grid div {
    margin-bottom: -20px;
}

.grid_contato .grid img {
    width: 50px;
    height: 50px;
}

.grid_contato .grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    color: var(--white);
    padding: 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    border: 2px solid transparent;
}

.grid_contato .grid a:hover {
    background-color: var(--white);
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.grid_contato .grid .whatsapp {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}
.grid_contato .grid .telefone {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0 10px;
}
.grid_contato .whatsapp img, .grid_contato .telefone img {
    width: 25px;
    height: 25px;
}

.grid_contato .whatsapp a {
    background-color: transparent;
    color: var(--gray-1);
    font-size: 1rem;
    font-weight: 400;
    border: none;
}
.grid_contato .whatsapp a:hover {
    border: none;
    color: var(--yellow);
}

footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: var(--yellow);
    color: var(--white);
}
footer p {
    font-size: .8rem;
}

footer a {
    position: absolute;
    top: 15px;
    right: 25px;
}
footer a img {
    width: 58px;
    height: 20px;
}
@media (max-width: 900px) {
    .nav {
        visibility: hidden;
        position: absolute;
        right: 0;
        top: 70px;
        flex-direction: column;
        width: 180px;
        height: auto;
        padding: 10px;
        gap: 5px;
        background-color: var(--white);
        border-radius: 20px;
    }

    .nav > a, .dropdown > span {
        width: 160px;
        height: 40px;
        padding: 8px 15px;
        justify-content: flex-end;
        color: var(--gray-1);

    }

    .nav > a.ativ, .nav > a:hover, .dropdown > span:hover, .dropdown > span.ativ {
        color: var(--white);
        border: none;
    }

    .dropdown-content {
        margin-top: -35px;
        right: 130px;
        z-index: 99999;
    }

    button#btnNav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;     
        gap: 8px;   
    }

    .show {
        visibility: visible;
    }

    .servicos_home, .sobre_home, .contato_home, .sobre_topico, .sobre, .missao_visao_valores, .member, .servicos, .servicos_cards, .servico_topico, .contato, .grid_contato {
        padding: 40px 20px;
    }

    .sobre_home .content, .missao_visao_valores {
        grid-template-columns: repeat(1, 1fr);
    }

    .equipe_tecnica {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid_contato {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px;
    }
    .hero_title h1 {
        font-size: 2.5rem;
        line-height: 3rem;
        margin-top: 20px;
        width: 100%;
    }
    .hero p {
        width: 100%;
        margin-top: 0;
    }

    footer {
        flex-direction: column;
        height: 80px;
    }
    footer a {
        position: relative;
        top: 10px;
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 25px;
    }
    .hero_title h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-top: 0;
    }
}