/* GERAIS */

:root {
  --cor-primaria: #296a3f;
  --cor-branco: #ffffff;
  --cor-azul: #1374a7;
  --cor-cinza: #34382c;
  --cor-titulo: #1e3238;
  --cor-verde: #9dc04c;
  --fonte-titulos: "Cerebri sans", sans-serif;
  --fonte-textos: "Nunito sans", sans-serif;
  --transicao: all 0.3s ease-in-out;
}

html {
  scroll-padding-top: 65px;
}

body {
  overflow-x: hidden;
  background-color: var(--cor-branco);
}

/* .texto-centro p {
     text-align: center;
 } */

.sombra {
  position: absolute;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 34px;
}

.fancybox img {
  transition: 0.3s;
}

.area-sombras-duplas {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 150px;
}

.area-sombras-duplas img {
  width: 45%;
}

@media (max-width: 1024px) {
  .area-sombras-duplas {
    /* position: absolute;
            gap: 200px;
            bottom: -144px; */
    display: none;
  }
}

@media (min-width: 1000px) {
  .fancybox img:hover {
    transform: scale(1.02);
  }

  /* .cima {
         margin-top: 60px;
     } */
}

@media (min-width: 768px) {
  .fancybox {
    transition: 0.8s;
  }

  .fancybox:hover {
    transform: scale(1.03);
  }
}

/* TOPO */
.topo {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 100%;
  z-index: 3;
}

.topo nav {
  display: flex;
  /* justify-content: end; */
  justify-content: center;
  align-items: center;
}

.menu-area {
  background-color: var(--cor-branco);
  height: 90px;
  position: fixed;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  /* transition: var(--transicao); */
}

.menu-area.altera {
  border-bottom: 3px solid var(--cor-verde);
}

.menu-area.interno {
  border-bottom: 3px solid var(--cor-verde);
  position: relative;
}

.menu-topo nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  height: 90px;
  align-items: center;
  justify-content: space-between;
}

.menu-topo nav ul li {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 10px 5px 5px 5px;
  border-bottom: 1px solid var(--cor-branco);
  padding: 10px 0 1px 0;
}

.menu-topo nav ul li.active {
  border-bottom: 2px solid var(--cor-verde);
}

.menu-topo nav ul li a {
  color: var(--cor-cinza);
  font-family: var(--fonte-titulos);
  font-weight: 600;
  font-size: 1em;
  text-align: center;
  transition: var(--transicao);
}

.menu-topo nav ul li.active a {
  color: var(--cor-primaria);
}

img.logo-menu {
  padding: 10px;
}

/* .logo-iplan {
    position: relative;
    right: 60px;
} */

.menu-links {
  gap: 40px;
  display: flex;
}

@supports (-ms-ime-align: auto) {
  nav.menu.principal .menu ul li a:hover:before {
    animation-name: none;
  }
}

.menu-topo .menu-area .area-logo {
  display: flex;
  width: 100%;
  justify-content: center;
  position: absolute;
  top: 200px;
}

.menu-mobile-ativador {
  display: none;
}

.menu-mobile {
  display: none;
}

/* topo 1024 */
@media (max-width: 1024px) {
  .menu-area {
    background: transparent;
    border: none;
  }

  .topo .barra {
    background-color: var(--cor-primaria);
  }

  .topo .barra .hamburger {
    z-index: 2;
  }

  .topo {
    position: relative;
  }

  .menu-topo .center {
    width: 100% !important;
    padding: 0;
    bottom: unset;
  }

  .menu-topo nav {
    display: none;
    width: 100%;
    z-index: 2;
    background: var(--cor-primaria);
    box-sizing: border-box;
    border-top: 3px solid #ffffff;
    position: absolute;
    top: -50px;
  }

  .menu-links {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 0;
  }

  .menu-topo nav ul {
    flex-direction: column;
    margin-bottom: 40px;
    width: 100%;
    height: auto;
    align-items: start;
    /* margin-left: 50px; */
    align-items: center;
    margin: auto;
  }

  .menu-topo nav ul a {
    color: #ffffff;
    height: 60px;
  }

  .menu-topo nav ul li {
    position: relative;
  }

  .menu-topo nav ul li.active a {
    font-weight: bolder;
    color: var(--cor-verde);
  }

  .menu-topo nav ul li {
    margin-right: 0 !important;
    /* border-bottom: 2px solid var(--cor-branco); */
  }

  /* .menu-topo nav ul li.active {
         border-bottom: 2px solid var(--cor-verde);
     } */

  .menu-mobile-ativador {
    display: flex;
    justify-content: space-between;
    /* justify-content: flex-end; */
    padding: 20px 40px;
    align-items: center;
    background-color: var(--cor-branco);
    /* border-bottom: 3px solid #ffffffab; */
  }

  .menu-mobile-ativador img {
    width: 150px;
  }

  .mostrar-menu {
    display: block !important;
    /* left: 0% !important; */
  }

  .topo img.sombra {
    display: none;
  }

  .topo nav ul li a::after,
  .topo nav ul li a::before {
    display: none;
  }

  .topo nav ul li a:hover:after,
  .topo nav ul li a:hover::before {
    animation: none;
  }

  /*Hamburger menu*/

  .hamburger .line {
    width: 40px;
    height: 4px;
    background-color: var(--cor-terciaria);
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .hamburger:hover {
    cursor: pointer;
  }

  #hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
  }

  #hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
  }

  #hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-14px) rotate(-45deg);
  }

  .menu-topo nav ul li.active:first-child,
  .menu-topo nav ul li:hover:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .menu-topo nav ul li.active:last-child,
  .menu-topo nav ul li:hover:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .menu-topo nav ul li a {
    color: #ffffff;
    font-size: 1.563em;
  }

  img.logo-menu {
    display: none;
  }

  .menu-topo .menu-area li.dropdown {
    background-position-x: right !important;
    width: auto !important;
    justify-content: center;
    background-position-y: 35px !important;
    padding: 20px;
  }

  .menu-topo .menu-area li.dropdown.re:active .conteudo-drop {
    width: 100px;
  }

  .menu-topo .menu-mobile {
    position: absolute;
    top: 85px;
    width: 100%;
  }

  .menu-mobile .seta {
    position: relative;
    top: -4px;
  }

  .menu-mobile .cont {
    display: none;
    justify-content: center;
    align-self: center;
    flex-direction: column;
    background: #44b06480;
    width: 700px;
    padding-top: 30px;
  }
}

