@charset "UTF-8";
/* CSS Document */


/* ==========================
   VARIÁVEIS
   ========================== */
:root {
    --color-primary: #007bff;
    --color-secondary: #FBBA00;
    --color-bg-light: #EEF1F6;
    --color-bg: #ffffff;
    --color-secondary-bg: #1E316A;
    --color-text-titles: #1E316A;
    --color-text: #525252;
    --color-secondary-text: #ffffff;
    --font-base: "Montserrat", sans-serif;
}

/* ==============================
   ANIMATIONS
============================== */

@-webkit-keyframes animation-btn {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 37, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes animation-btn {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

/* ==============================
   BASE STYLES
============================== */

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-size: 19px;
    line-height: 27px;
}

.c-rounded {
    border-radius: 30px;
}

a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: underline;
}

.btn {
    border-radius: 20px;
    height: 53px;
    min-width: 150px;
    white-space: normal;
    border: none;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--color-secondary);
    font-size: 16px;
    outline: none;
    font-weight: 600;
    padding: 15px 20px;
    -webkit-transition: all ease-in-out 300ms;
    -moz-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
    transition: all ease-in-out 300ms;
    position: relative;
    line-height: 23px;
}

.btn:hover,
.btn:focus {
    color: #FFF;
    background-color: #111C3D;
    outline: none;
}

.btn-2 {
    background-color: var(--color-secondary-bg);
}

.btn-link{
    background: none;
    text-decoration: none;
    color:var(--color-text-titles);
    height: auto;
    min-width:auto;
}
.btn-link span{
    font-size: 17px;
    font-weight: 300;
}


.btn-link:hover,
.btn-link:focus {
    background: none;
    color:var(--color-secondary);
}
.wrap-btn{
    text-align: right;
}


/* ==============================
   HERO SECTION
============================== */
.hero-section {
    padding-top: 20px;
    padding-bottom: 200px;
    display: flex;
    align-items: center;
    background: url("../images/img-hero.jpg") no-repeat;
    background-size:cover;
    background-position: center center;
    color: var(--color-secondary-text);
    position: relative;
    min-height: 745px;
    padding-bottom: 10px;

}


.hero-section .wrap-logo {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
}

.hero-section .logo {
    max-width: 125px;
}

.hero-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 705px;
    margin: auto;
}

.hero-highlight h1 {
    line-height: 48px;
    font-size: 41px;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 5px;
    font-weight: 500;
    
}
.hero-section h2 {
    font-size: 17px;
    line-height: 23px;
    font-weight: 500;
}


.hero-highlight span {
    background-color: var(--color-secondary);
}

.hero-highlight img {
    max-width: 133px;
    margin-right: 20px;
}






/* ==============================
   SECTIONS 2
============================== */

.content-2,
.content-3 {
    padding-top: 70px;
}

.content-2 .max-width {
    max-width: 372px;
}
.content-2 h2{
max-width: 372px;
}
.content-2 h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 165px;
    height: 7px;
    background-color: var(--color-secondary);
}

.content-2 p span,
.content-3 p span,
.content-3 h2 span {
    color: var(--color-secondary);
    font-weight: bold;
}

.content-2 h2,
.content-3 h2 {
    font-size: 29px;
    color: var(--color-text-titles);
    position: relative;
}

.content-2 .container {
    position: relative;
    padding-bottom: 70px;
}

.content-2 .container:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 160px;
    width: 463px;
    height: 100px;
    background: url("../images/lines-2-right.png") no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

/* VIDEO */
.video {
    position: relative;
    padding: 0px;
    margin: 0px;
}

.video video {
    height: 100%;
    width: 100%;
    border: 5px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
}

