/* Aplicação de box-sizing para todos os elementos */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/* Reset de estilos */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, figure,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* Estilo do corpo */
body { 
    line-height: 1; 
}

/* Listas não ordenadas e ordenadas */
ol, ul { 
    list-style: none; 
}

/* Citações e blocos de citações */
blockquote, q { 
    quotes: none; 
}

/* Remoção do estilo padrão ao focar */
:focus { 
    outline: 0; 
}

/* Estilo de textos inseridos e deletados */
ins { 
    text-decoration: none; 
}
del { 
    text-decoration: line-through; 
}

/* Estilo para tabelas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Links */
a {
    text-decoration: none;
}
a:hover { 
    text-decoration: underline; 
}

/* Linha horizontal */
hr { 
    display: none; 
}

/* Menu de acessibilidade oculto */
#accessJumperMenu {
    display: none;
    position: absolute;
    top: -150px;
}

/* Estilo para botões e inputs */
button,
input[type=submit],
input[type=image],
input[type=button],
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;

  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;

  background: none;
  border: none;
  font-size: 1em;
  color: blue;
}


.container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 1024px) {
  .container {
    width: 95%;
  }
  .corte {
    width: 100%;
    margin: 0;
  }
}

body {
  height: 100%;
  /* font-family: "Rufina", serif; */
  font-family: "Oxygen", serif;
  font-size: 1.2em;
}

@import url('https://fonts.googleapis.com/css?family=Oxygen:wght@300;400;700&family=Rufina:wght@400;700&display=swap');

/* Components */
@import url('components/grid.css');
@import url('components/header.css');
@import url('components/footer.css');
@import url('components/form-base.css');
@import url('components/ui.css');

/* Sections */
@import url('home.css');

/* Responsive */
@import url('../responsive/components/header.css');
@import url('../responsive/components/footer.css');
@import url('../responsive/home.css');

/* Themes */

.animation {
  animation: alerta 1.5s infinite;
  text-decoration: none;
}

.btn {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 30px;
}

.btn a {
  text-decoration: none;
}

.botao {
  background: #ff650e;
  color: white;
  border: 1px solid #ff650e;
  border-radius: 70px;
  box-shadow: 0 0 0 0 #ff650e;
  font-size: 30px;
  display: inline-block;
  text-align: center;
  width: 331px;
  height: 58px;
  font-size: 20px;
  line-height: 55px;
  text-decoration: none;
  transition: background, padding 500ms ease-in-out;
}

.botao i {
  margin-right: 10px;
}

@keyframes alerta {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(69, 152, 27, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(69, 152, 27, 0);
  }
}

.infinite {
  width: 100%;
  margin-top: -20px;
  z-index: 1;
  position: relative;
}

.scrolling-container {
  width: 100%;
  overflow: hidden; /* Oculta o texto que ultrapassa os limites */
  white-space: nowrap; /* Mantém o texto em linha única */
  background: #fff; /* Fundo escuro */
  color: #000;
  border: 1px solid #000;
  font-size: 16px;
  font-family: "Teachers", sans-serif;
  transform: rotate(-2deg);
}

.scrolling-containertwo {
  width: 100%;
  overflow: hidden; /* Oculta o texto que ultrapassa os limites */
  white-space: nowrap; /* Mantém o texto em linha única */
  background: #000; /* Fundo escuro */
  color: white;
  font-size: 16px;
  font-family: "Teachers", sans-serif;
  transform: rotate(2deg);
  margin-top: -50px;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%; /* Move o texto para fora da tela inicialmente */
  animation: scrollHorizontal 30s linear infinite; /* Animação infinita */
  color: #00000000;
  stroke: #FFFFFF;
      font-family: "Teachers", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
  color: #FFFFFF;
  padding-top: 15px; 
  padding-bottom: 15px;
  text-transform: uppercase;
}

.scrolling-text-two {
  display: inline-block;
  padding-left: 100%; /* Move o texto para fora da tela inicialmente */
  animation: scrollHorizontaltwo 30s linear infinite; /* Animação infinita */
  color: #00000000;
  stroke: #FFFFFF;
      font-family: "Teachers", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
  color: #000;
  padding-top: 15px;
  padding-bottom: 15px;
}

@keyframes scrollHorizontal {
  0% {
    transform: translateX(1%); /* Começa fora da tela à direita */
  }
  100% {
    transform: translateX(-100%); /* Rola para fora da tela à esquerda */
  }
}

@keyframes scrollHorizontaltwo {
  0% {
    transform: translateX(-100%); /* Começa fora da tela à direita */
  }
  100% {
    transform: translateX(1%); /* Rola para fora da tela à esquerda */
  }
}