/* topo 1440 */
@media (max-width: 1440px) {
  .topo nav {
    margin-right: 50px;
  }
}

/* topo 425 */
@media (max-width: 425px) {
  .topo nav {
    top: -35px;
  }

  .topo nav ul {
    margin-left: 0;
  }

  .topo nav ul li a {
    font-size: 1.25em;
  }
}

@media (max-width: 375px) {
  .menu-mobile-ativador {
    gap: 30px;
  }

  .topo img.logo {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .menu-mobile .cont {
    width: 100%;
  }
}

/* BANNER */
.banner {
  position: relative;
  /* height: 950px; */
}

.banner .lista {
  margin-bottom: 0px !important;
  /* margin-top: 70px; */
  /* height: 950px; */
  height: 100%;
}

.banner video {
  width: 100%;
  height: auto;
  object-position: center;
  position: relative;
  top: 0;
  left: 0;
  display: block;
  object-fit: cover;
}

.banner .item-banner {
  position: relative;
}

.banner .item-banner img.imagem {
  width: 100%;
  position: relative;
  object-fit: cover;
  height: auto;
}

.banner .item-banner .texto-banner {
  position: absolute;
  top: 48%;
  left: 19%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 45%;
}

.banner .item-banner .texto-banner .descricao {
  width: 90%;
}

.banner .item-banner .texto-banner .titulo {
  /* width: 90%; */
  margin-bottom: 40px;
}

.banner .leia-mais-banner p {
  font-size: 1.25em;
  color: var(--cor-branco);
  font-family: var(--fonte-textos);
}

.banner .item-banner .texto-banner .titulo h1 {
  font-size: 3.75em;
  /* font-weight: 900; */
  font-family: var(--fonte-titulos);
  width: 100%;
}

.banner .item-banner .texto-banner .descricao p {
  font-size: 1.25em;
  font-family: var(--fonte-textos);
  line-height: 140%;
  width: 88%;
}

.leia-mais-banner a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  width: 250px;
}

.leia-mais p:not(.p-btn) {
  margin-top: 10px;
}

.bg-flecha {
  background-color: var(--cor-verde);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  transition: var(--transicao);
}

.leia-mais-banner .bg-flecha img {
  width: 20px;
  height: auto;
}

.leia-mais-banner a:hover .bg-flecha {
  background-color: var(--cor-branco);
}

.leia-mais-banner a:hover .bg-flecha {
  background-color: var(--cor-branco);
}

.banner .area-detalhe {
  position: absolute;
  bottom: -1px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.banner .area-detalhe a {
  position: absolute;
  top: 10px;
}

.banner .area-detalhe .flutuar {
  animation-name: flutuar;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: flutuar;
  -webkit-animation-duration: 0.7s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
}

@-webkit-keyframes flutuar {
  from {
    transform: translate3d(0, 3px, 0);
    filter: brightness(100%);
  }

  to {
    transform: translate3d(0, -4px, 0);
    filter: brightness(150%);
  }
}

@keyframes flutuar {
  from {
    transform: translate3d(0, 3px, 0);
    filter: brightness(100%);
  }

  to {
    transform: translate3d(0, -4px, 0);
    filter: brightness(150%);
  }
}

.banner .area-detalhe .seta-detalhe {
  height: auto;
  width: auto;
}

@media (max-width: 1440px) {
  .banner .item-banner .texto-banner {
    top: 25%;
    left: 12%;
    width: 45%;
  }
}

/* BANNER 1024 */
@media (max-width: 1024px) {
  .banner .lista {
    margin-top: 80px;
  }

  .banner .item-banner .texto-banner {
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
  }

  .banner .item-banner .texto-banner .titulo h1 {
    font-size: 2.5em;
  }
}

/* BANNER 768 */
@media (max-width: 768px) {
  .banner .item-banner .texto-banner .titulo {
    margin-bottom: 10px;
  }

  .banner .item img {
    height: 100%;
  }

  .banner .item .texto-banner {
    top: 460px;
  }

  .banner .item-banner .texto-banner .descricao {
    font-size: 1.125em;
  }

  .leia-mais-banner .bg-flecha {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 425px) {
  .banner .item-banner .texto-banner .titulo h1 {
    font-size: 1.5em;
    width: 300px;
  }

  .banner .item-banner .texto-banner .descricao {
    font-size: 1.125em;
    width: 320px;
  }

  .leia-mais-banner a {
    padding-top: 0;
  }

  .banner .leia-mais-banner p {
    font-size: 1.125em;
  }

  .leia-mais-banner .bg-flecha img {
    width: 14px;
    height: auto;
  }
}

/* BANNER 425 */
@media (max-width: 425px) {
  .item-banner .leia-mais-banner .bg-flecha img {
    width: 14px;
    height: auto;
  }

  .leia-mais-banner .bg-flecha {
    width: 40px;
    height: 40px;
  }

  .banner .item-banner .texto-banner .titulo h1 {
    font-size: 1.5em;
    width: 100%;
    /* margin-left: 20px; */
  }

  .banner .item-banner .texto-banner .descricao {
    width: auto;
    font-size: 1em;
    /* margin-left: 20px; */
  }

  .conteudo .area-um-sobre .titulo-sobre {
    margin-top: 4px;
  }

  .leia-mais-banner {
    display: flex;
    /* align-items: center; */
    gap: 20px;
    padding-top: 8px;
    margin-left: 10px;
  }

  .banner .leia-mais-banner p {
    font-size: 1em;
  }

  .leia-mais-banner .bg-flecha {
    width: 40px;
    height: 40px;
  }
}

/* BANNER 392 */
@media (max-width: 392px) {
  .banner .item .texto-banner {
    top: 40px;
  }
}

/* BANNER 375 */
@media (max-width: 375px) {
  .banner .item .texto-banner .titulo h1 {
    font-size: 1.563em !important;
  }

  .banner .item .texto-banner .titulo {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 80px;
  }

  .banner .item-banner .texto-banner .titulo {
    margin-bottom: 20px;
  }

  .banner .item-banner .texto-banner {
    top: 5%;
  }
}

/* BANNER 320 */
@media (max-width: 320px) {
  .banner .item-banner .texto-banner .titulo h1 {
    font-size: 1.25em;
  }

  .banner .item-banner .texto-banner .descricao {
    font-size: 0.875em;
  }

  .bg-flecha {
    width: 40px;
    height: 40px;
  }

  .leia-mais-banner {
    padding-top: 5px;
  }

  .leia-mais-banner .bg-flecha {
    width: 30px;
    height: 30px;
  }

  .banner .item .texto-banner {
    padding-top: 50px;
    top: -45px;
  }

  .banner .item .texto-banner .titulo {
    margin-bottom: 40px;
    margin: 25px auto;
  }

  .banner .item .texto-banner .titulo h1 {
    line-height: 35px;
  }
}

/* ============ SOBRE =========== */

#sobre {
}

#sobre .conteudo {
  display: flex;
  width: 100%;
  padding: 100px 0;
  justify-content: space-between;
}

