@keyframes animaTopSite {    
	to { opacity: 0; }  
	transform: translateY(-12px); }
}

html {   
	scroll-behavior: smooth;   
	-webkit-scroll-behavior: smooth;   
	-moz-scroll-behavior: smooth;
}


/* css customizado */
body {
	font-size: 20px;
	background-color: #052e56;
	color: #fff;
	font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    overflow-x: hidden;
}

nav .nav-item {
    position: relative;
}

/* zerando borda e bg da tag card*/
.card {
	background-color: transparent !important;
	border: 0px solid transparent !important;
}


button:focus {
    outline: none !important;
}

abbr[title], abbr[data-original-title] {
    -webkit-text-decoration: none;
    text-decoration: none;
    border-bottom: 1px dashed;
}


p a {
    color: #071F4D;
    font-weight: 700;
}

p a:hover {
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

strong {
	font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 800;
}

h1, h2, h3, h4, h5 {
	letter-spacing: -.05em;
    line-height: .85em;
}

h2 { font-weight: 800; }
h3, h4, h5 { font-weight: 700; }

p {
     line-height: 1.25rem;
}

section h2 {
	font-size: 3.2rem;
}

.hide,
.text-hide { display: none; }

.space { min-height: 50%; }

.w-60 {
    width: 60% !important;
}

.w-80 {
    width: 80% !important;
}

/*topsite---------*/
.topSite {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background-color: #333;
    width: 3rem;
    height: 2rem;
    font-size: 1em;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #fff;
    display: none;
    opacity: .8;
}

.topSite:hover [class*="fa-"] { 
	animation: animaTopSite 600ms ease-in infinite;	
}

.topSite:hover { color: #FFF !important; background-color: #222;}

/* botao de agendamento */
.btn.bt-agende {
    color: #052e56 !important;
    font-size: 1em;
    font-weight: 700;
    text-transform: none; 
    border-radius: 1em;
    background-color: #A1DB87!important;
    padding-bottom: .4em;
    border-color: none !important;
}

.btn.bt-agende:hover {
    color: #052e56 !important;
    background-color: #b0d9e6 !important;
}

/* whatsapp flutuante*/
.linkwhatsapp {
    right: -196px;
    bottom: 4.5rem;
    font-size: 2rem;
    color: #FFF;
    background-color: #00AD25;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
    transition: right .6s ease-in-out;
    z-index: 9999;
}

.linkwhatsapp span {
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -.04rem;
}

.linkwhatsapp:hover {
    text-decoration: none;
    color: #FFF;
    right: 0px;
    transition: right .4s ease-in-out;
}


/* Header =======================*/
header {
    min-height: 96px;
    z-index: 1020; /* nao colocar a cima de 1050 - modal */
    background-color: rgba(0,0,0,.6);
    display: grid;
    align-items: center;
    position: fixed;
}

header .navbar-brand img {
		width: 117px
		height 40px;
}

header .navbar-nav {
    align-items: center;
}

header .navbar .navbar-nav .nav-item a {
    font-size: .6em;
    font-weight: 700; 
    text-transform: uppercase;
    color: #FFF;
}

header .navbar .navbar-nav .nav-item:last-child a {
    padding-right: 0;
}

header .navbar .navbar-nav .nav-item:first-child a {
    padding-left: 0;
}

header .navbar .navbar-nav .nav-item a:hover,
header .navbar .navbar-nav .nav-item a:active {
    color: #A1DB87;
}

header .redes-topo a {text-decoration: none;}

/* menu redes sociais */
header .redes-topo a {
    font-size: 24px;
    color: #FFF;
    padding: 0 .6em;
}

header .redes-topo a:hover {
    color: #A1DB87;
}

header .navbar-toggler {
    height: 2rem;
}

header .navbar-toggler-icon:before {
    content: " \f0c9";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #FFF;
}


header .navbar-toggler:hover .navbar-toggler-icon:before,
header .navbar-toggler:active .navbar-toggler-icon:before {
    color: #A1DB87;
}

/* Topo imagem =======*/
#DestTopo {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
    animation: slideTopo 8s infinite;
    position: relative;
}

/*---- animando fundo ---*/
@keyframes slideTopo {
  from {
    background-image: url('../images/img-dest-topo-001.jpg');
  }
to {
    background-image: url('../images/img-dest-topo-002.jpg');
  }
}

#DestTopo .infoDest {
    height: 550px
}

#DestTopo .infoDest .dest-txt {
    max-width: 360px;
    position: relative;
}

#DestTopo .infoDest .dest-txt .det-relogio {
    position: absolute;
    left: 32px;
    bottom: 16px;
    mix-blend-mode: screen;
    opacity: .7;
    z-index: 0;

}

#DestTopo .infoDest h2 {
    text-transform: none;
    position: relative;
    z-index: 1;
}

