/* Smooth scrolling IF user doesn't have a preference due to motion sensitivities */

@media screen and (prefers-reduced-motion: no-preference) {
    html,
    body {
        scroll-behavior: smooth;
    }
}

.bgheader {
    background-color: #1f3667;
}

a,
a:hover {
    color: white;
}


/* Fontes */

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    color: #0dbafd;
}

.r {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 23px;
}

.r2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 18px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: white;
}

h2 span {
    color: #0dbafd;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #555555;
}

h3 strong {
    font-weight: 500;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: white;
}

.laranja {
    color: #ff6a13;
}

.branco {
    color: white;
}

.azulescuro {
    color: #1876b8;
}

.azulclaro {
    color: #0dbcff;
}

header {
    background: url(../images/header.jpg) no-repeat top center;
    background-size: cover;
    min-height: 640px;
    padding-top: 140px;
    padding-bottom: 140px;
}

#segmentos {
    background: url(../images/bg_segmentos.jpg) no-repeat top center;
    background-size: cover;
}

ul.produtos {
    list-style-image: url("../images/icone_lista.png");
    margin-top: 25px;
}

#atendimento {
    background: url(../images/bg_atendimento.jpg) no-repeat top center;
    background-size: cover;
}

#faq {
    background-color: #f5f5f5;
}

#rodape1 {
    background-color: #222e5c;
}

footer {
    background-color: #1f3667;
}


/* Botao laranja */

.btn-laranja {
    margin-top: 30px;
    padding: 1px 30px 1px 30px;
    border-radius: 20px;
    color: white;
    white-space: nowrap;
    /*text-transform: uppercase;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background-color: #ff6a13;
    transition: background-color 0.3s, color 0.3s;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -moz-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
}

.btn-laranja:hover {
    color: white;
    background-color: #df6e2c;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}


/* Botao laranja-branco */

.btn-laranjabranco {
    margin-top: 30px;
    padding: 1px 30px 1px 30px;
    border-radius: 20px;
    color: #ff6a13;
    border: 2px solid #ff6a13;
    /*text-transform: uppercase;*/
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background-color: white;
    transition: background-color 0.3s, color 0.3s;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -moz-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
}

.btn-laranjabranco:hover {
    color: #ff6a13;
    background-color: lightgrey;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}


/* FAQ */

.card-header A {
    color: #222e5c;
}

.card-body a,
.card-body a:hover {
    color: black;
}


/* Carousel */

.carousel-control-next,
.carousel-control-prev {
    width: 3%;
}


/* Botao do WhatsApp */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}