
/* 
    Created on : 3 de jun. de 2024, 18:33:41
    Author     : tiago
*/

body {
    overflow-x: hidden;
    background-color: #414141;
}

.raleway {
    font-family: "Raleway", sans-serif;
    /*font-optical-sizing: auto;*/
    /*font-weight: <weight>;*/
    font-weight: 500;
    font-style: normal;
}


.pt-serif-regular {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.pt-serif-bold {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: normal;
}

.pt-serif-regular-italic {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.pt-serif-bold-italic {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: italic;
}




:root {
    --font-default: "Raleway",sans-serif ;
    --font-primary: "Raleway", sans-serif;
    --font-secondary: "PT Serif", sans-serif;
    --font-alternative: "Roboto", sans-serif;
}

/* Colors */
:root {
    /*--color-default: #364d59;*/
    --color-default: #fff;
    --color-primary: #D6385B;
    --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    padding: 50px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f6f7;
}

.section-header {
    text-align: center;
    padding-bottom: 70px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    display: inline-block;
}

.section-header h2:before {
    margin: 0 15px 10px 0;
}

.section-header h2:after {
    margin: 0 0 10px 15px;
}

.section-header p {
    margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
    .section-header p {
        max-width: 60%;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    z-index: 997;
    position: absolute;
    padding: 15px 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .7);
}

.header .container-header{
    max-width: 980px;
    margin: auto;
}

.header .logo img {
    height: 92px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.header .logo h1 span {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
    .navbar a:focus {
        font-family: var(--font-primary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 6px;
        font-size: 19px;
        font-weight: 700;
        font-style: normal;
        color: #fff;
        text-transform: uppercase;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-decoration: none;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 19px;
        line-height: 0;
        margin-left: 5px;

    }

    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-primary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #D6385B;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
        transition: 0.3s;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--color-default);
        font-weight: 400;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
    }

    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {

    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-primary);
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #222428;
    }

    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        position: relative;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        padding-right: 10px;
    }

    .mobile-nav-hide {
        color: #fff;
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

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

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9996;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    overflow-x: hidden;
    padding: 0;
}

.hero .carousel {
    /*width: 100%;*/
    min-height: 100vh;
    padding: 80px 0;
    margin: 0;
    /*margin-top: 150px;*/
    position: relative;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
    transition-duration: 0.4s;
}

.hero .carousel-item::before {
    content: "";
    /*background-color: rgba(0, 0, 0, 0.7);*/
    position: absolute;
    inset: 0;
}

.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding-top: 320px;
}

.hero .info h2 {
    font-family: var(--font-secondary);
    color: var(--color-primary);
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 47px;
    font-weight: 600;
    position: relative;
}

.hero .info p {
    color: #fff;
    font-size: 25px;
    line-height: 42px;
    font-weight: 400;
    max-width: 763px;
    margin: auto;
    font-family: var(--font-primary);
}

.hero .info p .destaque{
    color: var(--color-primary);
    font-weight: 700;
}

.hero .info .ditado{
    font-size: 21px;
    font-weight: 400;
    max-width: 627px;
    margin-top: 100px;
    line-height: 32px;
}

.hero .info .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 70px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    margin-top: 20px;
    color: #fff;
    border: 2px solid var(--color-primary);
    background: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
}

.hero .info .btn-get-started:hover {
    background: var(--color-primary);
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}


@media (max-width: 1400px) {
    .hero .info {
        position: absolute;
        inset: 0;
        z-index: 2;
        padding-top: 275px;
    }

    .hero .info h2 {
        font-size: 47px;
    }
    .hero .info .ditado{
        margin-top: 20px;
    }
}

@media (max-width: 1200px) {

}
@media (max-width: 767px) {
    .header .logo img {
        margin-left: -160%;
        text-align: center;
    }
    .hero .container-hero{
        min-width: 100%;
    }

    .hero .info h2 {
        font-size: 30px;
        line-height: 30px;
        font-weight: 600;
    }

    .hero .info p {
        color: #fff;
        font-size: 17px;
        line-height: 27px;
        max-width: 315px;
        margin: auto;
    }

    .hero .info .ditado{
        font-size: 14px;
        max-width: 627px;
        margin-top: 35px;
        line-height: 22px;
        max-width: 277px;
    }

    .hero .info .btn-get-started {
        font-family: var(--font-primary);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        margin: 10px;
        margin-top: 30px;
        color: #fff;
        border: 2px solid var(--color-primary);
        background: var(--color-primary);
        text-decoration: none;
        text-transform: uppercase;
    }


}

/*--------------------------------------------------------------
# Sobre Section
--------------------------------------------------------------*/


.sobre .title{
    font-family: var(--font-secondary);
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 600;
}