#sobre .conteudo .area-um-sobre {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.area-um-sobre .titulo-sobre {
  display: flex;
  margin-top: 10px;
}

.texto-sobre {
  margin-top: 40px;
  line-height: 160%;
  width: 100%;
}

#sobre .conteudo .area-um-sobre span {
  font-family: var(--fonte-titulos);
  color: var(--cor-verde);
  font-size: 1.25em;
  font-weight: 300;
  text-transform: uppercase;
}

#sobre .conteudo .area-um-sobre h2 {
  font-family: var(--fonte-titulos);
  color: var(--cor-cinza);
  font-weight: bolder;
  font-size: 1.875em;
}

#sobre .conteudo .area-um-sobre p {
  font-family: var(--fonte-textos);
  font-size: 0.9375em;
  /* width: 95%; */
  line-height: 160%;
  color: var(--cor-cinza);
}

#sobre .conteudo .area-dois-sobre {
}

#sobre .conteudo .area-dois-sobre .area-img {
  width: 450px;
}

#sobre .conteudo .area-dois-sobre .area-img img {
  width: 100%;
  border-radius: 10px;
}

.area-tres {
  padding-bottom: 20px;
}

.area-tres .lista-principios {
  display: flex;
  gap: 10px;
  margin: auto;
}

.area-tres .principio {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.titulo-principios h3 {
  font-family: var(--fonte-titulos);
  color: var(--cor-titulo);
  font-size: 1.5625em;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 120%;
}

.texto-principios p {
  font-family: var(--fonte-textos);
  color: var(--cor-cinza);
  font-size: 0.938em;
  text-align: center;
  width: 75%;
  margin: auto;
  line-height: 180%;
}

/* SOBRE - EQUIPE */
#sobre .baixo {
  font-family: var(--fonte-textos);
  text-align: center;
  font-size: 0.9375em;
  color: var(--cor-titulo);
}

#sobre .texto-equipe {
  padding: 10px 0;
}

#sobre .equipe {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding: 20px 0;
}

#sobre .equipe .card-membro {
  display: flex;
  gap: 30px;
  width: 100%;
  padding: 30px;
  align-items: center;

  height: 300px;

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

  box-sizing: border-box;
}

#sobre .equipe .membro-img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 5px;
}

#sobre .equipe .membro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#sobre .equipe .membro-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#sobre .equipe .membro-info h3 {
  font-family: var(--fonte-titulos);
  color: var(--cor-cinza);
  font-size: 1.25em;
  line-height: 120%;
}

#sobre .membro-descricao {
  line-height: 1.6;
  overflow: visible;
  display: block;
  font-family: var(--fonte-textos);
  font-size: 0.9375em;
}

@media (max-width: 768px) {
  #sobre .cima {
    margin-top: 20px;
  }

  #sobre .equipe .card-membro {
    flex-direction: column;
    text-align: left;
    height: auto;
  }

  #sobre .equipe .membro-img {
    width: 300px;
    max-width: 100%;
    height: auto;
  }

  #sobre .equipe .membro-info h3 {
    text-align: center;
  }
}
/* SOBRE 1440 */
@media (max-width: 1440px) {
  #sobre {
    margin-top: -12px;
  }
}

/* SOBRE 1024 */
@media (max-width: 1024px) {
  #sobre {
    margin-top: -50px;
  }

  #sobre .conteudo {
    gap: 20px;
  }

  #sobre .conteudo .area-um-sobre {
    width: 50%;
  }

  .texto-sobre {
    width: 100%;
  }

  #sobre .area-dois-sobre .card-contato {
    /* background-color: var(--cor-branco); */
    width: 438px;
    height: 484px;
    border-radius: 10px;
    position: relative;
    top: 100px;
  }
}

/* Media 769px a 1023px */

@media (min-width: 769px) and (max-width: 1023px) {
  #sobre .conteudo {
    display: flex;
    flex-direction: column;
  }

  #sobre .conteudo .area-um-sobre {
    width: 100%;
    margin: 40px 0px;
  }

  .area-dois-sobre {
    display: flex;
    margin: auto;
  }

  #sobre .conteudo .area-um-sobre h1 {
    margin-left: 126px;
  }

  .area-dois-sobre .captcha-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #sobre .area-dois-sobre .card-contato {
    top: 10px;
  }

  .area-tres .texto-principios p {
    width: 90%;
  }
}

/* SOBRE 768 */
@media (max-width: 768px) {
  #sobre .conteudo .area-um-sobre p {
    text-align: justify;
  }

  #sobre .conteudo .area-um-sobre h1 {
    margin-left: 95px;
  }

  #sobre {
    display: flex;
    flex-direction: column;
  }

  #sobre .conteudo {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  #sobre .conteudo .area-um-sobre {
    width: 100%;
    /* margin: 40px 2px; */
    /* margin: 40px 3px; */
  }

  .area-dois-sobre {
    display: flex;
    justify-content: center;
  }

  .area-dois-sobre .captcha-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #sobre .area-dois-sobre .card-contato {
    top: 10px;
    margin: auto;
  }

  .area-tres .texto-principios p {
    width: 90%;
  }

  .area-tres .lista-principios {
    flex-direction: column;
  }

  .area-tres .principio {
    width: 50%;
    margin: auto;
    margin-top: 20px;
  }
}