#DestTopo .infoDest h2 span {
    font-size: 1.2em;
    display: block;
    padding-top: 12px;
}

#DestTopo .infoDest h2 span::first-letter {
    color: #A1DB87;
}

#DestTopo .infoDest .dest-img {
    position: relative;
    /*z-index: 0;*/
}

#DestTopo .infoDest .dest-img img {
    margin-bottom: 44px;
    z-index: 1030;
    position: relative;
}

#DestTopo .btn.bt-agende {
    position: relative;
    z-index: 1;
}


/* MOUSE scroll TOPO =====================*/
#DestTopo .scroll-downs {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 96px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;

}

#DestTopo .mousey {
    width: 4px;
    padding: 8px 11px;
    height: 24px;
    border: 3px solid #fff;
    border-radius: 20px;
    opacity: 0.75;
    box-sizing: content-box;
}

#DestTopo .scroller {
    width: 4px;
    height: 8px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}

#DestTopo .scroll-downs i {
    color: #FFF;
    position: absolute;
    bottom: -10px;
    animation-name: scroll;
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;

}


/* Produtos =======================*/
#Produtos .produto .card {
    border: 1px solid transparent;
    border-radius: 0px;
}

#Produtos .produto { position: relative; }

#Produtos .produto .card-img {
    width: 100%;
    border-radius: 0;
    opacity: 1;
    transition: opacity .4s ease-in;
}

#Produtos .produto .card-img-overlay {
    top: inherit;
    padding: 1.25rem;
    min-height: 90px;
    display: grid;
    align-items: center;
    color: #071F52;
}

/* cores titulo produtos */
#Produtos .produto .card-img-overlay.cor001 {
    background: rgba(8, 51, 143, 0.7);
    color: #FFF;
}

#Produtos .produto .card-img-overlay.cor002 {
    background: rgba(176, 217, 230, 0.7);
}

#Produtos .produto .card-img-overlay.cor003 {
    background: rgba(161, 219, 135, 0.7);
}

#Produtos .produto .card:hover .card-img-overlay.cor001 {
    background: rgba(8, 51, 143, 1);
}

#Produtos .produto .card:hover .card-img-overlay.cor002 {
    background: rgba(176, 217, 230, 1);
}

#Produtos .produto .card:hover .card-img-overlay.cor003 {
    background: rgba(161, 219, 135, 1);
}

#Produtos .produto .card:hover .card-img {
    opacity: .6;
    transition: opacity .4s ease-out;
}

/* detalhes titulo produtos */
#Produtos .produto:before {
    content: "";
    position: absolute;
    width: 88px;
    height: 44px;
    z-index: 10;
}

#Produtos .produto.det01:before {
    background: url(../images/det-dest-produtos-001.svg) no-repeat;
    bottom: 90px;
    left: 0;
}

#Produtos .produto.det02:before {
    background: url(../images/det-dest-produtos-002.svg) no-repeat;
    bottom: 90px;
    right: 0;
}

#Produtos .produto.det03:before {
    background: url(../images/det-dest-produtos-003.svg) no-repeat;
    bottom: 90px;
    left: 0;
}

#Produtos .produto.det04:before {
    background: url(../images/det-dest-produtos-004.svg) no-repeat;
    bottom: 90px;
    right: 0;
}

#Produtos .produto.det05:before {
    background: url(../images/det-dest-produtos-005.svg) no-repeat;
    top: 0;
    right: 0;
}

#Produtos .produto.det06:before {
    background: url(../images/det-dest-produtos-006.svg) no-repeat;
    top: 0;
    right: 0;
}

#Produtos .produto.det07:before {
    background: url(../images/det-dest-produtos-007.svg) no-repeat;
    bottom: 90px;
    left: 0;
}

#Produtos .produto .card-title { 
    font-size: 1.1em;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1em;
    position: relative;
}

#Produtos .tit-produtos {
    position: relative;
    height: 100%;
    display: grid;
    align-items: center;
}

#Produtos .tit-produtos h2 {
    font-size: 2.2em;
    font-weight: 700;
}

#Produtos .tit-produtos .det00 {
    background: url(../images/det-dest-tit-produtos.svg) no-repeat;
    display: block;
    width: 176px;
    height: 44px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

/* Modal (Produtos e Quem Somos) */
.modal hgroup { 
    left: 2em;
}

.modal .modal-body p { 
    font-size: 1em;
    color: #333; 
}

.modal hgroup {
    text-shadow: 2px 2px 1px rgba(255,255,255,1);
}

.modal hgroup h2 {
    color: #6B8FB5;
    font-size: 1.6em;
}

.modal hgroup h4 {
    color: #A1DB87;
    font-size: 1.6em;
}

.modal hgroup .modal-title {
    color: #071F52;
    font-size: 2.8em;
    line-height: .8em;
    
}