.sobre p{
    font-family: var(--font-primary);
    color: var(--color-default);
    font-size: 14px;
    max-width: 590px;
}

@media (max-width: 768px) {
    .sobre .title{
        max-width: 342px;
        margin: 20px auto 20px;
    }
    .sobre p{
        max-width: 340px;
        font-size: 12px;
        margin: auto;
        margin-bottom: 16px;
    }

    .sobre img{
        margin-top: 30px;
    }
}


/*--------------------------------------------------------------
# Missão Section
--------------------------------------------------------------*/

.missao h2{
    color: var(--color-primary);
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 600;
    border-bottom: 2px solid;
    max-width: 170px;
}

.missao p {
    color: var(--color-default);
    font-size: 14px;
    max-width: 298px;
}

.missao ul li{
    color: var(--color-default);
    /*padding-left: 0px !important;*/
    font-size: 15px;
    /*list-style: none;*/
}
li::marker {
    color: var(--color-primary);
    font-size: 16px;

}
.missao ol, ul {
    padding-left: 1.3rem;
}

.missao .btn-missao {
    color: var(--color-default);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    /*border: 1px solid;*/
    border-radius: 2.5rem;
    padding: 15px 80px;
    background-color: var(--color-primary);
    margin-top: 60px;
}

@media (max-width: 768px) {
    .missao h2{
        text-align: center;
        margin: auto;
        margin-top: 30px;
    }

    .missao p {
        text-align: center;
        max-width: 203px;
        margin: 10px auto 0px;
    }

    .missao ul{
        max-width: 230px;
        margin: 10px auto;
    }

    .missao .btn-missao {
        margin-top: 30px;
        padding: 10px 40px;
    }
}



/*--------------------------------------------------------------
# Widget Section
--------------------------------------------------------------*/
.widget {
    background-color: var(--color-primary);
}

.widget h1{
    color: var(--color-default);
    font-family: var(--font-secondary);
    font-size: 47px;
    line-height: 47px;
    font-weight: 600;
    max-width: 763px;
    margin: auto;
}



@media (max-width: 767px) {
    .widget h1 {
        font-size: 20px;
        line-height: 33px;
        max-width: 298px;
        margin: auto;
    }
}

/*--------------------------------------------------------------
# Apresentação Section
--------------------------------------------------------------*/

#apresentacao video {
    max-height: 70vh;

}

#apresentacao h1{
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 600;
    color: var(--color-default);
    text-align: center;
    margin-bottom: 30px;
}

#apresentacao h1 span {
    color:  var(--color-primary);
}

#apresentacao .video-institucional {
    max-width: 70vh;
    margin: 50px auto 20px;
    background-color: #474747;
    border: none;
}

#aprentacao .image-content,
#apresentacao .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

#apresentacao .card-img-overlay {
    position: absolute;
    top: 40%;
    right: 0;
    bottom: 0;
    left: 45%;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

@media (max-width: 768px) { 

    #apresentacao .card-img-overlay {
        position: absolute;
        top: 30%;
        right: 0;
        bottom: 0;
        left: 40%;
        padding: 1rem;
        border-radius: calc(0.25rem - 1px);
    }

    #apresentacao .icone-play{
        max-width: 50px;
    }

}

/*--------------------------------------------------------------
# Serviços Section
--------------------------------------------------------------*/

.servicos h1 {
    color: var(--color-primary);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 38px;
}


.servicos .tile a {
    text-decoration: none;
    color: var(--color-default);
}

.dimbox-caption {
    font-family: var(--font-primary);
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
}