@media (max-width: 425px) {
  .area-tres .principio {
    width: 100%;
  }

  #sobre .conteudo .topo .sobre {
    margin-left: 20px;
  }

  #sobre .conteudo .area-um-sobre h1 {
    font-size: 1.875em;
  }

  #sobre .conteudo .area-um-sobre p {
    /* width: 90%; */
    margin: auto;
  }

  #sobre .area-dois-sobre .card-contato {
    width: 390px;
    height: 475px;
  }

  #sobre .textos .texto-sobre {
    padding-top: 20px;
    /* margin-left: -54px; */
  }

  #sobre .area-dois-sobre .card-contato {
    width: 350px;
    height: 450px;
    margin: auto;
  }

  .area-contato .formulario input {
    width: 270px;
  }

  .area-dois-sobre .area-contato .formulario button {
    width: 300px;
    font-size: 1.125em;
  }

  .input-container {
    margin-left: 10px;
  }

  .area-tres .lista-principios {
    display: flex;
    flex-direction: column;
  }

  #sobre .conteudo .area-dois-sobre .titulo-card h2 {
    font-size: 1.375em;
    padding-bottom: 20px;
  }
}

@media (min-width: 430px) and (max-width: 600px) {
  #sobre .conteudo .area-um-sobre p {
    margin-left: 16px !important;
  }

  .area-tres .lista-principios {
    display: flex;
    flex-direction: column;
  }

  #sobre .area-dois-sobre .card-contato {
    width: 328px;
  }

  #sobre .conteudo .area-dois-sobre .titulo-card h2 {
    font-size: 1.375em;
  }

  .area-contato .formulario input {
    width: 250px;
    height: 50px;
    margin-left: 10px;
  }

  .area-dois-sobre .area-contato .formulario button {
    width: 260px;
  }
}

@media (min-width: 376px) and (max-width: 419px) {
  #sobre .conteudo .area-um-sobre {
    margin: 40px 0;
  }

  .area-dois-sobre .area-contato .formulario button {
    width: 266px;
    font-size: 1.125em;
  }

  #sobre .area-dois-sobre .card-contato {
    width: 310px;
    height: 450px;
  }

  .area-contato .formulario input {
    width: 228px;
  }
}

@media (max-width: 375px) {
  #sobre .area-um-sobre .textos .texto-sobre {
    margin-left: 20px;
    width: 90%;
  }

  .area-contato {
    padding-top: 20px;
    margin-left: 10px;
  }

  #sobre .conteudo .area-um-sobre h1 {
    margin-left: 3px;
  }

  .area-um-sobre .titulo-sobre {
    display: flex;
    justify-content: center;
  }

  #sobre .area-dois-sobre .card-contato {
    width: 320px;
  }

  .area-contato .formulario input {
    width: 240px;
    height: 50px;
  }

  #sobre .conteudo .area-um-sobre p {
    width: 96%;
  }
}

/* sobre 320 */
@media (max-width: 320px) {
  #sobre .conteudo .area-dois .cima .area-detalhes {
    display: none;
  }

  #sobre .area-dois-sobre .card-contato {
    width: 270px;
  }

  .input-container {
    margin-left: 0px;
  }

  .area-um-sobre .titulo-sobre {
    display: flex;
    margin-top: 8px;
    justify-content: center;
  }

  #sobre .conteudo .area-dois-sobre .titulo-card h2 {
    font-size: 1.25em;
  }

  .area-contato .formulario input {
    width: 210px;
    height: 50px;
  }

  .area-dois-sobre .area-contato .formulario button {
    width: 226px;
    font-size: 1em;
  }

  #sobre .conteudo .area-dois .cima .texto p {
    line-height: 40px;
    font-size: 1.875em;
  }

  .area-dois-sobre .captcha-area .termos p {
    font-size: 1em;
  }
}

/* ================= AREA O QUE FAZEMOS ================ */

.split-section {
  display: flex;
  width: 100%;
  background-color: var(--cor-primaria);
  height: 600px;
}

.container-imagem {
  display: flex;
  width: 50%;
  height: 100%;
}

.container-imagem img {
  width: 100%;
  height: auto;
}

.container-texto {
  padding: 40px;
  width: 750px;
  /* width: 840px; */
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  margin: auto 50px;
}

.container-texto h2 {
  color: var(--cor-branco);
  font-family: var(--fonte-titulos);
  font-weight: bolder;
  font-size: 1.875em;
}

.container-texto p {
  font-family: var(--fonte-textos);
  color: var(--cor-branco);
  font-size: 0.9375em;
  line-height: 160%;
}

p.texto-atuacao {
  padding-top: 20px;
}

.titulo-container {
  margin-bottom: 10px;
}

.leia-mais {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-top: 20px;
}

.btn-leia {
  display: flex;
  justify-content: center;
  border: 1px solid #ffffff;
  width: 250px;
  height: 56px;
  margin-top: 20px;
  border-radius: 5px;
  transition: var(--transicao);
  background-color: var(--cor-verde);
}

.btn-leia:hover {
  background-color: var(--cor-azul);
}

.btn-leia p {
  align-content: center;
  font-size: 1.25em;
  transition: var(--transicao);
}

/* o que fazemos MEDIA QUERY */

@media (max-width: 1024px) {
  .split-section {
    width: 100%;
  }

  .container-imagem {
    display: flex;
    width: 50%;
  }

  .container-imagem img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .container-imagem {
    display: none;
  }
}

@media (max-width: 425px) {
  .split-section {
    height: auto;
    padding: 20px 0;
  }

  .container-texto {
    padding: 0;
    width: 90%;
    margin: 20px auto;
  }

  .container-texto .center {
    width: 100%;
  }

  .container-texto p {
    text-align: justify;
  }
}

@media (min-width: 430px) and (max-width: 600px) {
  .container-texto .final {
    display: none;
  }

  .btn-leia {
    width: 220px;
    height: 52px;
  }

  .btn-leia p {
    font-size: 1.125em;
  }

  .container-texto .sublinhado {
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 200px;
    height: 5px;
    background-color: #4f7c6f;
  }

  .container-texto h1 {
    color: var(--cor-branco);
    font-family: var(--fonte-titulo);
    font-weight: 300;
    font-size: 2em;
  }
}

