/*--------------------------------------------------------------

# GENERAL

--------------------------------------------------------------*/

body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #1bb1dc;
}

a:hover, a:active, a:focus {
    color: #0a98c0;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* BACK TO TOP BUTTON */

.back-to-top {
    position: fixed;
    display: none;
    background: #246695;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 100px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}

/*--------------------------------------------------------------

  # TOP BAR

  --------------------------------------------------------------*/

#topbar {
    padding: 0 0 5px 0;
    font-size: 14px;
    transition: all 0.5s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

#topbar .social-links {
    text-align: right;
    padding-top: 8px;
}

#topbar .social-links a {
    color: #fff;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    font-size: 24px;
}

#topbar .social-links a:hover {
    color: #1bb1dc;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------

  # HEADER

  --------------------------------------------------------------*/

#header {
    height: 110px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled, #header.header-pages {
    height: 70px;
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(136, 167, 242, 0.3);
}

#header.header-scrolled .logo img {
    margin: 0;
}

#header.header-scrolled #topbar, #header.header-pages #topbar {
    display: none;
}

#header .logo img {
    padding: 0;
    margin: 8px 0;
    max-height: 62px;
}

.main-pages {
    margin-top: 60px;
}

/*--------------------------------------------------------------

  # INTRO SECTION

  --------------------------------------------------------------*/

#intro {
    width: 100%;
    height: 540px;
    position: relative;
    background-image: url("../img/bg-produtos1.webp");
    background-attachment: fixed;
    box-shadow: 0px 0px 20px 30px #0003;
}

#intro destaque-span {
    font-weight: 300;
    color: #1bb1dc;
}

#intro .intro-info h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 50px;
    font-weight: 300;
}

#intro .intro-info .btn-get-started, #intro .intro-info .btn-produtos {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #1bb1dc;
    color: #fff;
}

#intro .intro-info .btn-get-started:hover, #intro .intro-info .btn-produtos:hover {
    background: #006d8d;
}

/*--------------------------------------------------------------

  # NAVIGATION MENU

  --------------------------------------------------------------*/

/* DESKTOP NAVIGATION */

.main-nav {
    /* Drop Down */
    /* Deep Drop Down */
    letter-spacing: 1px;
}

.main-nav, .main-nav * {
    margin: 0;
    padding: 4px 0;
    list-style: none;
}

.main-nav, .main-nav i {
    font-size: 12px;
}

.main-nav>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.main-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
}

.main-nav .btn-cliente {
    font-size: 14px;
    background-color: #1bb1dc;
    color: #fff;
    border-radius: 4px;
    padding: 4px 6px;
    border: 0;
    margin-right: 14px;
    font-weight: 600;
}

.main-nav .btn-cliente:hover {
    background-color: #4ce197;
    color: #fff;
}

#header.header-scrolled a {
    color: #959595 !important;
}

#header.header-scrolled a:hover {
    color: #1bb1dc !important;
}

#header .drop-down ul li>a:hover {
    color: #fff !important;
}

.main-nav a:hover, .main-nav .active>a, .main-nav li:hover>a {
    color: #1bb1dc;
    text-decoration: none;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    border-radius: 8px;
}

.main-nav .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}

.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #065e77;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active>a, .main-nav .drop-down ul li:hover>a {
    color: #fff;
    background-color: #1bb1dc;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down>a {
    padding-right: 35px;
}

.main-nav .drop-dawn i {
    position: absolute;
    right: 15px;
}

/* MOBILE NAVIGATION */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(22, 215, 255, 0.8);
    transition: 0.4s;
}