.pulsing-image {
    animation: pulse 1.5s infinite; /* Animação de pulso infinita */
} 

@keyframes pulse {
    0%, 100% {
        transform: scale(1); /* Tamanho original */
    }
    50% {
        transform: scale(1.1); /* Aumenta 10% */
    }
}
.banner{
  width: 100%;
  display: flex;
  background: url(../img/backtopo.jpg) no-repeat center top;
  height: 900px;
  min-height: 100%;
  
}
.banner .display{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.banner .display .ld .logo img{
  max-width: 100%; /* A imagem não será maior que o contêiner */
  height: auto; /* Mantém a proporção */
}
.banner .display .le .logo{
  margin-bottom: 15px;
}
.banner .display .le{
  width: 31%;
}
.banner .display .le h2{ 
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 900;
  font-family: "Rufina", serif;
  color: #000;
  margin-bottom: 10px;
}
.banner .display .le .doutor .img img{
 margin-right: 20px;
}
.banner .display .le .doutor{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;   
}
.banner .display .le .doutor p{
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 0;
}
.banner .display .le p{
  font-size: 1.2rem;
  line-height: 2rem; 
  color: #000;
  margin-bottom: 20px;
}
.btn-verde {
  float: left;
}

.btn-verde.btn-verde-dep{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}
.btn-verde a {
  background: #2db842;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 42px;
  border-radius: 5px;
}
.btn-verde a img {
  margin-right: 10px;
}
.servicos{
  width: 100%;
  float: left;
  background-color: #000;
  padding-bottom: 140px;
  padding-top: 20px;
}
.servicos .tit{
}
.servicos .tit .img{
  width: 100%;
  float: left;  
  text-align: center;
  margin-bottom: 50px;  
}
.servicos .tit h2{
  width: 100%;
  float: left;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 900;
  font-family: "Rufina", serif;
  color: #fff;
  text-align: center;
  margin-top: 100px;
}
.servicos .servico{
  width: 100%;
  float: left;
}
.servicos .servico .slider-servico{
  width: 100%;
  float: left;
}

.slick-slide img{
  width: 100%;  
}

.slick-slide{  
  display: flex !important;
  justify-content: center ;
  padding: 10px;
}
.servicos .servico li{
  background-color: #fff;
  float: left;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 30px;
  padding: 40px;
  border-radius: 5px;
}
.servicos .servico li .le{
  margin-right: 20px;
}
.servicos .servico li .ld h2{
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 900;
  font-family: "Rufina", serif;
  color: #000;
  margin-bottom: 10px;
}
.servicos .servico li .ld p{
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 0;
}
.slick-prev:before {
  content: " " !important;
}
.slick-next:before {
  content: " " !important;
}
.slick-next {
  width: 100%;
  background: url(../img/seta-baixo.png) center no-repeat !important;
  height: 40px !important;
  width: 40px !important;
  position: initial;
  display: flex !important;
  justify-content: center;
  align-items: center;
  right: -55px !important;
}
.slick-prev { 
  width: 100%;
  background: url(../img/seta-cima.png) center no-repeat !important;
  left: -55px !important;
  height: 40px !important;
  width: 40px !important;
  position: initial;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.empresa-topo{
  width: 100%;
  float: left;  
  height: 97px;
  min-height: 100%;
  background: url(../img/back-empresa-topo.png) center no-repeat !important;
  margin-top: -94px;
}
.empresa{
  background: url(../img/back-empresa.png) center no-repeat !important;
  width: 100%;
  float: left;  
  height: 749px;
  min-height: 100%;
}

.empresa h2{ 
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 900;
  font-family: "Rufina", serif;
  color: #fff;
  margin-bottom: 10px;
}
.empresa h3{
  font-size: 1.2rem;
  line-height: 2rem; 
  color: #fff;
  margin-bottom: 20px;
}
.empresa p{
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 50px;
  color: #fff;
}
.empresa .display{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 749px;
  min-height: 100%;
}
.empresa .display .ld{
  width: 41%;
  float: right;
  margin-left: 30px;
}
.depoimentos .tit{
}
.depoimentos .tit .img{
  width: 100%;
  float: left;  
  text-align: center;
  margin-bottom: 50px;  
}
.depoimentos .tit h2{
  width: 100%;
  float: left;
  font-size: 3rem;  
  line-height: 3rem;
  font-weight: 900;
  font-family: "Rufina", serif;
  color: #000;
  text-align: center;
  margin-top: 70px;
  margin-bottom: 20px;
}
.depoimentos .tit  p{
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 50px;
  color: #000;
  text-align: center;
}

.contatos{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #038c5a;
  padding: 50px 0;
}

.contatos .display{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.contatos .display .le{
  width: 49%;
  margin-right: 20px;
}

.contatos .display .ld{
  justify-content: left;
  width: 50%;
}

.contatos .display .ld .logo{
  margin-bottom: 20px;
}

.contatos .display .ld .logo img{
  width: 30%;
}


.contatos h2{
  width: 100%;
  float: left;
  font-size: 2rem;  
  font-weight: 900;
  font-family: "Rufina", serif;
  color: #fff;
  text-align: left;

  float: left;
  width: 100%;
  margin-bottom: 10px;

  
  display: flex;
  align-items: center;


}
.contatos p{
  font-size: 1rem;
  line-height: 1.625rem;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;

  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.contatos h2 img{
  margin-right: 10px;
}


.contatos p img{
  margin-right: 10px;
}

.image-deskt{
  display: none;
}

@media all and (max-width: 1024px) {
  .banner{
    height: 700px;
  }
  .banner .display .le {
    width: 50%;
  }
  .slick-next{
    right: 0 !important;
  }
  .slick-prev{
    left: 0 !important;
    z-index: 9999;
  }

}

@media all and (max-width: 500px) {

  .slick-slide img{
    width: initial !important;
  }
  .banner .display{
    display: block;
    padding-top: 30px;
  }
  .banner {
    height: auto;
  }
  .banner .display .le {
    width: 100%;        float: left;
  } 
  .banner .display .ld {
    width: 100%;        float: left;
  } 
  .banner .display .le .logo {
    text-align: center;
  }
  .banner .display .le .logo img{
    width: 60%;
  }
  .banner .display .ld.image-mob{
    display: none;
  }

  .banner .display .le h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .banner .display .le p{
    font-size: 1.1rem;    
    text-align: center;
  }

  .banner .display .le .doutor p {
    font-size: 0.9rem;
    text-align: left;
  }

  .banner .display .ld.image-deskt .logo img{
    width: 50%;
  }
  
  .btn-verde{
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .reveal{
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .reveal.active{
    float: left;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .scrolling-containertwo{
    margin-top: -20px;
  }

  .servicos{
    margin-top: -20px;
    padding-bottom: 0 !important;
  }
  .servicos .tit h2{
    text-align: center;
    font-size: 2rem;
    line-height: 2.5rem;    margin-top: 50px;
  }

  .servicos .servico li{
    display: block !important;
    padding: 10px;
  }
  .empresa{
    height: auto;
    padding: 50px 10px;
    background: #038c5a !important;
  }
  .empresa .display .ld{
    width: 100%;  
  }
  .empresa-topo{
    display: none;
  }
  .empresa .display{
    height: auto;
    display: block;
  }
  .empresa .btn-verde{
    margin-bottom: 0 !important;
  }
  .empresa .display .le {
    margin-bottom: 30px;
  }
  .empresa .display .le .imagem img{
    width: 100%;
  }

  .servicos .servico li .le .img{
    display: flex;
    justify-content: center;
  }
  .servicos .servico li .ld h2{
    text-align: center;
  }

  .contatos{
    display: block;    padding: 50px 10px;
  }
  .contatos .display .ld .logo{
    text-align: center;
  }
  .contatos .display .ld .logo img{
    width: 70%;
    margin-top: 20px;
  }
  .contatos .display{
    display: block;

  }
  .contatos p{
    justify-content: center;
  }
  .contatos .display .le{
    width: 100%;

  }
  .contatos .display .ld{
    width: 100%;
    
  }
  .servicos .servico li{
    width: 100% !important;
  }

  .container {
    width: 100%;
        padding: 0 15px;
        float: left;
  }

  .depoimentos .tit h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .empresa h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .empresa h3{
    font-size: 1.1rem;
  }

  .depoimentos .slider-dep li .img img{
    width: 100%;
  }
  
}

footer {
  width: 100%;
  float: left;
}

footer .desenvolvimento {
  width: 100%;
  float: left;
  padding: 20px 0;  
  background: #fff;
}

footer .desenvolvimento p {
  color: #000;
  font-weight: 300;
  text-align: center;
  font-size: 16px;
}
@media all and (max-width: 769px) {
  footer .desenvolvimento {
    padding: 50px 15px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px); /* Move para baixo inicialmente */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.box {
  opacity: 0;
  transform: translateY(30px); /* Move para baixo inicialmente */
  animation: fadeIn 5s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