@media (min-width: 425px) and (max-width: 428px) {
  #area_atuacao .cima {
    padding-top: 100px !important;
  }

  .container-texto .texto-atuacao {
    width: 95%;
  }
}

/* ======== ESPECIALIDADES ======== */

#especialidades {
  margin: 100px auto;
}

#especialidades .topo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#especialidades h2 {
  font-family: var(--fonte-titulos);
  font-size: 1.875em;
  color: var(--cor-titulo);
}

#especialidades .texto-especialidades {
  width: 63%;
  padding: 20px 0;
}

#especialidades .texto-especialidades p {
  font-family: var(--fonte-textos);
  font-size: 0.938em;
  color: var(--cor-titulo);
  text-align: center;
}

.slick-dots {
  position: relative;
  left: 0;
  background: none !important;
  bottom: 20px !important;
}

.slick-dots li button:before {
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
}

.slick-dots li button:before {
  border-radius: 0;
  width: 20px !important;
  height: 5px !important;
  background-color: var(--cor-verde) !important;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  background-color: var(--cor-azul) !important;
  opacity: 1;
}

.espe-interna .slick-dots {
  margin-bottom: 20px;
}

#especialidades .lista-cards .area-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  position: relative;
  gap: 40px;
  padding-bottom: 40px;
  width: 1200px;
}

#especialidades .lista-cards .area-cards .slick-track {
  padding-top: 10px;
}

#especialidades .lista-cards .area-cards .slick-slide {
  display: flex !important;
  justify-content: center;
}

.card {
  background-color: #ffffff;
  width: 550px;
  height: 215px;
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card .card-head {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  box-sizing: border-box;
}

.card .card-head img {
  width: 60px;
}

.card .card-head h3 {
  color: var(--cor-titulo);
  font-size: 1.375em;
  font-family: var(--fonte-titulos);
  margin-left: 25px;
  font-weight: bolder;
}

.card .card-body .texto-card p {
  color: var(--cor-titulo);
  font-family: var(--fonte-textos);
  font-size: 0.938em;
  margin-left: 100px !important;
  margin-right: 70px !important;
  line-height: 160%;
  width: 415px;
}

.card .botao-mais {
  background-color: var(--cor-azul);
  width: 83px;
  height: 83px;
  border-radius: 50px;
  position: absolute;
  bottom: -40px;
  right: -30px;
  transition: all 0.3s ease;
}

.card .botao-mais:hover {
  background-color: var(--cor-primaria);
  cursor: pointer;
}

.card .botao-mais img {
  position: relative;
  left: 20px;
  top: 15px;
  width: 25px;
  height: 18px;
}

@media screen and (max-width: 1024px) {
  #especialidades .lista-cards .area-cards {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .card {
    box-shadow: none;
    border: 1px solid #dddddd;
  }

  #especialidades {
    margin: 30px 0;
  }

  #especialidades .texto-especialidades {
    width: 100%;
  }

  #especialidades .texto-especialidades p {
    text-align: justify;
  }
}

@media screen and (max-width: 425px) {
  .card .card-head h3 {
    margin: 0;
  }

  .card .card-head img {
    display: none;
  }

  .card .card-body .texto-card p {
    margin: 0 !important;
    padding: 10px !important;
    box-sizing: border-box;
    width: 100%;
  }
}

/* 
 /* ME LIGUE/ AREA WPP */

#me-ligue {
  background-color: var(--cor-primaria);
  display: flex;
  align-items: center;
  /* padding-top: 40px;
     padding-bottom: 40px; */
  height: 324px;
}

#me-ligue .cima {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

#me-ligue h2 {
  color: var(--cor-branco);
  font-family: var(--fonte-titulos);
  font-size: 1.875em;
  font-weight: bold;
  text-align: center;
}

#me-ligue .cima .textos p {
  color: var(--cor-branco);
  font-family: var(--fonte-textos);
  font-size: 0.9375em;
  text-align: center;
}

#me-ligue .cima .final {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.area-wpp {
  margin-top: -10px;
}

.area-wpp .formulario input {
  width: 631px;
  height: 60px;
  padding-left: 30px;
  /* padding-left: 15px; */
  padding-right: 15px;
  margin-bottom: 20px;
  border: none;
  font-size: 1em !important;
  border-radius: 4px;
}

.area-wpp .formulario input::placeholder {
  font-family: var(--fonte-banner);
  font-weight: bold;
  color: #849698;
  font-family: var(--fonte-textos);
  padding-left: 20px;
}

.area-wpp-mensagem {
  display: none;
  color: var(--cor-branco);
  font-family: var(--fonte-textos);
  font-size: 1.125em;
  text-align: center;
  margin-top: 20px;
}

form#form-contato-wpp {
  margin-top: 40px;
  text-align: center;
}

.input-container-ligar {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.input-container-ligar .icon {
  position: absolute;
  left: 13px;
  top: 38%;
  transform: translateY(-50%);
}

.input-container-ligar input {
  margin-right: 10px;
}

#tipo {
  position: absolute;
  transform: translateY(-50%);
  background: transparent;
  top: 36%;
  right: 196px;
  border: none;
  font-family: var(--fonte-textos);
  font-weight: bold;
  font-size: 1em;
  color: #849698;
  padding: 10px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../img/flecha-ligue.png") no-repeat right center;
}

.input-container-ligar select {
  width: 30%;
  background-color: var(--cor-input);
  border-radius: 10px;
}

.btn-cadastrar {
  position: absolute;
  right: 14px;
  top: 38%;
  transform: translateY(-50%);
  width: 155px;
  height: 50px;
  border-radius: 4px;
  color: var(--cor-branco);
  background: var(--cor-verde);
  border: none;
  font-family: var(--fonte-textos);
  color: #ffffff;
  font-size: 1.125em;
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--transicao);
  font-weight: 800;
}

.btn-cadastrar:hover {
  background-color: var(--cor-azul);
}

.detalhe-linha hr {
  height: 58px;
  position: absolute;
  top: 1%;
  left: 276px;
}