.modal .close {
    right: .5em;
    top: .3em;
}

/* Footer =======================*/
#Servicos { 
    background: url(../images/bg-dest-servicos.png) #071F52 no-repeat center;
    /*height: 700px;*/
    background-size: cover;
    padding-top: 110px;
    position: relative;
}

#Servicos h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #A1DB87;
}

#Servicos h4 {
    font-size: 1.6em;
    text-transform: inherit;
    font-weight: 700;
}

#Servicos .img-servicos {
}

/*#Servicos ul {
    list-style: none;
    list-style-position: outside; 
}*/

#Servicos ul li i {
    color: #A1DB87;
    font-size: .9em;
}

/* Marcas =======================*/

#Marcas { 
    background: url(../images/bg-marcas.svg) #FFF repeat-x bottom;
    padding-bottom: 44px;
     }

#Marcas h2 {
    font-size: 2.2em;
    text-transform: inherit;
    font-weight: 700;
    color: #071F52;
}

#Marcas p {
    color: #333;
    font-size: 16px;
}

#Marcas .marcas-lista img {
    width: 156px;
    height: 96px;
    border: 0px;
    padding: .5em;
}



/* Footer =======================*/
footer { 
    min-height: 400px;
    background-color: #071F52;
}

footer .tel {
    font-size: 1.3em;
}

footer .redes-footer a {
    color: #FFF;
    font-size: 1.2em;
}

footer .redes-footer a:hover {
    color: #A1DB87;
}

footer iframe {
    min-height: 385px;
    width: 100%;
    border: none;
}

footer address {
    font-size: .8em;
    line-height: 1em;
}

/*----------------------------------------------------*/
/* @media queries */
/*----------------------------------------------------*/

/* Dispositivos large (desktops com menos de 1200px) */
@media (max-width: 1199.98px) {
/*    #Produtos .produto .card-title {
        font-size: .95em;
    }*/
}


/* Dispositivos médios (tablets com menos de 992px) */
@media (max-width: 991.98px) { 
    header {
        min-height: 64px;
        background-color: rgba(0,0,0,.8);
    }

    header .navbar-brand img {
        width: 96px
    }

#DestTopo {
        background-position: right bottom;
    }

    .redes-topo .hide {
        display: inherit;
    }

    header .redes-topo a { 
        padding: 0 0.2em 0 0;
        font-size: .8em;
    }


    header .navbar .navbar-nav .nav-item a,
    li.redes-topo a span {
        font-size: 14px !important;
    } 
   

    header .redes-topo a i {
        font-size: 14px;
        text-decoration: none;
    }

    li.redes-topo a span {
        color: #FFF;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 12px;
        text-decoration: none;
    }

    li.redes-topo a:hover span  {
        color: #A1DB87;
    }
}


 /*/ Dispositivos small (telefones em modo paisagem, com menos de 768px) */
@media (max-width: 767.98px) {

/*--- tirar animações responsivo ---*/
	section {
		-webkit-transition: none !important;
		-moz-transition: none !important;
		-o-transition: none !important;
		-ms-transition: none !important;
		transition: none !important;
	}

    #DestTopo .infoDest .dest-txt .det-relogio {
        display:  none;
    }

    #Produtos .modal .modal-header .modal-title {
        font-size: 2em;
    }

    #Produtos .modal .modal-header  {
       width: 100%
    }

    #Produtos .container {
        max-width: 100%;
    }

    #Servicos { 
        background-position: 45% top;
    }

    .modal .modal-body p {
        font-size: .8em;
    }

    /* whatsapp flutuante*/
    .linkwhatsapp {
        right: 0;
        left: 0;
        bottom: 2.4rem;
        border-radius: .5em;
        text-align: center;
        width: 60%;
        margin: 0 auto;
        background-color: #00ad25db;
    }

        .linkwhatsapp span {
        vertical-align: middle;
        font-size: 1.2rem;
        line-height: 3.3rem;
    }

}




/* Dispositivos extra small (telefones em modo retrato, com menos de 576px) */
@media (max-width: 575.98px) { 
    
    section h2 {
        font-size: 2.8rem;
    }

    #DestTopo,
    #DestTopo .infoDest {
        height:400px;
    }

    #Produtos .tit-produtos h2 {
        font-size: 1.6em;
    }

    #Produtos .produto .card-title {
        font-size: .95em;
    }

    #Produtos .tit-produtos h2,
    #Servicos h2,
    #Marcas h2 { 
        font-size: 1.6em;
    }

    #Servicos { 
        background-position: 35% top;
    }

    #Servicos h4 {
        font-size: 1.2em;
    }

    p, ul li { font-size: .9em; }

        /* whatsapp flutuante*/
    .linkwhatsapp {
        width: 80%;
    }

}


/* modal especialidades (nao tem no boostrap) */
@media (min-width: 1200px) {

}
