/********** Template CSS **********/
:root {
    --primary: #FF3E41;
    --secondary: #51CFED;
    --light: #F8F2F0;
    --dark: #060315;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #015b41 !important;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #015b41 !important;
    border-color: #015b41 !important;
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../images/fundo-bread.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: #015b41 !important;
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
    
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-item p{
    color: #555;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #015b41;
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: #015b41;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.fa{
    font-size: 18px !important;
}

/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../images/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #044d2b;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}


.btn-whatsapp a {
	color:#fff; 
	text-decoration:none; 
	display:block; 
}
.btn-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 30px;
  transform: translate(-50%, -50%);
  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  font-size: 2.3em;
  color: #ffffff;
  font-weight: 100;
  border-radius: 50%;
}
.btn-whatsapp:before,
.btn-whatsapp:after
{
	content: '';
    display:block;
    position: absolute;
    border-radius:50%;
    border:1px solid #25d366;
    left: -20px;
    right: -20px;
    bottom: -20px;
    top: -20px;
    animation: animate 1.5s linear infinite;
    opacity:0;
    backface-visibility:hidden;    
}
.pulsaDelay:after { animation-delay: .5s; }
@keyframes animate {
   0%   { transform: scale(0.5); opacity:0; }
   50%  { opacity:1; }
   100% { transform: scale(1.2); opacity:0; }
}



/*----- BOX EVENTO ----- */

.box-evento {
    /* box-shadow:0 4px 10px rgba(0, 0, 0, 0.07); */
    background-color: #198754;
    border-radius: 8px;
    position: relative;
    display: flex;
    margin:0 0 30px 0 !important;
    overflow-x: auto;
    height: 180px;
  }
  
  .box-evento .texto {
    padding: 30px;
    color: #ffffff;
    text-decoration: none;
  }
  
  .padding20{
    padding: 30px;
  }
  
  .box-evento h4 {
    color:rgb(255, 255, 255);
    font-size:1.25em;
    text-transform: uppercase;
    margin:0 35px 10px 0;
  }
  
  .box-evento:hover .tarja {
    border-bottom:2px solid 	#000000;
    right:100%;
  }
  
  .box-evento span {
    position: absolute;
    right:-1px;
    top:-1px;
    background-color: rgb(8,96,164);
    color: #FFF;
    padding: 10px 20px 10px 10px;
    z-index: 2;
    font-size: 18px;
  }
  
  .box-evento span:after {
    content: "";
    width: 30px;
    height: 100%;
    background: rgb(8,96,164);
    border-radius: 0 0 0 10px;
    transform: skewX(20deg);
    position: absolute;
    top: 0;
    left: -20px;
  }

.modal-header{
    justify-content: center;
    background-color: #015b41;
}

.modal-title{
    color: #fff;
}

#map {
    height: 600px;
    border: 3px solid #015b41;
    border-radius: 8px;
  }


  /* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #015b41;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .time-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }

  .time-container h2, .time-container p{
    color: #FFF;
  }
  
  /* The circles on the timeline */
  .time-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: #ffffff;
    border: 4px solid #015b41;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the time-container to the left */
  .left {
    left: 0;
  }
  
  /* Place the time-container to the right */
  .right {
    left: 50%;
  }
  
  /* Add arrows to the left time-container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #015b41;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #015b41;
  }
  
  /* Add arrows to the right time-container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #015b41;
    border-width: 10px 10px 10px 0;
    border-color: transparent #015b41 transparent transparent;
  }
  
  /* Fix the circle for time-containers on the right side */
  .right::after {
    left: -13px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: #015b41;
    position: relative;
    border-radius: 6px;
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
    left: 31px;
    }
    
    /* Full-width time-containers */
    .time-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .time-container::before {
    left: 60px;
    border: medium solid #015b41;
    border-width: 10px 10px 10px 0;
    border-color: transparent #015b41 transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
    left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
    left: 0%;
    }
  }


  /* ----- ACESSIBILIDADE ----- */
	
#acessibilidade div {
    position: absolute;
    left: -300px;
    transition: 1s;
	padding:0px;
    width: auto;
    text-decoration: none;
	z-index:99 !important;
	top:30px;
}