.mobile-nav button{
    border: 0;
    background-color: #45f0ff;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 2px 5px;
    margin: 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.mobile-nav button:hover{
    background-color: #40f4ce;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
    color: #31fffc;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\f077";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: #000;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(70, 70, 70, 0.6);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------

  # SECTIONS

  --------------------------------------------------------------*/

/* SECTIONS HEADER

  --------------------------------*/

.section-header h3 {
    font-size: 36px;
    color: #1879cc;
    text-align: center;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 60px;
    color: #353535;
    width: 70%;
}

/*********************** FORM LOGIN CENTRAL CLIENTE 
/************************/

#modalLogin .modal-content{
    color: #797979;
}

#modalLogin .modal-content label,
#modalLogin .modal-content i
{
    font-size: .9rem;
}

#modalLogin .modal-dialog{
    position: absolute;
    top: 30%;
    left: 80%;
    transform: translate(-50%, -50%);
}

#modalLogin .btn-form{
    text-align: center;
}

#modalLogin #btnEntrar{
    width: 100%;
    text-align: center;
    background-color: #1bb1dc;
    border-color: #1bb1dc;
}

#modalLogin #btnEntrar:hover{
    background-color: #1693b6;
}

#modalLogin input{
    margin-bottom: 10px;
}

.modal-backdrop {
    z-index: initial;
}

#modalLogin .modal-header img{
    width: 90%;
    opacity: .5;
    margin: 0 auto;
}

/* SECTION WITH BACKGROUND

  --------------------------------*/

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #263644;
    opacity: 0.7;
}

/* Portfolio Section

--------------------------------*/

#portfolio {
    padding: 40px 0 200px 0;
}

#portfolio .menu-modulos {
    display: flex;
    justify-content: right;
}

#portfolio h3 {
    font-size: 48px;
    padding: 40px 0 40px 0;
}

#portfolio #portfolio-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center;
}

#portfolio .height-teste {
    height: 500px !important;
    overflow: auto;
}

#portfolio #portfolio-flters li {
    cursor: pointer;
    margin: 10px 0;
    display: inline-block;
    padding: 6px 10px;
    font-size: 18px;
    line-height: 28px;
    color: #1879cc;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    font-weight: 600;
    width: 200px;
    height: 100px;
    border-radius: 4px;
    position: relative;
    box-shadow: inset 0px 0px 0px 2px #1879cc;
}

#portfolio .portfolio-item {
    max-width: none;
}

#portfolio .sub-items #portfolio-flters li {
    background-color: #336c9d;
    border-radius: 30% 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#portfolio #portfolio-flters li i {
    font-size: 34px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background-color: #1879cc;
}

#portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

#portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
    /* margin-bottom: 30px; */
}

#portfolio .portfolio-item .portfolio-wrap {
    overflow: hidden;
    position: relative;
    margin: 0;
    height: 180px;
    border: 1px solid #0001;
}

#portfolio .portfolio-item .texts-wrapper {
    padding: 020px;
}

#portfolio .portfolio-item .portfolio-wrap img {
    width: 50%;
    object-fit: cover;
}

#portfolio .portfolio-item .portfolio-wrap h4 {
    padding-left: 20px;
    font-weight: 600;
}

#portfolio .portfolio-item .portfolio-wrap p {
    padding: 0 20px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
    font-size: 22px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
    color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
    color: #1bb1dc;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #f8fcff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
    display: inline-block;
    line-height: 1;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #1bb1dc;
    border-radius: 50%;
    margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
    background: #42c3e8;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i, #portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
    color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
    background: #f9f9f9;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

#portfolio .filter-cargas{
    top: 0;
    left: 0;
}

/* TESTANDO */

#portfolio .box-items {
    width: 100%;
    height: 100%;
}

#portfolio .btn:focus {
    outline: none;
    box-shadow: none;
}

#portfolio .portfolio-item a {
    cursor: pointer;
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
    border: 1px solid #1879cc;
    padding: 2px 0;
}

#portfolio .portfolio-item a:hover {
    background-color: #1879cc;
    color: #fff;
}

#portfolio .portfolio-item .btn-modulo {
    background-color: #1879cc;
    color: #fff;
}

#portfolio .portfolio-item ul li {
    width: 100%;
}