.servicos .tile
{
    /*width:395px;*/
    /*height:239px;*/
    min-height: 379px;
    height: 100%;
    /*width: 100%;*/
    /*height: 100%;*/
    /*background-color:#99aeff;*/
    background-color: #000;
    ;
    /*display:inline-block;*/
    background-size: cover;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease-out;
    box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.04);
    overflow: hidden;
    color: white;


}
.servicos .tile img
{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all 0.4s ease-out;
    object-fit: cover;
    object-position: center;
}
.servicos .tile .text
{
    /*   z-index:99; */
    position: absolute;
    padding: 15px 30px;
    height: calc(100% - 60px);
}
.servicos .tile h1
{
    font-weight: 300;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.servicos .tile h2
{
    font-family: var(--font-primary);
    font-size: 43px;
    font-weight: 700;
    margin: 10px 0 0 0;
    transform: translateX(200px);
}
.servicos .tile p
{
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 400;
    margin: 20px 0 0 0;
    line-height: 25px;
    /*   opacity:0; */
    transform: translateX(-200px);
    transition-delay: 0.2s;
}
.servicos .animate-text
{
    opacity:0;
    transition: all 0.6s ease-in-out;
}
.servicos .tile:hover
{
    /*   background-color:#99aeff; */
    box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
    transform: scale(1.05);
}
.servicos .tile:hover img
{
    opacity: 0.2;
}
.servicos .tile:hover .animate-text
{
    transform:translateX(0);
    opacity: 1;
}



@media (max-width: 980px) {
    .servicos .tile h2
    {
        font-family: var(--font-primary);
        font-size: 38px;
        font-weight: 700;
        margin: 10px 0 0 0;
        transform: translateX(200px);
    }
    .servicos .tile p
    {
        font-family: var(--font-primary);
        font-size: 19px;
        font-weight: 400;
        margin: 20px 0 0 0;
        line-height: 25px;
        /*   opacity:0; */
        transform: translateX(-200px);
        transition-delay: 0.2s;
    }
}
@media (max-width: 767px) {
    .servicos .tile
    {
        min-height: 215px;
    }

    .servicos .tile .text
    {
        padding: 10px 10px;
    }

    .servicos .tile h2
    {
        font-family: var(--font-primary);
        font-size: 15px;
        margin: 5px 0 0 0;
        transform: translateX(-200px);
    }
    .servicos .tile p
    {
        font-family: var(--font-primary);
        font-size: 11px;
        font-weight: 400;
        margin: 7px 0 0 0;
        line-height: 14px;
        /*   opacity:0; */
        transform: translateX(-200px);
        transition-delay: 0.2s;
    }
    .dimbox-caption {
        font-size: 15px;
        max-width: 800px;
        margin: auto;
        margin-top: 20px;
    }


    .servicos .animate-text
    {
        opacity:0;
        transition: all 0.6s ease-in-out;
    }
    .servicos .tile
    {
        /*   background-color:#99aeff; */
        box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
        /*transform: scale(1.05);*/
    }
    .servicos .tile img
    {
        opacity: 0.4;
    }
    .servicos .tile .animate-text
    {
        transform:translateX(0);
        opacity: 1;
    }
    
}

/*--------------------------------------------------------------
# Clientes Section
--------------------------------------------------------------*/

#clientes {
    background-color: #000;
    padding-bottom: 0px;
}

.clientes .container-cliente{
    /*max-width: 980px;*/
}

.clientes .container-cliente-logo{
    background-color: var(--color-primary);
    padding-left: 20px;
    padding-right: 20px;
}
.clientes h1{
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    color: var(--color-default);
    margin-bottom: 60px;
}

.clientes h1 span {
    color: var(--color-primary);
}

.clientes .item h5{
    font-family: var(--font-alternative);
    font-size: 50px;
    color: var(--color-primary);
    font-weight: 600;
    text-align: right;
    margin-bottom: 0px;
}

.clientes .item p{
    font-family: var(--font-primary);
    color: var(--color-default);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 7px;
    /*margin-left: -10px;*/
}

.clientes .clientes-slider{
    margin-top: 90px;
    /*margin-bottom: 40px;*/
}

.clientes .clientes-slider img{
    max-height: 90px;
    object-fit: cover;
    object-position: bottom;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .clientes h1 {
        font-size: 35px;
        line-height: 35px;
    }
    
    .mt-impresso {
        text-align: center !important;
    }
    
/*    .clientes .swiper-slide{
        border: 2px solid red;
    }*/
}


/*--------------------------------------------------------------
# Feedback Section
--------------------------------------------------------------*/

.feedback h1{
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 600;
    color: var(--color-default);
    text-align: center;
    margin-bottom: 30px;
}

.feedback h1 span {
    color:  var(--color-primary);
}

.feedback video {
    max-height: 490px;

}

.feedback .btn-feedback {
    color: var(--color-default);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    /*border: 1px solid;*/
    border-radius: 2.5rem;
    padding: 15px 50px;
    background-color: var(--color-primary);
    margin-top: 60px;
}

@media (max-width: 1400px) {
    .feedback video {
        max-height: 410px;

    }
}
@media (max-width: 767px) {
    .feedback h1{
        font-size: 35px;
    }

    .feedback video {
        max-height: 282px;

    }
}

.feedback .video-institucional {
    max-height:  446px;
    margin: 50px auto 20px;
    background-color: #414141;
    border: none;
}

.feedback .image-content,
.feedback .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
    max-height: 446px;
}

.feedback .card-img-overlay {
    position: absolute;
    top: 40%;
    right: 0;
    bottom: 0;
    left: 45%;
    padding: 1rem;
    border-radius: calc(0.25rem - 1px);
}

.feedback .card-img-overlay-video03 {
    left: 35% !important;
}
.feedback .card-img-overlay-video02 {
    left: auto !important;
    right: 30%;
}

