/* 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;
}

.btnflutua{
  width: 100%;
  float: left;
  position: fixed;
  z-index: 999999;
  bottom: 5%;}

.btnflutua .displa{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btnflutua a {
  background: #2db842;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 60px;
  border-radius: 13px;
  margin-right: 50px;
}

.btnflutua a img {
  margin-right: 10px;
}


.container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 1024px) {
  .container {
    width: 100%;
  }
  .corte {
    width: 100%;
    margin: 0;
  }
}

body {
  height: 100%;
  font-family: "Nunito", sans-serif;
  font-size: 1.2em;
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&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);
  }
}

.slidermob{
    display: none;
}

.slidermob {
width: 100%;
min-height: auto;
text-align: center;
}

.slidermob img {
display: inline;
width: 100%;
}

.slidermob .slick-slide {
width: 50%;
}

.slidermob .slick-dots {
bottom: 15px;
}

.slider {
    display: inline-block;
    width: 100%;
    min-height: auto;
    text-align: center;
  }
  
   .slider img {
    display: inline;
    width: 100%;
  }
  
   .slider .slick-slide {
    width: 50%;
  }
  
   .slider .slick-dots {
    bottom: 15px;
  }
  
   .slider .slick-dots li button:before {
    width: 11px;
    height: 11px;
    background-color: #fff;
    border: 2px #fff solid;
    border-radius: 30px;
    color: transparent;
  }
  
   .slider .slick-dots .slick-active button:before {
    background-color: #767575;
    border: 2px #767575 solid;
  }
  
   .btn-verde {
    background-color: #ebebeb;
    margin-top: -33px;
    padding: 50px 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
   .btn-verde a {
    background: #2db842;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 60px;
    border-radius: 13px;
  }
  
   .btn-verde a img {
    margin-right: 10px;
  }
  
   .crm {
    background-color: #ebebeb;
    margin-top: -4px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
   .crm p {
    color: #131313;
    text-align: center;
    font-weight: 800;
  }
  
   .especialista {
    padding: 50px 0;
    width: 100%;
    float: left;
  }
  
   .especialista h2 {
    color: #131313;
    text-align: center;
    font-weight: 800;
    font-size: 35px;
  }
  
   .especialista h3 {
    color: #131313;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 30px;
  }
  
   .especialista .lista-esp {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
   .especialista .lista-esp li img {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
   .boxfabio {
    width: 100%;
    float: left;
    margin-bottom: -5px;
  }
  
   .boxfabio .le {
    width: 43%;
    float: left;
    text-align: right;
  }
  
   .boxfabio .ld {
    width: 49%;
    float: right;
    padding: 70px 0;
  }
  
   .boxfabio .ld h2 {
    color: #131313;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
   .boxfabio .ld p {
    color: #131313;
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
  }
  
   .boxfabio .ld .btn-verde-dois {
    margin-top: -33px;
    padding: 30px 0 20px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: left;
  }
  
   .boxfabio .ld .btn-verde-dois a {
    background: #2db842;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 60px;
    border-radius: 13px;
  }
  
   .boxfabio .ld .btn-verde-dois a img {
    margin-right: 10px;
  }
  
   .doencas {
    background-color: #26586b;
    padding: 50px 0;
    width: 100%;
    float: left;
  }
  
   .doencas h2 {
    color: #f6f6f6;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
  }
  
   .doencas .lista-doenca {
    width: 100%;
    float: left;
  }
  
   .doencas .lista-doenca li {
    width: 23%;
    float: left;
    padding: 0 10px;
    margin: 6px;
    height: 70px;
    color: #26586b;
    background: #f6f6f6;
    border-radius: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
   .list-dp {
    float: left;
    width: 100%;
    text-align: center;
  }
  
   .list-dp li {
    background-color: #f1f1f1;
    border-radius: 30px;
    float: left;
    width: 100%;
    padding: 50px;
    margin-right: 10px;
  }
  
   .list-dp li .image {
   
    margin-bottom: 30px;
    float: left;
    width: 17%;
  }
  
   .list-dp li .ld {
    float: right;
    width: 100%;
  }
  
   .list-dp li h2 {
    font-size: 15px;
    color: #303030;
    text-align: left;
    font-weight: 700;
    float: left;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-top: 20px;
    line-height: 26.5px;
  }
  
   .list-dp li p {
    font-size: 13px;
    line-height: 25.5px;
    color: #303030;
    font-weight: 300;
    text-align: left;
    float: left;
  }
  
  @media all and (max-width: 1500px) {
  }
  
  @media all and (max-width: 769px) {
    .slider{
        display: none;
    }
    .slidermob{
        display: block;
    }
     .list-dp li .image {
      width: 100%;
    }
  
     .list-dp li {
      width: 100%;
      margin-bottom: 50px;
    }
  
     .especialista h2 {
      font-size: 25px;
    }
  
     .especialista h3 {
      font-size: 15px;
    }
  
     .especialista .lista-esp li {
      width: 100%;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
     .especialista .lista-esp li img {
      width: 90%;
    }
  
     .boxfabio .le {
      width: 100%;
      text-align: center;
    }
  
     .boxfabio .ld {
      width: 100%;
      padding: 50px 10px;
    }
  
     .doencas .lista-doenca li {
      width: 47%;
    }
  
     .boxfabio .ld h2 {
      font-size: 25px;
    }
  
     .boxfabio .ld p {
      font-size: 18px;
    }
  
     .doencas .lista-doenca li {
      padding: 0 10px;
      margin: 6px;
      height: 60px;
      font-size: 18px;
    }
  }
   footer {
    width: 100%;
    float: left;
}

 footer .topo {
    width: 100%;
    float: left;
    padding: 50px 0;
    background: #ebebeb;
}

 footer .topo .le {
    width: 50%;
    float: left;
}

 footer .topo .le h2 {
    color: #131313;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

 footer .topo .le .localizacao {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

 footer .topo .le .localizacao .le {
    width: 50%;
    float: left;
}

 footer .topo .le .localizacao .le h2 {
    color: #131313;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: left;
}

 footer .topo .le .localizacao .le h2 img {
    margin-right: 10px;
}

 footer .topo .le .localizacao .le p {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding-left: 26px;
}

 footer .topo .le .localizacao .ld {
    width: 50%;
    float: right;
}

 footer .topo .le .localizacao .ld a {
    background-color: #89baa5;
    font-size: 16px;
    color: #f6f6f6;
    padding: 20px;
    border-radius: 70px;
    float: left;
    text-decoration: none;
}

 footer .topo .le .telefone {
    width: 100%;
    float: left;
}

 footer .topo .le .telefone h2 {
    color: #131313;
    font-size: 20px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: left;
}

 footer .topo .le .telefone h2 img {
    margin-right: 10px;
}

 footer .topo .le .telefone p {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding-left: 44px;
}

 footer .topo .ld {
    float: right;
    width: 50%;
}

 footer .topo .ld h2 {
    color: #131313;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

 footer .topo .ld .localizacao {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

 footer .topo .ld .localizacao .le {
    width: 50%;
    float: left;
}

 footer .topo .ld .localizacao .le h2 {
    color: #131313;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: left;
}

 footer .topo .ld .localizacao .le h2 img {
    margin-right: 10px;
}

 footer .topo .ld .localizacao .le p {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding-left: 26px;
}

 footer .topo .ld .localizacao .ld {
    width: 50%;
    float: right;
}

 footer .topo .ld .localizacao .ld a {
    background-color: #89baa5;
    font-size: 16px;
    color: #f6f6f6;
    padding: 20px;
    border-radius: 70px;
    float: left;
    text-decoration: none;
}

 footer .topo .ld .telefone {
    width: 100%;
    float: left;
}

 footer .topo .ld .telefone h2 {
    color: #131313;
    font-size: 20px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: left;
}

 footer .topo .ld .telefone h2 img {
    margin-right: 10px;
}

 footer .topo .ld .telefone p {
    color: #131313;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding-left: 44px;
}

 footer .desenvolvimento {
    width: 100%;
    float: left;
    padding: 50px 0;
    background: #26586b;
}

 footer .desenvolvimento p {
    color: #fff;
    font-weight: 300;
    text-align: center;
    font-size: 16px;
}
@media all and (max-width: 769px) {

  .btnflutua .displa{
    display: initial;
    width: 94%;
    float: left;
  }
  .btnflutua a{
    margin-right: 0;
    margin-bottom: 20px;

  }


    footer .topo{
        padding: 50px 15px;
    }
    footer .topo .le {
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }
    footer .topo .le .localizacao .le{
        width: 100%;

    }
    footer .topo .le .localizacao .ld{
        width: 100%;

    }
    footer .topo .ld .localizacao .le{
        width: 100%;

    }
    footer .topo .ld .localizacao .ld{
        width: 100%;
    }
    footer .topo .ld {
        margin-bottom: 30px;
        width: 100%;
    }

    footer .topo .ld h2 {
        text-align: center;
    }

    footer .topo .ld ul {
        float: right;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .topo .ld ul li {
        text-align: center;
    }

    footer .desenvolvimento {
        padding: 50px 15px;
    }
}