.sub-items-wrapper .item-1 {
    background-color: #336c9d;
    border-radius: 30% 0;
    color: #FFF;
    margin: 20px 0;
    padding: 10px 20px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* SUB-ITEMS */

#portfolio .box-items span {
    transform: rotate(-90deg);
    font-size: 3rem;
    font-weight: 900;
    display: inline-block;
    position: absolute;
    left: -180px;
    opacity: .05;
    text-transform: uppercase;
    top: 250px;
}

#portfolio .box-contabeis span, #portfolio .box-tesouraria span {
    left: -120px;
    top: 200px;
}

#portfolio .box-manutencao-frota span, #portfolio .box-trafego span {
    left: -150px;
    top: 250px;
}

#portfolio .box-cargas span {
    left: -70px;
}

#portfolio #v-pills-tabContent {
    padding-left: 60px;
}

destaque-integracao {
    color: #0a98c0;
    font-weight: 900;
}

#portfolio .box-items h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #808080;
}

#portfolio .box-items p {
    font-size: 14px;
}

#portfolio .box-items .integracao-color {
    color: #1879cc !important;
}

#portfolio .box-items li {
    padding: 20px 0 10px 0;
    color: #336c9d;
    font-size: 1.2rem;
    font-weight: 600;
    list-style-type: none;
}

#portfolio .collapse-items a {
    background-color: #fff;
    color: #1879cc;
    border-radius: 4px;
    box-shadow: 0px 0px 0px 3px #1879cc;
    font-weight: 400;
    margin: 20px 5px 40px 10px;
}

#portfolio .section-header span {
    display: block;
}

/* #PRODUTOS SECTION

  --------------------------------*/

section#produtos {
    padding: 60px 0 100px 0;
    overflow: hidden;
    background-color: #1879cc;
}

#produtos .container {
    padding: 0;
}

#produtos .row .col-lg-4, #produtos .row .col-lg-8 {
    padding: 0;
    position: relative;
}

#produto-list {
    padding: 0;
    list-style: none;
}

#produto-list li {
    border-bottom: 1px solid #ebebeb;
    margin: 5px 0;
    padding: 0 20px;
    color: #818181;
}

#produto-list a {
    padding: 22px 0;
    display: block;
    position: relative;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    padding-right: 20px;
}

#produto-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 20px;
}

#produto-list p {
    margin-bottom: 20px;
}

#produto-list a.collapse {
    color: #686868;
}

#produto-list a.collapsed {
    color: #686868;
}

#produto-list a.collapsed i::before {
    content: "\f2c7" !important;
}

#produtos {
    padding: 90px 0 70px 0;
    background-color: #1f4368;
}

#produtos .dica {
    background-color: #1bb1dc;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.08);
}

#produtos .icon-dica-wrapper .dica:hover {
    background-color: #3cbc86;
    transform: scale(1.05);
}

#produtos .icon-dica2 {
    top: 330px;
    left: 420px;
}

#produtos .row {
    display: flex;
    justify-content: flex-end;
}

#produtos .produtos-wrapper {
    text-align: center !important;
}

#produtos .produto-wrapper h2 {
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

#produtos .produto-wrapper {
    text-align: center;
}

#produtos .produto-wrapper img {
    width: 80%;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.07);
}

#produtos .produto-wrapper p {
    color: #fff;
    padding: 20px 0;
}

#produtos .produtos-content {
    display: flex;
    flex-direction: row;
}

#produtos .produtos-content .col-lg-3, #produtos .produtos-content .col-lg-9 {
    padding: 0;
}

#produtos .box {
    height: 500px;
    text-align: center;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 10px 40px 10px;
    box-shadow: 0 20px 10px 0 rgba(68, 88, 144, 0.07);
    transition: all 0.3s ease-in-out;
}

#produtos .box p~a {
    color: #1bb1dc;
    width: 100px;
    height: 24px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
}

#produtos .img-thumbnail {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
}

#produtos .img-thumbnail img {
    width: 100%;
    height: 205px;
}

#produtos .box p:nth-child(3) {
    padding: 0 30px;
}

#produtos .produto-sub-item .box {
    margin-top: 30px;
    cursor: pointer;
}