.area-wpp .final {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 430px) and (max-width: 700px) {
  #me-ligue .cima {
    display: flex;
    justify-content: center;
    margin-right: 16px;
    margin-top: 0px;
  }

  #me-ligue h2 {
    font-size: 2em;
  }

  .area-wpp .formulario input {
    width: 350px;
    font-size: 0.75em !important;
  }

  #tipo {
    font-size: 0.75em;
    padding: 4px;
    top: 37%;
    right: 118px;
  }

  .input-container-ligar select {
    width: 35%;
    background-color: var(--cor-input);
    border-radius: 10px;
  }

  .btn-cadastrar {
    width: 98px;
    height: 44px;
    font-size: 0.875em;
  }

  .detalhe-linha hr {
    display: none;
  }
}

@media (max-width: 425px) {
  #me-ligue h2 {
    font-size: 1.875em;
  }

  #me-ligue .cima {
    display: flex;
    justify-content: center;
    margin-right: 16px;
    margin-top: 0px;
  }

  form#form-contato-wpp {
    margin-bottom: 30px;
  }

  .input-container-ligar {
    margin-bottom: 30px;
    width: 100%;
  }

  .area-wpp .formulario input {
    width: 356px;
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--cor-cinza);
    font-family: var(--fonte-banner);
    border-radius: 4px;
  }

  #me-ligue .area-wpp .btn-cadastrar {
    width: 200px;
    height: 46px;
    font-size: 1em;
    margin-top: 68px;
    margin-right: 90px;
  }

  .detalhe-linha hr {
    display: none;
  }

  #tipo {
    right: 40px;
    font-size: 0.875em;
    padding: 0px;
    top: 36%;
  }

  .input-container-ligar select {
    width: 43%;
    background-color: var(--cor-input);
    border-radius: 10px;
  }

  #me-ligue .area-wpp .input-container-ligar input::placeholder {
    font-size: 0.875em;
  }
}

@media (min-width: 376px) and (max-width: 424px) {
  #me-ligue .area-wpp .btn-cadastrar {
    width: 200px;
    height: 46px;
    font-size: 1em;
    left: 0;
    right: 0;
    margin: auto;
    transform: none;
  }

  #tipo {
    background-size: 10px;
    font-size: 0.875em;
    top: 39%;
  }

  .input-container-ligar select {
    width: 54%;
    background-color: var(--cor-input);
    border-radius: 10px;
  }

  .input-container-ligar select.select.ligar {
    width: 40%;
    background-color: var(--cor-input);
    border-radius: 10px;
  }
}

@media (max-width: 375px) {
  #me-ligue .cima {
    margin-right: 0px;
  }

  .area-wpp .formulario input {
    width: 310px;
    font-size: 0.75em !important;
  }

  #tipo {
    font-size: 0.75em;
    padding: 4px;
    top: 37%;
    right: 124px;
    background-size: 12px;
  }

  .input-container-ligar select {
    width: 48%;
    background-color: var(--cor-input);
    border-radius: 10px;
  }

  .detalhe-linha hr {
    display: none;
  }

  #me-ligue .area-wpp .btn-cadastrar {
    width: 200px;
    height: 46px;
    font-size: 1em;
    margin-top: 10px;
    margin-right: 40px;
  }
}

@media (min-width: 320px) and (max-width: 424px) {
  .area-wpp .formulario input {
    width: 100%;
    font-size: 0.875em !important;
    padding: 0;
  }

  #me-ligue .cima {
    /* margin-top: 20px; */
    margin-right: 0px;
  }

  #tipo {
    right: 13px;
    top: 36%;
  }

  .btn-cadastrar {
    margin-right: 98px;
    top: 110%;
    margin-top: 10px;
  }
}

/* =========== FALE CONOSCO ========== */

#contato {
  padding: 100px 0;
}

#contato .cima {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin: auto;
}

#contato .cima h2 {
  font-weight: bolder;
  font-size: 1.875em;
  color: var(--cor-titulo);
  font-family: var(--fonte-titulos);
}

#contato .cima p {
  margin-top: 20px;
  color: var(--cor-titulo);
  font-family: var(--fonte-textos);
  font-size: 0.9375em;
  line-height: 180%;
  font-weight: 400;
  text-align: center;
}

.fale-conosco {
  margin-left: 50px;
  font-family: var(--fonte-titulo);
  color: var(--cor-principios);
}

#contato .itens {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 50px;
  justify-content: space-between;
}

#contato .esquerda {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-self: baseline;
  margin-top: 30px;
}

#contato .esquerda .item {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

#contato .esquerda .item:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

#contato .esquerda .area-1 {
  display: flex;
  align-items: center;
  width: 40px;
  justify-content: center;
}

#contato .esquerda .area-2 {
  display: flex;
  padding: 0 15px 0 8px;
  box-sizing: border-box;
  color: #444346;
  font-size: 1em;
  line-height: 190%;
  flex-direction: column;
}

#contato .esquerda .area-2 a,
#contato .esquerda .area-2 p {
  color: var(--cor-titulo);
  font-size: 0.938em;
  font-family: var(--fonte-textos);
}

#contato .direita {
  width: 62%;
}

#contato .direita .formulario input {
  width: 100%;
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
  font-family: var(--fonte-textos);
  box-sizing: border-box;
  font-size: 1em;
  background: #ffffff;
  border-radius: 4px;
  color: #849698;
}

#contato .direita .formulario input::placeholder {
  font-family: var(--fonte-textos);
  font-weight: 500;
  color: var(--cor-input);
}

#contato .direita .formulario textarea {
  width: 100%;
  height: 230px;
  border: 1px solid #dddddd;
  font-family: var(--fonte-textos);
  background: #ffffff;
  font-size: 1em;
  padding: 16px;
  box-sizing: border-box;
  margin-bottom: 8px;
  border-radius: 4px;
  font-weight: 500;
  color: #849698;
}

#contato .direita .formulario textarea::placeholder {
  font-family: var(--fonte-textos);
  color: var(--cor-input);
}

#contato .captcha-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-recaptcha {
  margin: 10px 0;
  display: block;
}

#contato .direita .formulario button {
  width: 200px;
  height: 57px;
  background-color: var(--cor-verde);
  color: var(--cor-branco);
  font-family: var(--fonte-titulos);
  cursor: pointer;
  font-size: 1.125em;
  border-radius: 4px;
  border: transparent;
  transition: var(--transicao);
}

#contato .direita .formulario button:hover {
  background-color: var(--cor-azul);
}

/* Contato MQ */