@media (max-width: 768px) { 

    .feedback .card-img-overlay {
        position: absolute;
        top: 30%;
        right: 0;
        bottom: 0;
        left: 40%;
        
        /* padding: 1rem; */
        border-radius: calc(0.25rem - 1px);
    }
    .feedback .card-img-overlay-video03 {
        left: 20% !important;
    }
    .feedback .card-img-overlay-video02 {
        left: auto !important;
        right: 20%;
    }

    .feedback .icone-play{
        max-width: 50px;
        
    }

}


/*--------------------------------------------------------------
# Projetos Section
--------------------------------------------------------------*/
.projetos h1 {
    font-family: var(--font-secondary);
    color: var(--color-primary);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #000;    
    margin-bottom: 0px;
}

.projetos .titulo {
}


/* clear fix */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
    /*width: 33.333%;*/
    /*float: left;*/
    height: 185px;
    /*width: 205.91px;*/
    width: 10%;
}

.grid-item {
    float: left;
}

.grid-item img {
    display: block;
    /*max-width: 100%;*/
    /*height: 100%;*/
    /*max-width: auto;*/
}

.grid-item--width2 {
    width: 20%;
}
/*.grid-item--width3 { width: 116.48px; }*/
.grid-item--height2 {
    height: 205px;
}


.grid .grid-item .img-fluid{
    /*min-height: 100%;*/
    /*height: auto;*/
    height: 100%;
    min-width: 100%;
    /*width:  auto;*/
    object-fit: cover;
    object-position: center;
}

.grid-item{
    /*-webkit-filter:grayscale(0%);*/
    filter: brightness(100%);

}
.grid-item:hover{
    /*-webkit-filter:grayscale(100%);*/
    filter: brightness(50%);
    /*background: rgba(0, 0, 0, 0.7);*/
    transition: .9s;
}

.dimbox-btn-download {
    /*display: none;*/
}

@media (max-width: 1400px) {
    .grid-sizer,
    .grid-item {
        height: 185px;
        width: 12.5%;
    }
    .grid-item--width2 {
        width: 25%;
    }
}
@media (max-width: 980px) {
    .grid-sizer,
    .grid-item {
        height: 185px;
        width: 16.666%;
    }
    .grid-item--width2 {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .grid-sizer,
    .grid-item {
        height: 133px;
        width: 25%;
        padding: 5px !important;
    }
    .grid-item--width2 {
        width: 50%;
    }
    .grid .grid-item .img-fluid{
    }
}

/*--------------------------------------------------------------
# Localizacao Section
--------------------------------------------------------------*/

.localizacao h1{
    color: var(--color-default);
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.localizacao iframe {
    border-radius: 20px;
}

@media (max-width: 767px) {
    .localizacao h1{
        font-size: 35px;

    }
    .ratio-21x9 {
        --bs-aspect-ratio: 90.8571428571%;
    }

}
/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

#footer{
    margin-top: 40px;
    margin-bottom: 40px;
}

.footer .logo-footer{
    max-height: 127px;
    margin-bottom: 20px;
}

.footer p{
    color: var(--color-default);
    max-width: 283px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
}

.footer h3{
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-default);
    font-size: 23px;
    margin-top: 7px;
    margin-bottom: 15px;
}

.footer p a{
    text-decoration: none;
    color: var(--color-default);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 400;
    margin-top: 15px;
}

.footer a .bi {
    color: var(--color-primary);
    font-size: 21px;
    margin-right: 7px;
    vertical-align: -7%;
}

.footer .col-contatos {
    max-width: 250px;
    line-height: 27px;
}

.footer .col-contatos .second-line{
    margin-left: 34px;
}

@media (max-width: 767px) {
    #footer {
        margin: 40px 25px;
    }
}

.pulsar img{
    width: 35px;
    height: 35px;
    background: transparent;
}

.pulsar{
    position: relative;
    width: 70px;
    height: 70px;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.pulsar:before, .pulsar:after{
    content: '';
    display: block;
    position: absolute;
    left:  -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: animar 1.5s linear infinite;
    opacity: 0;
}

.pulsar:after{
    animation-delay:  .5s;
}

.whatsapp {
    position:fixed;
    width:70px;
    height:70px;
    bottom:25px;
    right: 30px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 1px 1px 2px #888;
    z-index:1000;
}

@keyframes animar {
    0%{
       transform: scale(0.5);
       opacity: 0;
    }
    50%{
       opacity: 1;
        
    }
    100%{
       transform: scale(1.2);
       opacity: 0;}
}


.popup-Whatsapp {
    position: fixed;
    width:165px;
    height:50px;
    bottom:25px;
    background-color: #f5f7f9;
    font-size: 13px;
    color: #43474e;
    padding: 5px 0 5px 12px;
    letter-spacing: -0.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    right: 75px;
    bottom: 35px;
    font-family: Arial,Helvetica,sans-serif;
    z-index: 999;
}