@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    /* outline: 1px solid red !important; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #38475a;
    background: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

section {
    padding: 50px 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "poppins", sans-serif;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1140px
    }
}

.btn {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 12px 16px;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary);
    border-radius: 5px;
    border: 1px solid var(--primary);
	cursor:pointer;
	cursor:hand;
    color: #fff;
}

.btn:hover {
    background-color: #fff;
    color: var(--primary);
}

a.anchor {
    display: block;
    position: relative;
    top: -300px;
    visibility: hidden;
}

/* HEADER */
header {
    position: relative;
    padding: 12px;
    background-color: #fff;
}

header.fixed {
    box-shadow: 0px 4px 20px rgba(5, 47, 97, 0.08);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 3;
    animation: headerSlideDown .5s;
}

@keyframes headerSlideDown {
    from {top: -500px;}
    to {top: 0;}
}

header .container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
}

.logo {
    z-index: 2;
    max-width: 80%;
}

.logo img {
    max-height: 100px;
    display: block;
    z-index: 2;
    max-width: 100%;
}

.header__nav {
    margin-left: 40px;
    background-color: #fff;
}

.header__nav ul{    
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.header__nav__link {
    color: #74788E;
    font-size: 14px;
    margin: 8px 16px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    
}

.header__nav__link:hover {
    color: var(--primary);
}

.header__nav__link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 0px;
    background-color: var(--primary);
    transition: width .3s;
}

.header__nav__link:hover:before {
    width: 100%;
}

.header__btn {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: all 0.3s ease-in-out;
    padding: 8px 12px;
    font-size: 11px;
    text-decoration: none;
    margin-left: auto;
    border-radius: 5px;
}

.header__btn:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.header__togglemobile {
    display: none;
    margin-left: auto;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
}

.header__nav.mobile {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 20px 0;
    animation: slideDown;
    animation-duration: .2s;
    z-index: 2;
}

.header__nav.mobile ul {
    flex-flow: column nowrap;
    align-items: flex-start;
}

.header__nav.mobile .header__nav__link {
    display: inline-block;
}

.header__nav.mobile .header__btn {
    display: block;
    margin-left: 16px;
}

.header__nav .header__btn {
    display: none;
}

@keyframes slideDown {
    from {top: -227px;}
    to {top: 100%;}
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .header__togglemobile {
        display: block;
    }

    header {
        box-shadow: 0px 4px 20px rgb(5 47 97 / 8%);
    }
}
/* END HEADER */

/* MAIN */

main {
    width: 100%;
    height: 731px;
    background-color: #fff;
    padding: 100px 0;
    position: relative;
}

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

.main__col {
    z-index: 1;
}

.main__col__text {
    color: #fff;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

.main__form {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 350px;
    box-shadow: 0px 3px 13px rgba(56, 71, 90, 0.12);
    border-top: 4px solid var(--primary);
    border-radius: 6px;
    z-index: 1;
    margin-left: auto;
    padding: 20px;
    background-color: #fff;
}

.main__form form {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.main__form__text p {
    color: #84869a;
    /* margin-bottom: 20px; */
    text-align: center;
}

.main__form__text h4 {
    font-size: 22px;
    text-align: center;
}

.main__form form {
    margin-top: 20px;
    width: 100%;
}

.main__form input,
.main__form textarea
{
    margin-bottom: 15px;
    height: 45px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.main__form textarea {
    min-height: 90px;
}

.main__form__captcha {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

.main__form__captcha input {
    width: auto;
    margin-bottom: 0;
    text-align: center;
}

.main__form button {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}

.main__form button:hover {
    color: var(--primary);
    border-color: var(--primary);
    background-color: #fff;
}

.main__carousel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.main__carousel a {
    pointer-events: none;
    position: relative;
    height: 731px;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
}

.main__carousel img {
    width: 100%;
    height: 731px;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}

.main__carousel__text {
    max-width: 60%;
    color: #fff;
    text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

@media (max-width: 768px) {
    main {
        height: auto;
    }

    .main__col {
        width: 100%;
        margin: 20px 0;
    }

    main .container {
        flex-flow: row wrap;
    }

    .main__form {
        width: 100%;
    }
}
/* END MAIN */

/* MAISINFO */
.maisinfo {
    text-align: center;
    background-color: #f3f6f9;
    position: relative;
}

.maisinfo:before {
    position: absolute;
    content: '';
    background-image: url(images/shape1.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    bottom: 100%;
    left: 0;
    height: 82px;
}

.maisinfo h3 {
    font-size: 26px;
    font-weight: bold;
}

.maisinfo p {
    margin: 20px 0;
    text-align: center;
    color: #84869a;
}

.maisinfo .btn {
    text-decoration: none;
    display: inline-block;
}


/* END MAISINFO */

/* CAROUSEL */
.carousel {
    background-color: #f3f6f9;
    position: relative;
}

.carousel h3 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.carousel__slider__item {
    border-radius: 5px;
    overflow: hidden;
    margin: 10px 10px;
}

.carousel__slider__item img {
    max-height: 220px;
    transition: .3s;
    border-radius: 5px;
}

.carousel__slider__item:hover img {
    filter: brightness(1.2);
}
    
/* END CAROUSEL */

/* VIDEOS */
.videos h3 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.videos p {
    margin: 20px 0;
    text-align: center;
    color: #84869a;
}

.videos__content {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.videos__content iframe {
    width: calc(50% - 20px);
    height: 315px;
    border-radius: 5px;
    margin: 10px;
}

@media (max-width: 768px) {
    .videos__content iframe {
        width: 100%;
    }
}
/* END VIDEOS */

/* LOCALIZACAO */
.localizacao {
    padding-bottom: 0;
	padding-top: 100px;
}

.localizacao h3 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.localizacao ul {
    list-style: none;
    margin-bottom: 20px;
}

.localizacao p {
    text-align: center;
    color: #84869a;
}
/* END LOCALIZACAO */

/* RODAPE */
.rodape {
    background-color: #f3f6f9;
    padding: 0;
}

.rodape .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
}

.rodape__item {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: center;
}

.rodape__item i {
    width: 100px;
    height: 100px;
    font-size: 40px;
    color: #fff;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rodape__item span {
    color: #84869a;
    font-weight: bold;
}

.rodape__signature {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rodape__signature img {
    display: block;
}

@media (max-width: 768px) {
    .rodape .container {
        flex-flow: column wrap;
        justify-content: center;
        align-items: flex-start;
    }

    .rodape__item {
        margin: 10px 0;
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}
/* END RODAPE */