/* contato 768 */
@media (max-width: 768px) {
  #contato {
    padding: 30px 0;
  }

  #contato .cima {
    width: 100%;
  }

  #contato .cima p {
    text-align: justify;
  }

  #contato .esquerda {
    width: 35%;
  }

  #contato .direita {
    width: 65%;
  }

  #contato .captcha-area {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 425px) and (max-width: 600px) {
  #contato {
    display: flex;
    padding: 30px 0;
  }

  #contato .esquerda,
  #contato .direita {
    width: 100%;
  }

  #contato .cima .box-detalhe {
    display: none;
  }

  #contato .cima .box-detalhe1,
  #contato .cima .box-detalhe2 {
    display: none;
  }

  #contato .sublinhado {
    display: flex;
    justify-content: center;
    height: 5px;
    background-color: #adc2ce;
  }

  #contato .titulo-contato h1 {
    font-weight: 300;
    font-size: 2em;
    /* position: absolute; */
    padding-top: 36px;
  }
}

/* contato 425 */
@media (max-width: 425px) {
  #contato .cima .caixa-detalhe {
    display: none;
  }

  #contato .cima .final {
    display: none;
  }

  #contato .titulo-contato .sublinhado {
    display: flex;
    justify-content: center;
    margin: auto;
    height: 5px;
    background-color: #adc2ce;
  }

  .titulo-contato h1 {
    font-size: 1.875em;
    margin-left: 20px;
  }

  #contato .esquerda,
  #contato .direita {
    width: 100%;
  }
}

/* contato 375 */
@media (max-width: 375px) {
  #contato .titulo h1 {
    font-size: 1.875em !important;
  }

  #contato .itens {
    padding: 0;
  }

  #contato .cima .box-detalhe {
    display: none;
  }

  #contato .cima .box-detalhe1,
  #contato .cima .box-detalhe2 {
    display: none;
  }

  #contato .sublinhado {
    display: flex;
    justify-content: center;
    max-width: 200px;
    height: 5px;
    background-color: #adc2ce;
  }
}

@media (max-width: 425px) {
  #contato .itens {
    padding-top: 0 !important;
  }
}

/* =============== PAGINAÃ‡ÃƒO =============== */

.paginacao {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 30px;
}

.paginacao li {
  background-color: var(--cor-primaria);
  border: none;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.25em;
  border-radius: 3px;
}

.paginacao li:hover {
  background-color: var(--cor-verde);
}

.paginacao li.active {
  background-color: var(--cor-verde);
}

.paginacao a {
  color: #ffffff;
  font-family: var(--fonte-textos);
  display: flex;
  width: 40px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 650px) {
  .noticia_ver .img-area {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .noticia_ver small {
    margin-bottom: 15px;
  }
}

/* COPIRYGHT */

.copyright {
  /* margin-top: -200px; */
  background: var(--cor-primaria);
  color: #ffffff;
  font-size: 1em;
}

.copyright .center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
}

.copyright .center .texto {
  width: 100%;
  font-family: var(--fonte-textos);
  font-size: 0.875em;
}

.copyright .center span a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .copyright .center {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .extras .fundo {
    width: 100%;
  }

  #faixa .faixa-menor {
    flex-direction: column;
  }

  #faixa .faixa-menor .area-esquerda,
  #faixa .faixa-menor .area-direita {
    width: 100%;
    text-align: center;
  }

  #faixa .faixa-menor .area-esquerda p {
    font-size: 1.375em;
    line-height: 20px;
    padding: 15px 40px;
  }
}

@media (max-width: 320px) {
  #faixa .faixa-menor .area-esquerda p {
    font-size: 1.125em;
    line-height: 20px;
    padding: 10px 10px;
  }
}

/* =============== POPUP INICIO =============== */

.popup {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.popup_content {
  position: relative;
  margin: auto;
  padding: 0;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  width: 80%;
  max-width: 650px;
  height: auto;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.popup_imagem_full {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  top: -35px;
}

.popup_imagem_full img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 7px;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
}

.popup_youtube_full {
  width: 100%;
  position: relative;
  padding-bottom: 60%;
  height: 0;
}

.popup_youtube_full iframe {
  padding: 7px;
  background: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup_youtube_full .legenda {
  bottom: -35px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 40%);
  text-align: center;
}

.popup .legenda {
  display: flex;
  justify-content: center;
}

.popup .legenda span {
  background: #000;
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 17px;
  margin-top: 5px;
}

.close {
  color: #000;
  float: right;
  font-size: 2.1875em;
  z-index: 999;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  position: relative;
  right: -14px;
  top: -16px;
  background: #ffffff;
  height: 38px;
  width: 38px;
  text-align: center;
  border-radius: 50%;
  border: solid 1px #c1c1c1;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  background: #dddddd;
}

@media (max-width: 768px) {
  .popup_content {
    width: 98%;
  }
}

@media (max-width: 700px) {
  .close {
    right: -2px;
  }
}

/* =============== POPUP FIM =============== */

/*Redes sociais lateral*/

.rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 77px;
}

.rodape .texto {
  color: #1164aa;
  font-size: 16px;
  font-weight: 600;
}

.redes-sociais {
  display: flex;
  align-items: center;
}

.redes-sociais a {
  text-decoration: none;
}

.redes-sociais-right {
  height: auto;
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: 1s;
}

.redes-sociais-right a {
  text-decoration: none;
  margin-top: 10px;
}

.bolinha-social {
  /* background: #efefef; */
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25em;
  /* color: #989898; */
  margin: 0 5px;
  transition: 0.5s;
  /* border: 2px solid #ffffff; */
}

.bolinha-social.rodape {
  background: #f6f6f6;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25em;
  color: #989898;
  margin: 0 5px;
  transition: 0.5s;
}

.redes-sociais-right .fa-facebook-f {
  color: #ffffff;
}

.redes-sociais-right .fa-twitter {
  color: #ffffff;
}

.redes-sociais-right .fa-linkedin {
  color: #ffffff;
  font-size: 1.1em;
}

.redes-sociais-right .fa-instagram {
  color: #ffffff;
  font-size: 1.1875em;
}

.redes-sociais-right .fa-whatsapp {
  color: #ffffff;
  font-size: 1.2em;
}

.redes-sociais-right .fa-youtube {
  color: #ffffff;
  font-size: 1.1em;
}