.btn-play {
    cursor: pointer;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 4;
    background: rgb(255, 255, 255);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff", endColorstr="#fff", GradientType=1);
    -webkit-animation: animation-btn 1s linear infinite;
    animation: animation-btn 1s linear infinite;
    -webkit-transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play::before {
    position: absolute;

    content: '';
    width: 20px;
    height: 24px;

    background-image: url(../images/play.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

/* PARALLAX */
.parallax-bg {
    background-image: url(../images/img-1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
}

/* ==============================
   CONTENT 3,4,5,6
============================== */

.content-3 {
    padding-top: 70px;
    padding-bottom: 50px;
    position: relative;
    background-color: var(--color-bg-light);
}

.content-3 h3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 165px;
    height: 7px;
    background-color: var(--color-secondary);
    left: 0;
    right: 0;
    margin: auto;
}
.content-3 p{font-size: 18px; color:var(--color-text-titles); }
.content-3 h3 {
    font-size: 29px;
    color: var(--color-text-titles);
    position: relative;
    max-width: 418px;
    margin: auto;
    margin-bottom: 5px;
}

.content-3 .box {
    background-color: #fff;
    border-radius: 20px;
    min-height: 455px;

}

.content-3 .box .btn-link{
    margin-left: 15px;
    margin-bottom: 5px;
}

.content-3 .box img {
    border-radius: 20px;
}
.content-3 .box b{font-weight: 700;}
.content-3 .box h4 {
    font-size: 22px;
    line-height: 27px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.content-3 .box h5 {
    font-size: 22px;
    line-height: 27px;
    font-weight: 500;
    color: var(--color-text-titles);
}

.content-3 .box p, 
.content-3 .box ul li {
    font-size: 16px;
    line-height: 25px;
    color: #848484;
}
.content-3 .box ul{
    padding-left: 15px;
    padding-bottom: 15px;
    padding-top: 5px;
}
.content-3 .box ul li{
    margin-bottom: 3px;
}


.content-5 .line {
    width: 165px;
    height: 7px;
    display: block;
    margin: auto;
    background-color: var(--color-secondary);
    margin-bottom: 20px;
}

.content-5 {
    background-color: var(--color-secondary-bg);
    color: #ffffff;
    padding-bottom: 70px;
    padding-top: 70px;
    position: relative;
}

.content-5:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 319px;
    height: 514px;
    background: url("../images/lines-4-left.png") no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.content-5 .container {
    z-index: 1;
    position: relative;
}

.content-5 .catalogo img {
    max-width: 171px;
}

.content-5 .catalogo p span {
    color: var(--color-secondary);
    font-weight: 600;
}

.content-5 .catalogo {
    max-width: 670px;
    margin: auto;
}

.content-5 ul{
    text-align: left;
    padding-left: 15px;
}

.content-5 .catalogo p b {
    font-weight: 600;
}

.content-5 h2 {
    font-size: 29px;
}

.content-5 h3 {
    font-size: 17px;
}


/* ==============================
   FORM
============================== */

.form input {
    border-radius: 30px;
    outline: none;
    background-color: #ffffff;
    border: none;
    box-shadow: none;
    color: #172953;
    height: 45px;
}

.form label {
    font-size: 14px;
}

.form .form-control {
    border-radius: 10px;
    text-align: left;
    font-size: 14px;
    line-height: 19px;
    margin: 8px 0;
    padding: 20px;
}

.form .form-control:focus {
    box-shadow: none;
}

.form textarea {
    outline: none;
    border: none;
    box-shadow: none;
    font-size: 15px;
    margin: 8px 0;
    width: 100%;
    padding-left: 9px;
    color: #000000;
    resize: vertical;
    height: 93px;
}

.form .textCondicoes {
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
}

.form .textCondicoes a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: underline;
}

.form .textCondicoes a:hover {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: underline;
}

.form small {
    font-size: 12px;
}

.form .checkbox label {
    padding-left: 10px;
}

.form .checkbox {
    margin: 5px 0px;
}


input[type="checkbox"] {
    height: inherit;
}

.content-6 {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: var(--color-bg-light);
}
.content-6 h2 {
    font-size: 43px;
    color: var(--color-text-titles);
    position: relative;
}
.content-6 p {
    color: var(--color-text-titles);
    position: relative;
}
.content-6 p span{
    color: var(--color-secondary);
}
.content-6 .hero-img{
    max-width: 417px;
    width: 100%;
}

.content-6:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 210px;
    height: 263px;
    background: url("../images/lines-6-right-bottom.png") no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

/* ==============================
   FOOTER
============================== */

footer {
    background-color: var(--color-secondary-bg);
    border-top: 7px solid var(--color-secondary);
    color: #ffffff;
    font-size: 13px;
    padding-bottom: 70px;
    padding-top: 70px;
}

footer p {
    font-size: 13px;
    line-height: 24px;
}

footer p.title {
    color: var(--color-secondary);
    text-transform: uppercase;
}

footer p a {
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

footer .logo {
    max-width: 116px;
}



@media (max-width:1700px) {
    .content-3:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0px;
        width: 245px;
        height: 446px;
        background: url("../images/lines-2-left-bottom.png") no-repeat;
        background-size: contain;
        z-index: 0;
        pointer-events: none;
    }
}

@media (max-width:992px) {
    
    .hero-section h2 {
        font-size: 15px;
        line-height: 20px;
    }

    .hero-highlight {
        flex-direction: column;
    }

    .hero-section::after {
        right: -50px;
        bottom: -20px;
    }

    .hero-highlight img {
        margin-bottom: 10px;
        margin-right: 0px;
    }

    .hero-highlight h1,
    .hero-highlight h2 {
        text-align: center;
    }

    .hero-section-2,
    .content-2,
    .content-3,
    .content-4,
    .content-5 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .content-3 .align-items-stretch {
        row-gap: 20px;
        margin-top: 0px !important;
    }

    .content-3 .box-2 {
        padding: 25px 20px;
        padding-top: 0px;
    }

    .content-3 .box {
        margin-bottom: 20px;
    }

    .form .checkbox label {
        margin-top: -3px;
    }

    .form .checkbox {
        display: flex;
        align-items: flex-start;
    }

    footer p.title {
        margin-top: 20px;
    }

    .content-2 .max-width {
        max-width: 100%;
    }

    .video {
        margin-top: 20px;
    }

    .hero-section {
        overflow: hidden;
    }

    .content-2 .container:before {
        display: none;
    }

    .content-5:before {
        display: none;
    }

    .content-4:before {
        width: 159px;
        height: 290px;
    }
}

@media (max-width:767px) {

    .content-5 .catalogo {
        max-width: 400px;
    }

    .hero-section {
        height: 100vh;
        min-height: 600px;
    }


    .hero-section-2.hero-section .logo {
        max-width: 130px;
    }

    .hero-section-2.hero-section p {
        font-size: 13px;
        padding-top: 60px;
    }

    .hero-highlight h1, .content-6 h2{
        line-height: 40px;
        font-size: 35px;}
    
    .hero-section-2.hero-section .hero-highlight h1,
    .hero-section-2.hero-section .hero-highlight h2,
    .content-5 h2 {
        line-height: 31px;
        font-size: 27px;
    }

    .content-2 .container:before {
        width: 300px;
        display: block;
        height: 65px;
        right: 50px;
    }

    .content-2 h2,
    .content-3 h2,
    .content-4 h3,
    .content-4 .box-2 h3{
        font-size: 26px;
    }

    .content-3 .box-2 .icons img {
        max-width: 70px;
    }

    .content-3 .box-2 h4,
    p {
        font-size: 17px;
    }

    .content-3 .box {
        min-height: auto;
    }

    .content-3 .box h4 {
        font-size: 19px;
        line-height: 24px;
    }

    

    .content-3 p,
    .content-4 .box p,
    .content-5 h3 {
        font-size: 15px;
        line-height: 20px;
    }

    .content-5 .catalogo {
        flex-direction: column;
        text-align: center;
    }
    .content-5 .catalogo ul{
        margin-bottom: 0px;
    }

    .btn {
        font-size: 15px;
    }


    .video-wrap {
        padding: 5px;
        padding-bottom: 0px;
    }


    .content-2 .container,
    .content-3,
    .content-4,
    .content-5,
    .content-6,
    footer {
        padding-bottom: 50px;
    }
    .content-3 {padding-bottom: 30px;}
    .content-6{padding-bottom: 0px; text-align: center;}
    .content-6 .hero-img{max-width: 260px;}

    .content-2,
    .content-3,
    .content-4,
    .content-5,
    .content-6,
    footer {
        padding-top: 50px;
    }

    .content-5 .line,
    .content-2 h2:before,
    .content-4 h3:before {
        height: 5px;
    }
}