#acessibilidade div:hover {
    position: absolute;
    left:5px;
    transition: 1s;
	padding:0px;
    width: auto;
    text-decoration: none;
	z-index:99 !important;
	top:30px;
}

#texto .icone-acessibilidade {
	float:left;
	display:inline-block;
	padding:6px 14px 6px 14px;
	top:115px;
	color:rgb(255,255,255);
	background-color:rgb(17,131,198);
	font-weight:bold;
	cursor:pointer;
	border-radius:3px;
	position:fixed;
	text-align:center;
	left:-4px;
	z-index:99 !important;
}
	
#texto .icone h3 {
	font-size:18px;
}
	
#icones a:hover {
	text-decoration:none;
	opacity: 0.2;
  	filter: alpha(opacity=20);
}

#icone-impressao .icone {
	display: inline-block;
	width: 35px;
	height: 35px;
	border-radius: 5px;
	padding: 6px 5px 5px 5px;
	color: #FFF;
	font-size: 22px;
	text-align: center;
}
	
#texto .links {
	display:inline-block;
	width:245px;
	float:left; 
	box-shadow:0px 3px 5px 0px rgba(0,0,0,.5);
	padding:10px 15px;
	margin-top:1px;
	background-color:rgb(220,225,240);
	position:fixed;
	top: 152px;
}
	
#acessibilidade a {
	display:block;
	padding:6px 10px;
	border-bottom:2px solid rgb(190,190,190);
	border-right:1px solid rgb(190,190,190);
	border-left:1px solid rgb(230,230,230);
	border-top:1px solid rgb(230,230,230);
	margin:5px;
	color:#000;
	border-radius:3px;
	font-size:0.8em;
	background-color:rgb(255,255,255);
	top:50px;
	text-decoration: none;
}

#acessibilidade a:hover {
	background-color:rgb(242,242,242);
}

#acessibilidade h5 , #acessibilidade i {
	font-size:14px;
	line-height:14px;
	font-weight:100;
	color:#000;
}


.button-more-noticias {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: #015b41 !important;
    border-radius: 100px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 0 0 2px #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.button-more-noticias svg {
    position: absolute;
    width: 24px;
    fill: #ffffff;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.button-more-noticias .arr-1 {
    right: 16px;
}
  
.button-more-noticias .arr-2 {
    left: -25%;
}
  
.button-more-noticias .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.button-more-noticias .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
  
.button-more-noticias:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #015b41 !important;
    border-radius: 12px;
}
  
.button-more-noticias:hover .arr-1 {
    right: -25%;
}
  
.button-more-noticias:hover .arr-2 {
    left: 16px;
}
  
.button-more-noticias:hover .text {
    transform: translateX(12px);
}
  
.button-more-noticias:hover svg {
    fill: #015b41 !important;
}
  
.button-more-noticias:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px rgba(8, 79, 14, 1);
}
  
.button-more-noticias:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}


ul {
    list-style: none;
}

.container-redes {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-redes .icon-content {
    margin: 0 10px;
    position: relative;
}
.container-redes .icon-content .tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}
.container-redes .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -50px;
}
.container-redes .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.container-redes .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.container-redes .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}
.container-redes .icon-content a:hover {
    color: white;
}
.container-redes .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}
.container-redes .icon-content a:hover .filled {
    height: 100%;
}
  
.container-redes .icon-content a[data-social="linkedin"] .filled,
.container-redes .icon-content a[data-social="linkedin"] ~ .tooltip {
    background-color: #1db954;
}
  
.container-redes .icon-content a[data-social="github"] .filled,
.container-redes .icon-content a[data-social="github"] ~ .tooltip {
    background-color: #24262a;
}
.container-redes .icon-content a[data-social="instagram"] .filled,
.container-redes .icon-content a[data-social="instagram"] ~ .tooltip {
    background: linear-gradient(
      45deg,
      #405de6,
      #5b51db,
      #b33ab4,
      #c135b4,
      #e1306c,
      #fd1f1f
    );
}
.container-redes .icon-content a[data-social="youtube"] .filled,
.container-redes .icon-content a[data-social="youtube"] ~ .tooltip {
    background-color: #ff0000;
}
  