.redes-sociais-right .fa-headset {
  color: #ffffff;
  font-size: 1.1em;
}

.bolinha-facebook {
  background: #3b5998 !important;
}

.bolinha-linkedin {
  background: #2867b2 !important;
}

.bolinha-instagram {
  background: #c13584 !important;
}

.bolinha-twitter {
  background: #1da1f2 !important;
}

.bolinha-whatsapp {
  background: #25d366 !important;
}

.bolinha-youtube {
  background: #ff0000 !important;
}

.bolinha-contato {
  background: #f1860b !important;
}

.bolinha-tour {
  background: #354b9c;
  box-shadow: 2px 0px 6px 6px rgb(255 255 255 / 75%);
  -webkit-box-shadow: 0px 0px 6px 4px rgb(255 255 255 / 75%);
  -moz-box-shadow: 0px 0px 6px 6px rgba(255, 255, 255, 0.75);
}

.bolinha-tour img {
  width: 58px;
  margin-top: 4px;
}

.bolinha-tour:hover {
  background: #354b9c;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-whatsapp {
  color: #25d366;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-youtube {
  color: #ff0000;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-instagram {
  color: #c13584;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-facebook-f {
  color: #3b5998;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-linkedin {
  color: #0e76a8;
}

.redes-sociais-rodape .bolinha-social:hover i.fa-twitter {
  color: #1da1f2;
}

@media (max-width: 768px) {
  .redes-sociais-right {
    top: -100%;
  }

  .mostrar-redes-sociais {
    top: 100px;
    transform: none;
  }
}

@media (max-width: 425px) {
  .rodape {
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    margin-bottom: 70px;
  }
}

@media (max-width: 320px) {
  .rodape {
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    margin-bottom: 30px;
  }
}

/* BANNER */

@media (max-width: 1024px) {
  .banner {
    top: -80px;
  }
}

/* 
 @media (max-width: 768px) {
     .banner {
         top: -99px;
     }

 }

 @media (max-width: 425px) {
     .banner {
         top: -100px;
     }
 } */

.row-wrap {
  flex-flow: row wrap;
}

/* Flex Container */
.seguimentos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /* border: 1px solid #ccc; */
}

/* Flex Item */
.item-seguimentos {
  /* O flex: 1; é necessário para que cada item se expanda ocupando o tamanho máximo do container. */
  flex: 1;
  margin: 5px;
  text-align: center;
  font-size: 1.5em;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 10px;
}

.item-seguimentos:hover {
  border: 2px solid #e7dfdf;
  -webkit-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.3);
  box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.3);
}

.item-seguimentos:hover div {
  font-weight: 600;
}

.item-seguimentos img {
  width: 100px;
  text-align: center;
  padding-top: 15px;
}

.item-seguimentos div {
  color: #2c3558;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-left: 25px;
  width: 250px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 15px;
}

.lista_parceiros {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* border: 1px solid #ccc; */
}

/* Flex Item */
.item-parceiros {
  /* O flex: 1; é necessário para que cada item se expanda ocupando o tamanho máximo do container. */
  flex: 1;
  margin: 5px;
  text-align: center;
  font-size: 1.5em;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 10px;
  max-width: 250px;
  max-height: 250px;
}

.item-parceiros:hover {
  border: 2px solid #e7dfdf;
  -webkit-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.3);
  box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.3);
}

.item-parceiros:hover div {
  font-weight: 600;
}

.item-parceiros img {
  max-width: 200px;
  max-height: 200px;
  text-align: center;
  padding-top: 15px;
}

footer .redes-sociais {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

img,
svg {
  vertical-align: middle;
}

footer .redes-sociais .bolinha-social {
  background: #efefef;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25em;
  color: #989898;
  margin: 0 5px;
  transition: 0.5s;
}

/* botão subir ao topo */
.anim-scroll-to-top.active-progress {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.anim-scroll-to-top {
  position: fixed;
  right: 12px;
  bottom: 82px;
  /* left: 30px;
     bottom: 30px; */
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(15px);
  -o-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}

.anim-scroll-to-top::after {
  position: absolute;
  content: url("../img/up-arrow.webp");
  font-weight: 600;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  color: var(--cor-verde);
  left: 0;
  top: 3px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}

.anim-scroll-to-top svg.progress-circle path {
  stroke: var(--cor-verde);
  stroke-width: 5;
  box-sizing: border-box;
}

.anim-scroll-to-top svg path {
  fill: none;
}

/* botão subir ao topo 425 */
@media (max-width: 425px) {
  .anim-scroll-to-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 82px;
  }

  .anim-scroll-to-top::after {
    left: -3px;
    top: 0px;
  }
}

/* botão flutuante whatsapp */
#fixa {
  position: fixed;
  bottom: 20px;
  margin: 0 20px;
  background-color: #25d366;
  width: 230px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.5s all;
  /* right: 25px; */
  right: -9px;
  z-index: 1;
}

#fixa img {
  width: 43px;
  height: 43px;
  margin-right: 1px;
}

#fixa.flut:hover {
  width: 230px;
  /* Largura expandida ao passar o mouse */
}

#fixa.flut:hover a .flex-itens span {
  opacity: 1;
  /* Torna o texto visível */
}

#fixa a .flex-itens {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

#fixa a .flex-itens span {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #ffffff;
  margin-left: 5px;
  font-size: 17px;
  min-width: 170px;
  float: left;
  opacity: 0;
}

.flutuar {
  animation-name: flutuar;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  /* animation: flutuar 0.7s  ease-in-out  infinite alternate ; */
}

@keyframes flutuar {
  from {
    transform: translate3d(0, 0, 0);
    /* filter: brightness(100%); */
  }

  to {
    transform: translate3d(0, -10px, 0);
    /* filter: brightness(150%); */
  }
}

#fixa.flut {
  width: 50px;
  transition: 0.5s all;
  overflow: hidden;
}

#fixa a .flex-itens span.aparecer {
  transition: 0.5s all;
  opacity: 1;
}

/* botão flutuante whatsapp 425*/
@media (max-width: 425px) {
  #fixa {
    right: 0;
    margin: 0 10px;
  }

  #fixa img {
    width: 40px;
    height: 40px;
  }

  #fixa.flut {
    width: 40px;
  }
}
