@import url(reset.css);

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8vh;
    font-weight: 400;
    cursor: default;
    background-color: white;
    color: #201E1E;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: inherit;
}

/*header*/

header {
    padding: 2vh 0;
    height: 8vh;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    background-image: url(../img/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 12vh;
    height: 8vh;
}

.header__list {
    display: none;
}

.header__social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__social__item {
    font-size: 180%;
    margin-left: 2vh;
}

.header__social__item:hover {
    color: #FCB32F;
    cursor: pointer;
}

.header__bar {
    position: absolute;
    bottom: -2.3vh;
    background-color: #FCB32F;
    height: 0.5vh;
    border-radius: 1vh;
    z-index: 9;
    width: 80%;
    left: 10%;
}

.header__bar__center {
    position: absolute;
    height: 4vh;
    width: 20vh;
    background-color: #FCB32F;
    border-radius: 2vh;
    line-height: 4vh;
    text-align: center;
    top: -1.8vh;
    left: calc(50% - 10vh);
    font-size: 80%;
    font-weight: 700;
}

.header__bar__center i {
    margin-right: 1vh;
}

/*banner*/

.banner {
    background-image: url(../img/banner.jpg);
    height: 88vh;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner__fundo {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.banner__info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner__subtitle {
    color: white;
    letter-spacing: 1vh;
    margin-bottom: 1vh;
    text-transform: uppercase;
}

.banner__title {
    color: #FCB32F;
    font-size: 200%;
    text-align: center;
    line-height: 120%;
    font-weight: bold;
}

/*servicos*/

.servicos {
    padding: 8vh 0;
}

.servicos__title {
    color: #FCB32F;
    text-transform: uppercase;
    font-size: 150%;
    font-weight: bold;
    text-align: center;
}

.servicos__subtitle {
    margin-top: 1vh;
    font-size: 100%;
    color: #999999;
    margin-bottom: 2vh;
    text-align: center;
    line-height: 150%;
}

.servicos__list {
    position: relative;
}

.servicos__item {
    width: 100%;
    height: 25vh;
    background-color: #eeeeee;
    border-radius: 2vh;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.servicos__image {
    position: absolute;
    width: 100%;
    height: 20vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.5s ease;
    top: 0;
    background-origin: content-box;
    padding: 2vh;
    box-sizing: border-box;
}

.servicos__info {
    position: absolute;
    top: 20vh;
    left: 0;
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
    box-sizing: border-box;
    background-color: #FCB32F;
}

.servicos__name {
    text-align: center;
    transition: all 0.5s ease;
}

.servicos__left {
    position: absolute;
    bottom: 20vh;
    left: -2.5vh;
    background-color: #eeeeee;
    width: 5vh;
    height: 5vh;
    border-radius: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5vh solid white;
    font-size: 120%;
}

.servicos__right {
    position: absolute;
    bottom: 20vh;
    right: -2.5vh;
    background-color: #eeeeee;
    width: 5vh;
    height: 5vh;
    border-radius: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5vh solid white;
    font-size: 120%;
}

.servicos__left:hover {
    background-color: #FCB32F;
    cursor: pointer;
}

.servicos__right:hover {
    background-color: #FCB32F;
    cursor: pointer;
}

.servicos__button {
    text-align: center;
    margin-top: 5vh;
}

.servicos__button button {
    background-color: #FCB32F;
    border: none;
    padding: 1.5vh 3vh;
    border-radius: 3vh;
    font-size: 90%;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto;
    outline: none;
    cursor: pointer;
}

.servicos__button button:hover {
    background-color: #eeeeee;
    color: #FCB32F;
}

/*orcamento*/

.orcamento {
    padding: 8vh 0;
    background-color: #FCB32F;
}

.orcamento__title {
    text-transform: uppercase;
    font-size: 150%;
    text-align: center;
    font-weight: bold;
}

.orcamento__text {
    color: white;
    text-align: center;
    line-height: 150%;
    padding: 1vh 0 1.5vh 0;
}

.orcamento__botao {
    text-align: center;
}

.orcamento__botao button {
    background-color: #201E1E;
    border: none;
    padding: 1.5vh 3vh;
    border-radius: 3vh;
    font-size: 90%;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto;
    outline: none;
    cursor: pointer;
    color: white;
}

/*portfolio*/

.portfolio {
    padding: 8vh 0 7vh 0;
}

.portfolio__title {
    color: #FCB32F;
    text-transform: uppercase;
    font-size: 150%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2vh;
}

.portfolio__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0.5vh;
}

.portfolio__item {
    width: calc(50% - 1vh);
    height: 15vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3vh;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    margin: 0.5vh;
    border-radius: 2vh;
}

.portfolio__image {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.5s ease;
    transform: scale(1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.portfolio__item:hover .portfolio__image {
    transform: scale(1.2);
}

.portfolio__fundo {
    background-color: rgba(252, 179, 47, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio__item:hover .portfolio__fundo {
    opacity: 1;
}

.portfolio__name {
    color: white;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
    font-weight: 700;
    margin-bottom: 1vh;
    text-align: center;
    margin-top: 30vh;
}

.portfolio__servico {
    color: white;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
    text-align: center;
    line-height: 150%;
    font-size: 80%;
}

.portfolio__item:hover .portfolio__name {
    opacity: 1;
    margin-top: 0vh;
}

.portfolio__item:hover .portfolio__servico {
    opacity: 1;
}

.portfolio__categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.portfolio__categories__item {
    background-color: #eeeeee;
    padding: 1vh 2vh;
    border-radius: 2vh;
    margin: 0.5vh;
    font-size: 80%;
}

.portfolio__categories__item:hover {
    background-color: #eeeeee;
    color: #FCB32F;
    cursor: pointer;
}

.portfolio__categories__item.active {
    background-color: #FCB32F;
    color: #201E1E;
}

/*acm*/

.acm {
    padding: 8vh 0;
}

.acm__title {
    color: #FCB32F;
    text-transform: uppercase;
    font-size: 200%;
    text-align: center;
}

.acm__subtitle {
    margin-top: 1vh;
    font-size: 100%;
    color: #999999;
    margin-bottom: 2vh;
    text-align: center;
}

.acm__bar {
    background-color: #FCB32F;
    width: 10vh;
    height: 0.5vh;
    margin: 0 auto 5vh auto;
    border-radius: 2vh;
}

.acm__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.acm__item {
    width: 100%;
    margin-bottom: 2vh;
    border-radius: 2vh;
    background-color: #eeeeee;
    overflow: hidden;
}

.acm__item:nth-child(2n) {
    margin-bottom: 0;
}

.acm__image {
    width: 100%;
    height: 20vh;
    overflow: hidden;
}

.acm__image div {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 20vh;
    transition: all 0.5s ease;
}

.acm__name {
    text-align: center;
    padding: 2vh;
}

/*quemsomos*/

.quemsomos {
    padding: 8vh 0;
    background-color: #FCB32F;
    height: 60vh;
    position: relative;
}

.quemsomos .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
}

.quemsomos__title {
    text-transform: uppercase;
    font-size: 150%;
    font-weight: bold;
}

.quemsomos__images {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 30vh;
    position: absolute;
    top: 46vh;
    left: 0;
}

.quemsomos__none {
    width: 0;
}

.quemsomos__info {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.quemsomos__text {
    line-height: 150%;
    color: white;
}

.quemsomos__botao button {
    background-color: #201E1E;
    border: none;
    padding: 1.5vh 3vh;
    border-radius: 3vh;
    font-size: 90%;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto;
    outline: none;
    cursor: pointer;
    color: white;
}

/*contato*/

.contato {
    padding: 8vh 0;
}

.contato__title {
    color: #FCB32F;
    text-transform: uppercase;
    font-size: 150%;
    text-align: center;
    margin-bottom: 5vh;
    font-weight: bold;
}

.contato__form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.contato__input__50 {
    width: calc(50% - 1vh);
}

.contato__input__100 {
    width: 100%;
}

.contato__form input {
    width: 100%;
    padding: 1vh 1.5vh;
    background-color: #eeeeee;
    border: none;
    margin-bottom: 2vh;
    font-size: 100%;
    box-sizing: border-box;
    border-radius: 2vh;
    font-family: 'Poppins', sans-serif;
}

.contato__form textarea {
    width: 100%;
    padding: 1vh 1.5vh;
    background-color: #eeeeee;
    border: none;
    margin-bottom: 2vh;
    font-size: 100%;
    box-sizing: border-box;
    border-radius: 2vh;
    height: 20vh;
    font-family: 'Poppins', sans-serif;
}

.contato__form button {
    background-color: #FCB32F;
    border: none;
    padding: 1.5vh 3vh;
    border-radius: 3vh;
    font-size: 90%;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto;
    outline: none;
    cursor: pointer;
}

.contato__form button:hover {
    background-color: #eeeeee;
    color: #FCB32F;
}

.contato__div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contato__info {
    width: 100%;
    margin-top: 3vh;
}

.contato__item {
    margin-top: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato__icon {
    background-color: #FCB32F;
    width: 5vh;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3vh;
    font-size: 120%;
    color: #201E1E;
    margin-right: 1vh;
}

.contato__text {
    font-size: 100%;
    line-height: 150%;
}

.message {
    display: none;
    position: absolute;
    width: 80%;
    left: 10%;
    height: 4vh;
    top: calc(50% - 2vh);
    line-height: 4vh;
    text-align: center;
    border-radius: 2vh;
    background-color: #FCB32F;
    color: white;
}

/*clientes*/

.clientes {
    padding: 8vh 0;
    position: relative;
    background-color: #eeeeee;
}

.clientes__title {
    color: #FCB32F;
    text-transform: uppercase;
    font-size: 150%;
    text-align: center;
    font-weight: bold;
}

.clientes__logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5vh;
}

.clientes__image {
    width: 30%;
    height: 8vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.5s ease;
}

.clientes__image:nth-child(4),
.clientes__image:nth-child(5) {
    display: none;
}

/*footer*/

footer {
    background-color: #eeeeee;
    padding: 0;
}

.footer__budget {
    background-color: #FCB32F;
    text-align: center;
    padding: 2.5vh 0;
    font-size: 90%;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

.footer__budget:hover {
    background-color: #201E1E;
    color: #FCB32F;
}

.footer__map {
    width: 100%;
    height: 40vh;
    background-image: url(../img/map.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer__div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
}

.footer__endereco,
.footer__telefone,
.footer__horario {
    width: 100%;
    background-color: white;
    padding: 2vh;
    position: relative;
    box-sizing: border-box;
    border-radius: 2vh;
    margin-top: 5vh;
}

.footer__icon {
    position: absolute;
    top: -3vh;
    width: 6vh;
    height: 6vh;
    background-color: #FCB32F;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5vh;
    color: #201E1E;
    left: calc(50% - 3vh);
    border: 0.5vh solid white;
    box-sizing: border-box;
}

.footer__title {
    text-align: center;
    margin-top: 2vh;
    text-transform: uppercase;
    color: #FCB32F;
    font-weight: 700;
}

.footer__text {
    text-align: center;
    margin-top: 1vh;
    font-size: 80%;
    line-height: 150%;
}

.footer__text span {
    font-size: 150%;
    font-weight: 700;
}

.footer__logo {
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 10vh;
    cursor: pointer;
    margin-top: 5vh;
}

.footer__social {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4vh;
    margin-bottom: 4vh;
}

.footer__social__item {
    font-size: 3vh;
    color: #201E1E;
    margin: 0 1vh;
    background-color: white;
    width: 5vh;
    height: 5vh;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__social__item:hover {
    color: white;
    cursor: pointer;
    background-color: #FCB32F;
}

.footer__footer {
    background-color: #201E1E;
    padding: 2vh 0;
}

.footer__copy {
    color: white;
    font-size: 80%;
}

.footer__codepro {
    background-image: url(../img/codepro.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 4vh;
    height: 3vh;
    cursor: pointer;
}

.footer__whatsapp {
    position: fixed;
    right: 2vh;
    bottom: 2vh;
    background-color: #25D165;
    color: white;
    font-size: 3vh;
    width: 6vh;
    height: 6vh;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__whatsapp:hover {
    cursor: pointer;
    background-color: #eeeeee;
    color: #25D165;
}

/*page*/

.page {
    padding: 8vh 0;
}

.page__title {
    color: #FCB32F;
    text-transform: uppercase;
    font-size: 150%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 3vh;
}

.page__subtitle {
    margin-top: 1vh;
    font-size: 100%;
    color: #999999;
    margin-bottom: 2vh;
    text-align: center;
    line-height: 150%;
}

.page__bar {
    background-color: #FCB32F;
    width: 10vh;
    height: 0.5vh;
    margin: 0 auto 5vh auto;
    border-radius: 2vh;
}

.servicos__list2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.servicos__list2 .servicos__item {
    margin-bottom: 2vh;
}

.servicos__list2 .servicos__item:nth-child(1n) {
    margin-right: 0;
}

.page__div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page__image {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 30vh;
    border-radius: 2vh;
}

.page__text {
    margin-top: 5vh;
    width: 100%;
    line-height: 150%;
    text-align: center;
}

.page__text2 {
    line-height: 150%;
    text-align: center;
    margin-bottom: 3vh;
}

.page__list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page__item {
    width: calc(50% - 1vh);
    margin-bottom: 3vh;
    margin-right: 2vh;
    border: 5px solid #eeeeee;
    box-sizing: border-box;
    border-radius: 2vh;
    background-color: #eeeeee;
    overflow: hidden;
}

.page__item:nth-child(2n) {
    margin-right: 0;
}

.page__image2 {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 15vh;
}

.page__name {
    text-align: center;
    padding: 2vh;
    font-size: 1.5vh;
}

/*acm page*/

.acm2 {
    padding: 8vh 0;
}

.acm2__title {
    color: #FCB32F;
    text-transform: uppercase;
    font-size: 150%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 3vh;
}

.acm2__subtitle {
    margin-top: 1vh;
    font-size: 100%;
    color: #999999;
    margin-bottom: 2vh;
    text-align: center;
    line-height: 150%;
}

.acm2__bar {
    background-color: #FCB32F;
    width: 10vh;
    height: 0.5vh;
    margin: 0 auto 5vh auto;
    border-radius: 2vh;
}

.acm2__div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.acm2__text {
    width: 100%;
    line-height: 150%;
    text-align: center;
}

.acm2__subtext {
    color: #FCB32F;
    text-align: center;
    margin-top: 5vh;
    font-size: 2.5vh;
    margin-bottom: 2vh;
    font-weight: bold;
    text-transform: uppercase;
}

.acm2__div__text {
    width: 45%;
    margin-top: 1vh;
    line-height: 150%;
}

.acm2__image {
    text-align: center;
    margin-top: 2vh;
}

.acm2__image img {
    max-width: 100%;
}

.acm2__list {
    margin-top: 2vh;
    position: relative;
}

.acm2__item {
    width: calc(50% - 1vh - 10px);
    margin-right: 2vh;
    border: 5px solid #eeeeee;
    border-radius: 2vh;
    overflow: hidden;
}

.acm2__item__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 15vh;
    padding: 1vh;
    background-origin: content-box;
    box-sizing: border-box;
}

.acm2__item__name {
    background-color: #eeeeee;
    padding: 1vh;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.5vh;
}

.acm2__left {
    position: absolute;
    top: 7vh;
    left: -2.5vh;
    background-color: #eeeeee;
    width: 4vh;
    height: 4vh;
    border-radius: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5vh solid white;
    font-size: 100%;
}

.acm2__right {
    position: absolute;
    top: 7vh;
    right: -2.5vh;
    background-color: #eeeeee;
    width: 4vh;
    height: 4vh;
    border-radius: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5vh solid white;
    font-size: 100%;
}

.acm2__left:hover {
    background-color: #FCB32F;
    cursor: pointer;
}

.acm2__right:hover {
    background-color: #FCB32F;
    cursor: pointer;
}

/*mobile*/

.header__menu {
    font-size: 180%;
    margin-left: 2vh;
    color: #FCB32F;
}

.mobile {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #FCB32F;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
}

.mobile__item {
    font-size: 3vh;
    color: white;
    margin: 2vh 0;
    text-transform: uppercase;
}

.fechar {
    position: absolute;
    top: 2vh;
    right: 2vh;
    color: white;
    font-size: 3vh;
}