@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

a,
button,
input[type="submit"] {
    outline: none !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
p {
    font-weight: 400;
}


body{
    background-image: url(../images/background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}

main{
    width: 90%;
    max-width: 600px;
    margin: auto;
    padding: 10px 0;
}

/* FONTS */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-light.woff2') format('woff2'),
        url('../fonts/montserrat-light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat Light';
    src: url('../fonts/montserrat-extralight.woff2') format('woff2'),
        url('../fonts/montserrat-extralight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat Bold';
    src: url('../fonts/montserrat-bold.woff2') format('woff2'),
        url('../fonts/montserrat-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat Black';
    src: url('../fonts/montserrat-black.woff2') format('woff2'),
        url('../fonts/montserrat-black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* HEADER */

header .logo-cliente{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
}
header .logo-cliente img{
    width: 100%;
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    padding: 10px;
    box-sizing: border-box;
}
header .title{
    text-align: center;
    font-family: 'Montserrat Light';
    font-size: 15px !important;
    color: #2984b8;
    line-height: 17px;
}
header .title h1{
    font-family: 'Montserrat Light';
    font-size: 15px !important;
    color: #2984b8;
    line-height: 17px;
}
header .title h1 strong{
    font-family: 'Montserrat Bold';
    display: block;
}

/* CONTENT - REALIDADE AUMENTADA */

.content-realidade-aumentada{
    width: 100%;
    margin: -15px 0;
    overflow: hidden;
    min-height: 497px;
    position: relative;
}
.content-realidade-aumentada iframe{
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
}

/* PASSO A PASSO */

.passo-a-passo{
    clear: both;
    width: 90%;
    max-width: 568px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto 50px;
    box-sizing: border-box;
    box-shadow: 0px 30px 30px -32px rgb(0 0 0 / 15%);
}
.passo-a-passo ul, .passo-a-passo ul li{
    list-style-type: none;
}
.passo-a-passo ul li{
    font-family: 'Montserrat Light';
    font-size: 14px;
    color: #676767;
    margin: 5px 0;
    line-height: 24px;
}
.passo-a-passo ul li img {
    width: 24px;
    object-fit: contain;
    display: inline-block;
    position: relative;
    top: 6px;
    left: 4px;
}

/* AVISO */

.aviso{
    font-family: 'Montserrat Light';
    font-size: 12px;
    line-height: 16px;
    color: #676767;
    text-align: center;
    float: left;
    width: 100%;
    margin: 35px 0 20px;
}

/* FOOTER */

footer .logo-inbuilt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}
footer .logo-inbuilt a{
    display: inline-block;
}
footer .logo-inbuilt a img{
    width: 60px;
    object-fit: contain;
}
footer .slogan {
    max-width: 460px;
    margin: auto;
}
footer .slogan h2{
    font-family: 'Montserrat Light';
    font-size: 14px;
    color: #676767;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 767px) {
}

@media (max-width: 575px) {
}