#produtos .produto-sub-item h4 {
    font-size: 18px;
    font-weight: 500;
}

#produtos .box:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#produtos .icon {
    margin: 0 auto 15px auto;
    padding-top: 12px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: #353535;
}

#produtos .icon i {
    font-size: 24px;
    line-height: 1;
    color: #fff;
    padding: 5px 0px;
}

#produtos .title {
    font-weight: 700;
    margin: 15px 0;
    font-size: 18px;
}

#produtos .produto-sub-item .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

#produtos .title a {
    color: #4b4b4b;
    text-transform: uppercase;
}

#produtos .box:hover .title a {
    color: #1bb1dc;
}

#produtos .description {
    color: #5c5c5c;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
    text-align: center;
}

.produtos-window {
    background-color: #fff;
    border: 5px solid #000;
    border-radius: 4px;
    height: 70vh;
    max-width: 90vh;
    ;
    position: relative;
    left: 50%;
    top: 50%;
    display: none;
    transform: translate(-50%, -50%);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
}

.produtos-window h2 {
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
}


/*--------------------------------------------------------------

  # FOOTER

  --------------------------------------------------------------*/

  #footer {
    padding: 0 0 30px 0;
    font-size: 16px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/paisagem.webp');
}

#footer .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #3a4d99;
}

#footer .footer-top {
    padding: 90px 0;
}

#footer p {
    list-style-type: none;
    padding: 0 20px;
}

#footer .btn-footer a {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 38px;
    border-radius: 20px;
    transition: 0.3s;
    margin: 10px;
    color: #1bb1dc;
    background-color: #fff;
    text-transform: uppercase;
}

#footer .btn-footer a:hover {
    color: #fff;
    background-color: #33daf1;
}

#footer .footer-top .social-links a {
    font-size: 24px;
    display: inline-block;
    background: #fff;
    color: #1bb1dc;
    line-height: 1;
    padding: 6px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #33daf1;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1.5px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #dedede;
}

#footer .footer-top .footer-links ul a:hover {
    color: #33daf1;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #fff;
    font-size: 15px;
}

#footer .credits {
    text-align: center;
    font-size: 14px;
    padding-top: 4px;
}

#footer .credits a {
    color: #1bb1dc;
}

#footer .credits a:hover {
    color: #0a98c0;
}

/*--------------------------------------------------------------

  # RESPONSIVE MEDIA QUERIES

  --------------------------------------------------------------*/

@media (min-width: 992px) {
    #intro .intro-info {
        padding-top: 80px;
    }
}

@media (max-width: 991px) {
    #topbar {
        display: none;
    }
    #produtos span.dica {
        left: 250px;
        top: 370px;
    }
    #header {
        height: 70px;
        padding: 15px 0;
        background-color: rgba(0, 0, 0, 0.1);
    }
    #header .logo img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
        margin: 0;
    }
    .mobile-nav-toggle i {
        color: #1bb1dc;
        margin: 22px 18px 0 0;
    }
    #footer .footer-left {
        display: none;
    }
    #portfolio #portfolio-flters li {
        width: 160px;
    }
}

@media (max-width: 768px) {
    #footer .footer-top {
        display: none;
    }
    a.back-to-top {
        display: none !important;
    }
    #modalLogin .modal-dialog {
        left: 50%;
    }
}

@media (max-width: 767px) {
    #produtos span.dica {
        display: none;
    }
    #intro {
        height: auto;
        padding: 80px 0 60px 0;
    }
    #intro .container {
        height: auto !important;
    }
    #intro .intro-img {
        width: 80%;
    }
    #intro .intro-info {
        text-align: center;
        padding-top: 40px;
    }
    #intro .intro-info h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }
    .section-header p {
        width: 100%;
    }
}

@media (max-width: 574px) {
    .section-header h3 {
        font-size: 30px;
    }
    #produtos .produto-wrapper h2 {
        font-size: 2.5rem;
    }
    #footer .footer-top .social-links a {
        margin-bottom: 25px;
    }
    #footer .footer-top {
        display: none;
    }
}