.botao-wpp-flutuante:hover {
  transition: 0.8S;
  background-color: #DDAA6B;
  color: white;
}

/* Botão de voltar ao topo */
#backToTop {
  position: fixed;
  bottom: 120px;
  right: 40px;
  background-color: #D9CB4F;
  /* Cor de fundo */
  color: #fff;
  /* Cor do ícone */
  border: none;
  border-radius: 50%;
  padding: 15px;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  /* Inicialmente oculto */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  /* Transição de opacidade */
  z-index: 999;
}

#backToTop:hover {
  opacity: 0.8;
}

@media(max-width: 992px) {
  #backToTop {
    bottom: 60px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  #backToTop i {
    position: relative;
    bottom: 5px;
  }
}

.word {
  position: relative;
}

.word::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: #FF8731;
  bottom: 0;
  left: 0;
  transform-origin: bottom;
  animation: infinite-line 2s linear infinite;
}

@keyframes infinite-line {
  0% {
    transform: scaleX(0);
  }

  50% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

@keyframes cta-animation {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@media(max-width: 474.99px) {
  .botao-fixo-rodape-1 {
    position: fixed;
    bottom: -33px;
    width: 100%;
    height: 70px;
    z-index: 9999;
  }

  .botao-fixo-rodape-2 {
    position: fixed;
    bottom: 5px;
    width: 100%;
    height: 70px;
    z-index: 9997;
  }

  .img-rodape-2 {
    width: 10%;
  }

  .img-rodape-1 {
    width: 10%;
  }
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 7%;
  height: 95%;
  color: #fff;
  text-align: center;
  opacity: .5;
  background-color: black;
}

@media(min-width:475px) and (max-width: 700.99px) {
  .botao-fixo-rodape-1 {
    position: fixed;
    bottom: -33px;
    width: 100%;
    height: 70px;
    z-index: 9999;
  }

  .botao-fixo-rodape-2 {
    position: fixed;
    bottom: 5px;
    width: 100%;
    height: 70px;
    z-index: 9997;
  }

  .img-rodape-2 {
    width: 10%;
  }

  .img-rodape-1 {
    width: 10%;
  }
}

@media(min-width:701px) and (max-width: 10000px) {
  .botao-fixo-rodape-1 {
    position: fixed;
    bottom: -33px;
    width: 100%;
    height: 70px;
    z-index: 9999;
  }

  .botao-fixo-rodape-2 {
    position: fixed;
    bottom: 5px;
    width: 100%;
    height: 70px;
    z-index: 999;
  }

  .img-rodape-2 {
    width: 7%;
  }

  .img-rodape-1 {
    width: 7%;
  }
}

@media(min-width: 991.99px) {
  .esconde-desktop {
    display: none;
  }
}

@media(max-width: 991.98px) {
  .esconde-mobile {
    display: none;
  }
}

/* Barra de rolagem personalizada */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb {
  background-color: #07B9A9;
  border-radius: 20px;
  border: 3px solid #07B9A9;
}

/* Estilos globais */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
}

/* Tipografia */
h2 {
  font-family: "Sora", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 118.5%;
  color: #006233;
}

h3,
h3,
h5 {
  font-family: "Sora", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 160%;
  /* or 38px */
  color: #FFFFFF;
}

p,
li,
a {
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}

/* Classes de utilitários */
.fonte-bold {
  font-weight: bold;
}

.fonte-white {
  color: white;
}

.color-white {
  color: white;
}

.fonte-blue {
  color: #223D68;
}

/* Media Query */
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

/* Classes de posicionamento */
.no-padding {
  padding: 0;
  margin: 0;
}

.centraliza {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.centraliza-desk-position {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*-------- NAV ------*/
nav {
  margin: 20px 0px 20px;
}

nav h2 {
  font-family: "Sora", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 118.5%;
  /* or 24px */
  text-align: right;
  color: #383838;
  padding-top: 15px;
}

/* ----------------- INICIO ------------------- */
.full-banner-inicio {
  background-image: url(/wp-content/themes/catarata-iol/new-img/new-banner-inicio-topo.jpg);
  background-position-x: 50%;
  background-position-y: 110%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 740px;
  padding: 80px 0px 0px 0px;
  position: relative;
}

.full-banner-inicio h1 {
  font-family: "Sora", serif;
  color: #383838;
  font-size: 48px;
  font-style: normal;
  margin-top: 40px;
  font-weight: 400;
  line-height: 122.5%;
}

.full-banner-inicio h1 span {
  color: #016233;
  font-weight: bolder;
}

.full-banner-inicio h2 {
  font-family: "Sora", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 118.5%;
  /* or 43px */
  width: 90%;
  color: #383838;
  margin: 20px 0px;
}

.cta-topo {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #D9CB4F -3.12%, #8F5B0D 100%);
  color: #FFF;
  font-size: 21px;
  font-weight: 700;
  line-height: 160%;
  padding: 13px 13px 13px 50px;
  width: 85%;
  margin-top: 20px;
  position: relative;
}

.cta-topo i {
  font-weight: 800;
  font-size: 32px;
  color: white;
  position: relative;
  top: 4px;
  margin-right: 20px;
}

.cta-topo:hover {
  background: linear-gradient(277deg, #0C3E25 9.85%, #006233 39.04%), #006233;
  color: white;
  transition: 0.4s;
  border: 4px double white;
}

.cta-topo:hover i {
  color: white;
  transition: 0.4s;
}

.cta-body {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #D9CB4F -3.12%, #8F5B0D 100%);
  color: #FFF;
  font-size: 21px;
  font-weight: 700;
  line-height: 160%;
  padding: 13px 13px 13px 0px;
  width: 600px;
  margin-top: 20px;
  position: relative;
}

.cta-body i {
  font-weight: 800;
  font-size: 32px;
  color: white;
  position: relative;
  top: 4px;
  margin-right: 20px;
}

.cta-body:hover {
  background: #25d366;
  color: white;
  transition: 0.4s;
  border: 4px double white;
}

.cta-body:hover i {
  color: white;
  transition: 0.4s;
}

/*--------- PARTE 2 NEW --------*/
.bg-parte-2-new iframe {
  margin-top: -180px;
  width: 711px;
  height: 380px;
  position: relative;
  z-index: 1;
}

/*--------- PARTE 2 --------*/
.bg-parte-2 {
  padding: 70px 0px;
}

.bg-parte-2 h2 {
  margin-bottom: 10px;
  margin-top: 35px;
}

.bg-parte-2 .col-lg-6 img {
  width: 459px;
  border-radius: 10px;
}

.bg-parte-2 .col-lg-3 img {
  margin-top: 20px;
  margin-left: 0px;
  width: 100%;
}

/*--------- PARTE 3 NEW --------*/
.bg-parte-3-new {
  padding: 60px 0px;
  background-color: #F1F1F1;
}

.card-3-new {
  margin-top: 60px;
  background: linear-gradient(277.3deg, #0C3E25 9.85%, #006233 39.04%), #006233;
  border: 2px solid #D5C54B;
  backdrop-filter: blur(38.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  height: 100%;
  color: white;
}

.card-3-new-body {
  padding: 0px 40px;
}

.card-3-new img {
  margin-bottom: 40px;
  margin-top: -40px;
  margin-left: 25px;
}

.bg-parte-3-new .col-lg-9 {
  margin-top: 120px;
}

.bg-parte-3-new .col-lg-9 h2 {
  display: flex;
  text-align: left;
  margin-bottom: 30px;
}

.bg-parte-3-new .col-lg-9 img {
  margin-right: 30px;
  position: relative;
  bottom: 10px;
}

/*---------- PARTE4 ----*/
.bg-parte-4 {
  padding: 60px 0px;
  position: relative;
}

.bg-parte-4 .cta-topo {
  max-width: 420px;
  text-align: left;
  margin-top: 25px;
}

.bg-parte-4 h2 {
  font-weight: bolder;
  margin-bottom: 40px;
}

.borda-parte-4 {
  background: linear-gradient(277.3deg, #0C3E25 9.85%, #006233 39.04%), #006233;
  border: 2px solid #D5C54B;
  backdrop-filter: blur(38.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  padding: 40px 80px;
  display: flex;
  margin-bottom: 30px;
}

.borda-parte-4 span {
  font-size: 40px;
  font-weight: bolder;
  position: relative;
  top: -9px;
}

.borda-span {
  color: #0C3E25;
  background: #CBB542;
  box-shadow: 12px 14px 37px rgba(0, 0, 0, 0.25);
  padding: 25px;
  width: 87px;
  height: 87px;
  border-radius: 90%;
}

.borda-parte-4 h3 {
  position: relative;
  left: 30px;
  text-align: left;
  top: 20px;
  color: white;
  font-size: 20px;
  font-weight: normal;
  display: block;
}

.borda-parte-4-right {
  border: 3px solid transparent;
  border-left: none;
  border-radius: 10px;
  width: 125px;
  height: 206px;
  position: absolute;
  right: -50px;
  margin: -111px 0px;
  z-index: -1;
  animation: generateBorderRight 5s linear forwards;
}

.borda-parte-4-left {
  border: 3px solid transparent;
  border-right: none;
  border-radius: 10px;
  width: 125px;
  height: 206px;
  position: absolute;
  left: -50px;
  margin: -111px 0px;
  z-index: -1;
  animation: generateBorderLeft 5s linear forwards;
}

@keyframes generateBorderRight {
  0% {
    border-right-color: transparent;
  }

  50% {
    border-right-color: #CEBB45;
    border-top-color: #CEBB45;
    border-bottom-color: #CEBB45;
  }

  100% {
    border-right-color: #CEBB45;
    border-top-color: #CEBB45;
    border-bottom-color: #CEBB45;
  }
}

@keyframes generateBorderLeft {
  0% {
    border-left-color: transparent;
  }

  50% {
    border-left-color: #CEBB45;
    border-top-color: #CEBB45;
    border-bottom-color: #CEBB45;
  }

  100% {
    border-left-color: #CEBB45;
    border-top-color: #CEBB45;
    border-bottom-color: #CEBB45;
  }
}

.line {
  position: relative;
  top: 12%;
  right: 0px;
  z-index: -1;
  width: 150px;
  border-bottom: 2px solid #CEBB45;
  transform: translateX(-50%);
}

.circle {
  position: relative;
  top: 12%;
  right: 70px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #CEBB45;
  transform: translate(-50%, -50%);
}

.bg-parte-4-new h4 {
  margin-top: 40px;
}

.bg-parte-4 h4 a {
  font-size: inherit;
  font-weight: bold;
  color: inherit;
}

/*-------- PARTE 5 NEW ----*/
.bg-parte-5-new {
  padding: 60px 0px;
  background: #F1F1F1;
  position: relative;
  z-index: 0;
}

.bg-parte-5-new h2 {
  font-weight: bolder;
  font-style: normal;
  line-height: 118.5%;
  margin-top: 20px;
  margin-bottom: 15px;
  width: 90%;
}

.bg-parte-5-new p {
  width: 85%;
}

@media(max-width: 992px) {
  .bg-parte-5-new p {
    width: 100%;
  }
}

.bg-parte-5-new h3 {
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  color: #FFFFFF;
  margin-top: 15px;
}

.grafismo-parte-5-new {
  position: absolute;
  right: -120px;
  top: 50%;
  z-index: -1;
}

.borda-parte-5-new-topo {
  background: linear-gradient(277.3deg, #0C3E25 9.85%, #006233 39.04%), #006233;
  border: 2px solid #D5C54B;
  backdrop-filter: blur(38.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  padding: 80px 40px;
  height: 100%;
  z-index: 8989;
}

.borda-parte-5-new i,
.borda-parte-5-new-topo i {
  font-size: 52px;
  color: #CEBB45;
  font-weight: bold;
  margin-bottom: 15px;
}

.borda-parte-5-new {
  background: linear-gradient(277.3deg, #0C3E25 9.85%, #006233 39.04%), #006233;
  border: 2px solid #D5C54B;
  backdrop-filter: blur(38.5px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  padding: 40px;
  margin-top: 40px;
  height: 90%;
}

/*-------- PARTE 6 NEW ----*/
.bg-parte-6-new {
  background-image: url(/wp-content/themes/catarata-iol/new-img/bg-parte-6-new.jpg);
  background-position-x: 50%;
  background-position-y: 00%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding: 65px 0px 65px 00px;
  color: white;
}

.bg-parte-6-new h2 {
  color: white;
  margin-bottom: 20px;
}

.bg-parte-6-new p {
  width: 85%;
}

@media(max-width: 992px) {

  .bg-parte-5-new p,
  .bg-parte-5-new h2 {
    width: 100%;
    text-align: center;
  }
}

/*-------- PARTE 7 -------*/
.bg-parte-7 {
  padding: 65px 0px;
}

.bg-parte-7 h2 {
  margin-bottom: 40px;
}

.bg-parte-7 ul {
  list-style-image: url(/wp-content/themes/catarata-iol/new-img/icone-like.png);
  display: inline-block;
  position: relative;
  left: 0px;
}

.bg-parte-7 ul li span {
  position: relative;
  left: 15px;
  top: -12px;
}

.bg-parte-7 li {
  text-align: left;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  color: #383838;
  width: 100%;
}

.bg-parte-7 .cta-topo {
  width: 420px;
  text-align: left;
}

/*-------- PARTE 8 -------*/
.bg-parte-8-new {
  padding: 65px 0px;
}

.bg-parte-8-new p {
  width: 80%;
  margin-top: 15px;
  margin-bottom: 0;
}

.bg-parte-8-new .cta-body {
  width: 80%;
}

.bg-parte-8-new h3 {
  font-weight: 400;
  border: 2px solid #383838;
  border-radius: 15px;
  text-align: center;
  padding: 15px;
  color: #383838;
  font-size: 20px;
}

/*-------- PARTE 9 -------*/
.bg-parte-9-new {
  background-color: #F1F1F1;
  padding: 65px 0px;
}

.bg-parte-9-new p {
  margin-top: 15px;
  margin-bottom: 40px;
}

.bg-parte-9-new img {
  width: 100%;
  height: 343px;
}

.imgs-parte-9 {
  display: flex;
  margin-top: 30px;
}

/*-------- PARTE 8 -------*/
.bg-parte-8 {
  padding: 65px 0px;
}

.bg-parte-8 h2 {
  margin-bottom: 40px;
}

.borda-parte-8-white {
  padding: 50px 40px;
  background: #F6F6F6;
  border-radius: 15px;
  height: 100%;
}

.borda-parte-8-white h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 118.5%;
  text-align: center;
  color: #0C452A;
}

.borda-parte-8-white h4 span {
  font-size: 36px;
}

.borda-parte-8-white h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 118.5%;
  /* or 76px */
  text-align: center;
  color: #D9CB4F;
}

.borda-parte-8-green {
  padding: 50px 40px;
  background: #016233;
  border-radius: 15px;
  height: 100%;
}

.borda-parte-8-green h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 118.5%;
  text-align: center;
  color: white;
}

.borda-parte-8-green h4 span {
  font-size: 36px;
}

.borda-parte-8-green h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 118.5%;
  /* or 76px */
  text-align: center;
  color: #D9CB4F;
}

.bg-parte-8 .col-lg-12 h2 {
  margin-top: 60px;
  margin-bottom: 35px;
  text-align: center;
}

#h3-preco {
  color: #383838;
  font-size: 20px;
  text-align: center;
  border: 1.5px solid #016233;
  width: 100%;
  padding: 20px 10px;
  border-radius: 10px;
  display: block;
}

.bg-parte-8 .cta-topo {
  max-width: 420px;
  text-align: left;
}

/*------------ PARTE 9 ------*/
.bg-parte-9 {
  padding: 60px 0;
}

.bg-parte-9 h2 {
  color: #0C452A;
  font-weight: 700;
  line-height: 122.5%;
  /* 63.7px */
  margin-bottom: 22px;
  margin-bottom: 40px;
  text-align: center;
}

.bg-parte-9 .cta-topo {
  max-width: 420px;
  text-align: left;
}

.borda-especialistas-white {
  border-radius: 10px;
  background: #F6F6F6;
  padding: 18px 34px 18px 34px;
  width: 362px;
}

.borda-especialistas-white p {
  color: #2F2F2F;
}

.borda-especialistas-white img {
  border-radius: 10px;
}

.borda-especialistas-white h3 {
  color: #0C452A;
  font-size: 28px;
  font-weight: 700;
  line-height: 122.5%;
  /* 34.3px */
  margin: 13px 0px;
}

.borda-especialistas-green {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 10px;
  border: 2px solid #D5C54B;
  background: linear-gradient(284deg, #052717 -58.99%, #006233 41.71%), #006233;
  backdrop-filter: blur(38.5px);
  padding: 18px 34px 18px 34px;
  width: 362px;
}

.borda-especialistas-green p {
  color: white;
}

.borda-especialistas-green img {
  border-radius: 10px;
}

.borda-especialistas-green h3 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  line-height: 122.5%;
  /* 34.3px */
  margin: 13px 0px;
}

/*---- PARTE 10 NEW ---*/
.bg-parte-10-new {
  background-image: url(/wp-content/themes/catarata-iol/img-catarata/bg-parte-10-new.png);
  background-position-x: 50%;
  background-position-y: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: auto;
  padding: 60px 0;
  color: white;
}

.bg-parte-10-new h2 {
  font-weight: 700;
  line-height: 122.5%;
  /* 63.7px */
  margin-bottom: 15px;
  text-align: center;
}

.bg-parte-10-new h3 {
  color: white;
  font-weight: bold;
  font-size: 36px;
  margin: 30px 0px 0px 0px;
}

.bg-parte-10-new .cta-topo {
  max-width: 420px;
  text-align: left;
}

/* Estilos dos slides */
.bg-parte-10-new .splide__slide {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  transform: scale(0.8);
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Slide central em destaque */
.bg-parte-10-new .splide__slide.is-active {
  transform: scale(1.0);
  /* Aumenta o tamanho do slide ativo */
  /* Altura maior para o slide ativo */
  z-index: 2;
}

/* Botão de play */
/* Botão de play */
.play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #FFD700, #8B4513);
  /* Gradiente dourado */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.play-button i {
  font-size: 24px;
  color: #fff;
}

video {
  width: 95%;
  height: auto;
  border-radius: 10px;
  /* Bordas arredondadas para melhor aparência */
}

.hidden {
  display: none;
  /* Inicialmente esconde os vídeos */
}

video.active {
  display: block;
  /* Exibe o vídeo quando a classe "active" é adicionada */
}

/*------- PARTE 10 -----*/
.bg-parte-10 {
  padding: 70px 0px;
}

.bg-parte-10 h2 {
  font-weight: bolder;
  font-style: normal;
  line-height: 118.5%;
  color: #0C3E25;
  margin-bottom: 50px;
}

.borda-parte-10 {
  border-radius: 15px;
}

.borda-parte-10 img {
  height: 280px;
}

.borda-parte-10 h3 {
  margin-top: -55%;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  width: 100%;
  padding: 0px 20px;
  text-align: center;
  position: relative;
  left: 1%;
  color: #FFFFFF;
}

/*------- PARTE 11 ---*/
.bg-parte-11 {
  padding: 70px 0px;
}

.bg-parte-11 h2 {
  font-weight: 700;
  line-height: 122.5%;
  color: #0C3E25;
  margin-bottom: 15px;
  text-align: center;
}

/*--------- Codigos novos ---------*/
.bg-parte-4-new {
  padding: 60px 0px;
}

.bg-parte-4-new h2 {
  font-style: normal;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 118.5%;
  color: #0C3E25;
}

.bg-parte-4-new h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 25px 0px;
  line-height: 118.5%;
  color: #0C3E25;
}

.bg-parte-4-new img {
  height: 100%;
}

/* ------ RODAPE *-------- -*/
.bg-footer-2 {
  padding: 70px 0px;
  background: #016233;
  color: white;
}

.bg-footer-2 h3,
.bg-footer-2 h4,
.bg-footer-2 h5,
.bg-footer-2 a {
  line-height: 160%;
  font-size: 20px;
  text-decoration: none;
  color: white;
}

.bg-footer-2 h3 a:hover {
  color: #D9CB4F;
  transition: 0.5S;
  text-decoration: underline;
}

.bg-footer-2 h5 a:hover {
  color: #007bff;
  transition: 0.5S;
  text-decoration: underline;
}

.linha-vertical-2 {
  width: 3px;
  height: 143px;
  background: #D5C54C;
  margin: 0 0px;
}

.bg-footer {
  background: #0C3E25;
  padding: 80px 0px 40px 0px;
  color: white;
}

.bg-footer h3 {
  font-size: 20px;
  font-weight: 400;
}

.bg-footer i {
  color: #D3C249;
  margin: 4px 4px 4px 0px;
  border-radius: 50px;
}

.bg-footer img {
  float: right;
}

#p-wta3 {
  margin-top: 25px;
  font-size: 14px;
}

#p-wta3>a {
  font-size: 14px;
}

.i-instagram:hover {
  color: #FD1D1D;
  transition: 0.3s;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: scale(1.1);
  transform: scale(1.5);
}

.i-facebook:hover {
  color: #007bff;
  transition: 0.3S;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: scale(1.1);
  transform: scale(1.5);
}

/*------- ANIMAÇÕES/HOVER ------------- */
@keyframes cta-animation {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  45% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.cta-topo,
.cta-topo-2,
.cta-parte-3,
.bg-parte-7 a,
.bg-parte-9 a,
.bg-parte-11 a {
  -webkit-animation: cta-animation 1.9s ease-in-out infinite both;
  animation: cta-animation 1.9s ease-in-out infinite both;
}

.cta-topo:after,
.cta-topo-2:after,
.cta-parte-3:after,
.bg-parte-7 a:after,
.bg-parte-9 a::after,
.bg-parte-11 a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.cta-topo:before,
.cta-topo-2:before,
.cta-parte-3:before,
.bg-parte-7 a:before,
.bg-parte-9 a::before,
.bg-parte-11 a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  cursor: pointer;
  background: #25d366;
  color: white;
  transition: all 0.5S;
  z-index: -1;
}

.cta-topo:hover,
.cta-topo-2:hover,
.cta-parte-3:hover,
.bg-parte-7 a:hover,
.bg-parte-9 a:hover,
.bg-parte-11 a:hover {
  color: #fff;
  border: 2px solid white;
  cursor: pointer;
  z-index: 3;
}

.cta-topo:hover:before,
.cta-topo-2:hover:before,
.cta-parte-3:hover:before,
.bg-parte-7 a:hover:before,
.bg-parte-9 a:hover:before,
.bg-parte-11 a:hover:before {
  width: 100%;
  border-radius: 10px;
}

/*--------- MEDIA QUERIES --------*/
@media(min-width: 992px) and (max-width: 1200px) {

  /*-------- INICIO ----*/
  .full-banner-inicio h1 {
    font-size: 40px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 .cta-topo {
    margin-top: 25px;
  }

  /*------- PARTE 9 ---*/
  .borda-especialistas-green {
    width: auto;
    padding: 20px;
  }

  .borda-especialistas-white {
    width: auto;
  }

  /*------ PARTE 10 ----*/
  .borda-parte-10 img {
    height: 310px;
  }

  .borda-parte-10 h3 {
    padding: 0px 5px;
    margin-top: -65%;
  }
}

@media(max-width: 992px) {
  .bg-parte-4-new img {
    height: auto;
  }

  .linha-vertical-2 {
    width: 100%;
    height: 2px;
    background: #D5C54C;
    margin: 25px 0px;
  }

  .borda-parte-8-white,
  .borda-parte-8-green {
    height: auto;
  }

  .borda-parte-8-white {
    margin-bottom: 30px;
  }

  .borda-especialistas-white,
  .borda-especialistas-green {
    height: auto;
    width: auto;
  }

  .borda-especialistas-green {
    margin: 30px 0px;
  }
}

@media(min-width: 767.99px) and (max-width: 991.99px) {

  /*-------- INICIO ----*/
  .full-banner-inicio h1 {
    font-size: 40px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 .cta-topo {
    margin-top: 25px;
    max-width: 100%;
  }

  .bg-parte-2 img {
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-top: -50%;
  }

  .img-topo-mobile {
    margin-bottom: 55%;
  }

  .bg-parte-2 video {
    width: 100%;
    height: auto;
    margin-top: 45px;
  }

  /*--------PARTE 6 -----*/
  .borda-green-parte-6 {
    margin-bottom: 40px;
  }

  /*------ PARTE 10 ----*/
  .bg-parte-10 {
    padding-bottom: 0;
  }

  .borda-parte-10 {
    position: relative;
  }

  .bg-parte-10 .no-padding {
    padding: 10px;
  }

  .borda-parte-10 img {
    height: auto;
    margin-bottom: 25px;
    width: 100%;
  }

  .borda-parte-10 h3 {
    position: absolute;
    width: 70%;
    margin-top: 0;
    top: 75%;
    padding: 0px 15px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media(min-width: 550.99px) and (max-width: 767.98px) {

  /*-------- INICIO ----*/
  .full-banner-inicio h1 {
    font-size: 40px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 {
    padding-bottom: 30px;
  }

  .bg-parte-2 .cta-topo {
    margin-top: 25px;
    max-width: 100%;
  }

  .bg-parte-2 img {
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-top: -50%;
  }

  .img-topo-mobile {
    margin-bottom: 55%;
  }

  .bg-parte-2 video {
    width: 100%;
    height: auto;
    margin-top: 45px;
  }

  /*-------- PARTE 4 ---*/
  .bg-parte-4 {
    padding-bottom: 0;
  }

  .borda-parte-4 {
    padding: 40px;
    display: block;
  }

  .borda-parte-4 h3 {
    left: 0;
    top: 0px;
    margin-top: 20px;
  }

  /*--------PARTE 6 -----*/
  .borda-green-parte-6 {
    margin-bottom: 40px;
  }

  /*------ PARTE 7 ---*/
  .bg-parte-7 ul {
    left: 20px;
  }

  /*------ PARTE 10 ----*/
  .bg-parte-10 {
    padding-bottom: 0;
  }

  .borda-parte-10 {
    position: relative;
  }

  .bg-parte-10 .no-padding {
    padding: 10px;
  }

  .borda-parte-10 img {
    height: auto;
    margin-bottom: 25px;
    width: 100%;
  }

  .borda-parte-10 h3 {
    position: absolute;
    width: 70%;
    margin-top: 0;
    top: 75%;
    padding: 0px 15px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media(max-width: 550px) {
  .full-banner-inicio {
    background-image: url(/wp-content/themes/catarata-iol/img-catarata/topo-mobile.png);
    padding-bottom: 120px;
  }

  .full-banner-inicio img {
    width: 50%;
  }

  .bg-parte-2 {
    padding-top: 0px;
  }

  .bg-parte-4-new {
    padding-bottom: 0;
  }

  .bg-parte-6-new h3 {
    margin-top: 35px;
  }
}

@media(min-width: 420.99px) and (max-width: 550.98px) {

  /*-------GLOBAL ------*/
  h2 {
    font-size: 28px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 {
    padding-bottom: 30px;
  }

  .bg-parte-2 .cta-topo {
    margin-top: 25px;
    max-width: 100%;
  }

  .bg-parte-2 img {
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-top: -50%;
  }

  .img-topo-mobile {
    margin-bottom: 55%;
  }

  .bg-parte-2 video {
    width: 100%;
    height: auto;
    margin-top: 45px;
  }

  /*-------- PARTE 4 ---*/
  .bg-parte-4 {
    padding-bottom: 0;
  }

  .borda-parte-4 {
    padding: 40px;
    display: block;
  }

  .borda-parte-4 h3 {
    left: 0;
    top: 0px;
    margin-top: 20px;
  }

  /*--------PARTE 6 -----*/
  .borda-green-parte-6 {
    margin-bottom: 40px;
  }

  /*------ PARTE 7 ---*/
  .bg-parte-7 {
    padding: 60px 30px;
  }

  .bg-parte-7 ul {
    left: 00px;
  }

  .bg-parte-7 li {
    font-size: 20px;
  }

  .bg-parte-7 .cta-topo {
    width: 420px;
    font-size: 18px;
  }

  /*--- PARTE 8 ---*/
  .cta-topo {
    max-width: 100%;
    width: 400px;
    text-align: left;
  }

  /*------ PARTE 10 ----*/
  .bg-parte-10 {
    padding-bottom: 0;
  }

  .borda-parte-10 {
    position: relative;
  }

  .bg-parte-10 .no-padding {
    padding: 10px;
  }

  .borda-parte-10 img {
    height: auto;
    margin-bottom: 25px;
    width: 100%;
  }

  .borda-parte-10 h3 {
    position: absolute;
    width: 91%;
    margin-top: 0;
    top: 65%;
    padding: 0px 15px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media(min-width: 380.99px) and (max-width: 420.98px) {

  /*-------GLOBAL ------*/
  h2 {
    font-size: 28px;
  }

  p,
  li,
  a {
    font-size: 18px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 {
    padding-bottom: 30px;
  }

  .bg-parte-2 .cta-topo {
    margin-top: 25px;
    max-width: 100%;
  }

  .bg-parte-2 img {
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-top: -50%;
  }

  .img-topo-mobile {
    margin-bottom: 55%;
  }

  .bg-parte-2 video {
    width: 100%;
    height: auto;
    margin-top: 45px;
  }

  /*-------- PARTE 4 ---*/
  .bg-parte-4 {
    padding-bottom: 0;
  }

  .borda-parte-4 {
    padding: 40px;
    display: block;
  }

  .borda-parte-4 h3 {
    left: 0;
    top: 0px;
    margin-top: 20px;
  }

  /*--------PARTE 6 -----*/
  .borda-green-parte-6 {
    padding: 35px;
    margin-bottom: 40px;
  }

  /*------ PARTE 7 ---*/
  .bg-parte-7 {
    padding: 60px 30px;
  }

  .bg-parte-7 ul {
    left: 00px;
  }

  .bg-parte-7 li {
    font-size: 20px;
  }

  .bg-parte-7 .cta-topo {
    width: 420px;
    font-size: 15px;
  }

  /*------ PARTE 10 ----*/
  .bg-parte-10 {
    padding-bottom: 0;
  }

  .borda-parte-10 {
    position: relative;
  }

  .bg-parte-10 .no-padding {
    padding: 10px;
  }

  .borda-parte-10 img {
    height: auto;
    margin-bottom: 25px;
    width: 100%;
  }

  .borda-parte-10 h3 {
    position: absolute;
    width: 100%;
    margin-top: 0;
    top: 65%;
    padding: 0px 15px;
    left: 50%;
    font-size: 19px;
    transform: translate(-50%, -50%);
  }
}

@media(min-width: 350.99px) and (max-width: 380.98px) {

  /*-------GLOBAL ------*/
  h2 {
    font-size: 26px;
  }

  p,
  li,
  a {
    font-size: 17px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 {
    padding-bottom: 30px;
  }

  .bg-parte-2 .cta-topo {
    margin-top: 25px;
    max-width: 100%;
  }

  .bg-parte-2 img {
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-top: -50%;
  }

  .img-topo-mobile {
    margin-bottom: 55%;
  }

  .bg-parte-2 video {
    width: 100%;
    height: auto;
    margin-top: 45px;
  }

  /*-------- PARTE 4 ---*/
  .bg-parte-4 {
    padding-bottom: 0;
  }

  .borda-parte-4 {
    padding: 40px 20px;
    display: block;
  }

  .borda-parte-4 h3 {
    left: 0;
    font-size: 18px;
    top: 0px;
    margin-top: 20px;
  }

  /*--------PARTE 6 -----*/
  .borda-green-parte-6 {
    padding: 35px;
    margin-bottom: 40px;
  }

  /*------ PARTE 7 ---*/
  .bg-parte-7 {
    padding: 60px 10px;
  }

  .bg-parte-7 ul {
    left: 00px;
  }

  .bg-parte-7 li {
    font-size: 18px;
  }

  .bg-parte-7 .cta-topo {
    width: 420px;
    font-size: 15px;
  }

  /*-------- PARTE 8 ---*/
  .borda-parte-8-green h4,
  .borda-parte-8-white h4 {
    font-size: 55px;
  }

  /*------ PARTE 10 ----*/
  .bg-parte-10 {
    padding-bottom: 0;
  }

  .borda-parte-10 {
    position: relative;
  }

  .bg-parte-10 .no-padding {
    padding: 10px;
  }

  .borda-parte-10 img {
    height: 270px;
    width: 100%;
    margin-bottom: 25px;
    width: 100%;
  }

  .borda-parte-10 h3 {
    position: absolute;
    width: 100%;
    margin-top: 0;
    top: 65%;
    padding: 0px 15px;
    left: 50%;
    font-size: 18px;
    transform: translate(-50%, -50%);
  }
}

@media(min-width: 330.99px) and (max-width: 350.98px) {

  /*-------GLOBAL ------*/
  h2,
  .bg-parte-10-new h3 {
    font-size: 25px;
  }

  p,
  li,
  a {
    font-size: 17px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 {
    padding-bottom: 30px;
  }

  .bg-parte-2 .cta-topo {
    margin-top: 25px;
    max-width: 100%;
  }

  .bg-parte-2 img {
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-top: -50%;
  }

  .img-topo-mobile {
    margin-bottom: 55%;
  }

  .bg-parte-2 video {
    width: 100%;
    height: auto;
    margin-top: 45px;
  }

  /*-------- PARTE 4 ---*/
  .bg-parte-4 {
    padding-bottom: 0;
  }

  .borda-parte-4 {
    padding: 40px 20px;
    display: block;
  }

  .borda-parte-4 h3 {
    left: 0;
    font-size: 18px;
    top: 0px;
    margin-top: 20px;
  }

  /*--------PARTE 6 -----*/
  .borda-green-parte-6 {
    padding: 35px;
    margin-bottom: 40px;
  }

  /*------ PARTE 7 ---*/
  .bg-parte-7 {
    padding: 60px 10px;
  }

  .bg-parte-7 ul {
    left: 00px;
  }

  .bg-parte-7 li {
    font-size: 18px;
  }

  .bg-parte-7 .cta-topo {
    width: 420px;
    font-size: 15px;
  }

  /*-------- PARTE 8 ---*/
  .borda-parte-8-green h4,
  .borda-parte-8-white h4 {
    font-size: 45px;
  }

  .borda-parte-8-white h4 span {
    font-size: 29px;
  }

  /*--- parte 9 ---*/
  .borda-especialistas-green h3,
  .borda-especialistas-white h3 {
    font-size: 22px;
  }

  /*------ PARTE 10 ----*/
  .bg-parte-10 {
    padding-bottom: 0;
  }

  .borda-parte-10 {
    position: relative;
  }

  .bg-parte-10 .no-padding {
    padding: 10px;
  }

  .borda-parte-10 img {
    height: 270px;
    width: 100%;
    margin-bottom: 25px;
    width: 100%;
  }

  .borda-parte-10 h3 {
    position: absolute;
    width: 100%;
    margin-top: 0;
    top: 65%;
    padding: 0px 15px;
    left: 50%;
    font-size: 18px;
    transform: translate(-50%, -50%);
  }

  .bg-parte-10-new .cta-topo {
    font-size: 16px;
  }
}

@media(min-width: 0.99px) and (max-width: 330.98px) {

  /*-------GLOBAL ------*/
  h2,
  .bg-parte-10-new h3 {
    font-size: 25px;
  }

  p,
  li,
  a {
    font-size: 16px;
  }

  /*----- PARTE 2----**/
  .bg-parte-2 {
    padding-bottom: 30px;
  }

  .bg-parte-2 .cta-topo {
    margin-top: 25px;
    max-width: 100%;
  }

  .bg-parte-2 img {
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-top: -50%;
  }

  .img-topo-mobile {
    margin-bottom: 55%;
  }

  .bg-parte-2 video {
    width: 100%;
    height: auto;
    margin-top: 45px;
  }

  /*-------- PARTE 4 ---*/
  .bg-parte-4 {
    padding-bottom: 0;
  }

  .borda-parte-4 {
    padding: 40px 20px;
    display: block;
  }

  .borda-parte-4 h3 {
    left: 0;
    font-size: 18px;
    top: 0px;
    margin-top: 20px;
  }

  /*--------PARTE 6 -----*/
  .borda-green-parte-6 {
    padding: 35px;
    margin-bottom: 40px;
  }

  /*------ PARTE 7 ---*/
  .bg-parte-7 {
    padding: 60px 10px;
  }

  .bg-parte-7 ul {
    left: 00px;
  }

  .bg-parte-7 li {
    font-size: 18px;
  }

  .bg-parte-7 .cta-topo {
    width: 420px;
    font-size: 15px;
  }

  /*-------- PARTE 8 ---*/
  .borda-parte-8-green h4,
  .borda-parte-8-white h4 {
    font-size: 45px;
  }

  .borda-parte-8-white h4 span {
    font-size: 29px;
  }

  /*--- parte 9 ---*/
  .borda-especialistas-green h3,
  .borda-especialistas-white h3 {
    font-size: 22px;
  }

  /*------ PARTE 10 ----*/
  .bg-parte-10 {
    padding-bottom: 0;
  }

  .borda-parte-10 {
    position: relative;
  }

  .bg-parte-10 .no-padding {
    padding: 10px;
  }

  .borda-parte-10 img {
    height: 270px;
    width: 100%;
    margin-bottom: 25px;
    width: 100%;
  }

  .borda-parte-10 h3 {
    position: absolute;
    width: 100%;
    margin-top: 0;
    top: 65%;
    padding: 0px 15px;
    left: 50%;
    font-size: 18px;
    transform: translate(-50%, -50%);
  }

  .bg-parte-10-new .cta-topo {
    font-size: 16px;
  }
}

/*--------- MEDIA QUERIES NEW -------*/
@media(min-width: 992px) and (max-width: 1200px) {
  .full-banner-inicio h2 {
    font-size: 28px;
  }

  /*------ PARTE 9-----*/
  .bg-parte-9-new img {
    width: 100%;
    height: 260px;
  }
}

@media(max-width: 992px) {

  /*------- GLOBAL -------*/
  h2 {
    text-align: center;
    font-size: 32px;
  }

  .cta-body {
    width: 90%;
  }

  .cta-topo {
    text-align: center;
  }

  /*------- INICIO -------*/
  .full-banner-inicio {
    padding-top: 40px;
    text-align: center;
  }

  .cta-topo {
    padding-left: 0;
  }

  /*------- PARTE 2 -------*/
  .bg-parte-2 {
    padding-top: 0;
    text-align: center;
  }

  .bg-parte-2 img {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
  }

  .bg-parte-2 .col-lg-3 img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }

  .bg-parte-2-new iframe {
    width: 100%;
  }

  /*------- PARTE 3 -------*/
  .card-3-new {
    height: auto;
  }

  .bg-parte-3-new .col-lg-9 h2 {
    font-size: 26px;
  }

  .bg-parte-3-new .col-lg-9 img {
    object-fit: contain;
    bottom: 5px;
  }

  /*------- PARTE 4 -------*/
  .borda-parte-4 h3 {
    top: 18px;
  }

  /*------- PARTE 5 -------*/
  .borda-parte-5-new-topo,
  .borda-parte-5-new {
    height: auto;
    margin: 0;
    margin-bottom: 15px;
    display: flex;
    position: relative;
    padding: 15px 20px;
  }

  .borda-parte-5-new i,
  .borda-parte-5-new-topo i {
    margin-bottom: 0;
    position: absolute;
    left: 40px;
  }

  /*------- PARTE 7 -------*/
  .bg-parte-7 ul {
    margin-left: 25px;
    width: 90%;
  }

  /*------- PARTE 8 NEW -------*/
  .bg-parte-8-new {
    text-align: center;
  }

  .bg-parte-8-new p {
    margin-bottom: 20px;
    width: 100%;
  }

  /*------- PARTE 9 NEW -------*/
  .imgs-parte-9 {
    display: none;
  }

  .bg-parte-9-new img {
    margin-bottom: 15px;
    height: auto;
    width: 100%;
  }

  .borda-especialistas-white,
  .borda-especialistas-green {
    width: 70%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .bg-parte-10-new {
    padding: 30px 0px;
  }
}

@media(max-width: 550px) {

  /*---- GLOBAL -----*/
  .cta-body {
    width: 95% !important;
  }

  /*---- INICIO -----*/
  .full-banner-inicio {
    height: 920px;
    padding-top: 60px;
    padding-bottom: 0;
    background-position-y: -87px;
    background-image: url(/wp-content/themes/catarata-iol/new-img/topo-mobile.jpg);
  }

  .full-banner-inicio h1 {
    margin-top: 0;
    font-size: 36px;
  }

  .full-banner-inicio h2 {
    margin-bottom: 0;
    width: 100%;
    font-size: 24px;
  }

  .bg-parte-2-new iframe {
    height: 172px;
  }

  .bg-parte-2 h2 {
    margin-top: 0;
  }

  /*----- PARTE 3 ----*/
  .bg-parte-3-new .col-lg-9 {
    padding: 0;
  }

  .bg-parte-3-new .col-lg-9 h2 {
    font-size: 21px;
  }

  /*----- PARTE 4 ----*/
  .bg-parte-4 {
    padding-bottom: 60px;
  }

  .borda-parte-4 {
    display: flex;
    padding: 30px 20px;
  }

  .borda-parte-4 h3 {
    top: 0;
    font-size: 17px;
    margin-top: 0;
  }

  .borda-span {
    color: #0C3E25;
    background: #CBB542;
    box-shadow: 12px 14px 37px rgba(0, 0, 0, 0.25);
    padding: 17px;
    width: 50px;
    height: 50px;
    border-radius: 90%;
    position: relative;
    top: 0px;
    right: 10px;
  }

  .borda-parte-4 span {
    font-size: 28px;
    top: -12px;
    left: 0px;
  }

  /*----- PARTE 5 ----*/
  .borda-parte-5-new i,
  .borda-parte-5-new-topo i {
    font-size: 40px;
    left: 20px;
  }

  .bg-parte-5-new h3 {
    font-size: 18px;
    width: 70%;
  }

  /*----- PARTE 6 ----*/
  .bg-parte-6-new {
    background-image: url(/wp-content/themes/catarata-iol/new-img/bg-parte-6-new-mobile.jpg);
    background-size: contain;
    background-position-y: 100%;
    background-color: #006233;
    height: 650px;
  }

  .bg-parte-6-new h2 {
    font-size: 24px;
  }

  .bg-parte-6-new p {
    width: 100%;
  }

  .bg-parte-6-new .mb-5 {
    margin-bottom: 10px !important;
  }

  /*----- PARTE 7 ----*/
  .bg-parte-7 ul li span {
    position: relative;
    left: 9px;
    top: -22px;
  }

  /*----- PARTE 9 ----*/
  .borda-especialistas-white,
  .borda-especialistas-green {
    width: 95%;
  }

  /*---- footer -----*/
  .bg-footer {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .bg-footer img {
    float: left;
  }

  #p-wta3,
  #p-wta3>a {
    font-size: 14px !important;
  }

  .bg-footer h3 {
    font-size: 16px !important;
  }
}

@media(min-width: 380px) and (max-width: 420px) {

  /*------ GLOBAL --------*/
  nav h2 {
    font-size: 18px;
  }

  h2 {
    font-size: 29px;
  }

  p,
  li,
  a {
    font-size: 17px;
  }

  .cta-body {
    font-size: 18px;
  }

  /*------ INICIO --------*/
  .full-banner-inicio h1 {
    font-size: 32px;
  }

  .full-banner-inicio {
    background-position-y: -154px;
  }

  .cta-topo {
    font-size: 18px;
    width: 95%;
  }

  .full-banner-inicio h2 {
    width: 100%;
    font-size: 24px;
  }

  /*------ PARTE 3 --------*/
  .card-3-new {
    padding-bottom: 30px;
  }

  .bg-parte-3-new .col-lg-9 {
    margin-top: 40px;
  }
}

@media(min-width: 350px) and (max-width: 379.99px) {

  /*------ GLOBAL --------*/
  nav h2 {
    font-size: 16px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 19px !important;
  }

  p,
  li,
  a {
    font-size: 17px;
  }

  .cta-body {
    font-size: 17px;
    text-align: center;
  }

  /*------ INICIO --------*/
  .full-banner-inicio h1 {
    font-size: 30px;
  }

  .full-banner-inicio {
    padding-top: 40px;
    background-position-y: 100%;
    height: 686px;
  }

  .cta-topo {
    font-size: 18px;
    width: 95%;
  }

  .full-banner-inicio h2 {
    width: 100%;
    font-size: 24px;
  }

  /*------ PARTE 2 --------*/
  .bg-parte-2-new {
    margin-top: -80px;
  }

  .bg-parte-2-new iframe {
    margin-top: 0;
  }

  /*------ PARTE 3 --------*/
  .card-3-new {
    padding-bottom: 30px;
  }

  .card-3-new-body {
    padding: 0 20px;
  }

  .bg-parte-3-new .col-lg-9 {
    margin-top: 40px;
  }

  .bg-parte-3-new .col-lg-9 img {
    width: 80px;
    margin-right: 5px;
  }

  .bg-parte-3-new .col-lg-9 h2 {
    font-size: 19px;
  }

  /*------ PARTE 4 --------*/
  .borda-parte-4 h3 {
    font-size: 17px !important;
  }
}

@media(min-width: 330px) and (max-width: 349.99px) {

  /*------ GLOBAL --------*/
  nav h2 {
    font-size: 15px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 19px !important;
  }

  p,
  li,
  a {
    font-size: 17px !important;
  }

  .cta-body {
    font-size: 17px;
    text-align: center;
  }

  .cta-topo i,
  .cta-body i {
    font-size: 26px;
    margin-right: 3px;
  }

  /*------ INICIO --------*/
  .full-banner-inicio h1 {
    font-size: 28px;
  }

  .full-banner-inicio {
    padding-top: 40px;
    background-position-y: 100%;
    height: 632px;
  }

  .cta-topo {
    font-size: 18px;
    width: 95%;
  }

  .full-banner-inicio h2 {
    width: 100%;
    font-size: 24px;
  }

  /*------ PARTE 2 --------*/
  .bg-parte-2-new {
    margin-top: -80px;
  }

  .bg-parte-2-new iframe {
    margin-top: 0;
  }

  /*------ PARTE 3 --------*/
  .card-3-new {
    padding-bottom: 30px;
  }

  .card-3-new-body {
    padding: 0 20px;
  }

  .bg-parte-3-new .col-lg-9 {
    margin-top: 40px;
  }

  .bg-parte-3-new .col-lg-9 img {
    width: 80px;
    margin-right: 5px;
  }

  .bg-parte-3-new .col-lg-9 h2 {
    font-size: 19px;
  }

  /*------ PARTE 4 --------*/
  .borda-parte-4 h3 {
    font-size: 17px !important;
  }
}

@media(min-width: 0px) and (max-width: 329.99px) {

  /*------ GLOBAL --------*/
  nav h2 {
    font-size: 15px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 19px !important;
  }

  p,
  li,
  a {
    font-size: 16px !important;
  }

  .cta-body {
    font-size: 16px;
    text-align: center;
  }

  .cta-topo i,
  .cta-body i {
    font-size: 26px;
    margin-right: 3px;
  }

  /*------ INICIO --------*/
  .full-banner-inicio h1 {
    font-size: 26px;
  }

  .full-banner-inicio {
    padding-top: 40px;
    background-position-y: 100%;
    height: 586px;
  }

  .cta-topo {
    font-size: 18px;
    width: 95%;
  }

  .full-banner-inicio h2 {
    width: 100%;
    font-size: 24px;
  }

  /*------ PARTE 2 --------*/
  .bg-parte-2-new {
    margin-top: -80px;
  }

  .bg-parte-2-new iframe {
    margin-top: 0;
  }

  /*------ PARTE 3 --------*/
  .card-3-new {
    padding-bottom: 30px;
  }

  .card-3-new-body {
    padding: 0 20px;
  }

  .bg-parte-3-new .col-lg-9 {
    margin-top: 40px;
  }

  .bg-parte-3-new .col-lg-9 img {
    width: 80px;
    margin-right: 5px;
  }

  .bg-parte-3-new .col-lg-9 h2 {
    font-size: 19px;
  }

  /*------ PARTE 4 --------*/
  .borda-parte-4 h3 {
    font-size: 17px !important;
  }
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  background: linear-gradient(348.49deg, #375D68 -159.59%, #F1F6F5 31.11%);
  box-shadow: 12px 14px 37.3px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 35px 50px;
}

.modal-content {
  border-radius: 15px;
}

.btn-close {
  z-index: 9999999;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background-image: url(https://catarata.drfaustocazorla.com.br/wp-content/uploads/2024/04/X.png);
  border: 0;
  border-radius: .25rem;
  opacity: 1.5;
}

.modal ul {
  list-style-image: url(https://catarata.drfaustocazorla.com.br/wp-content/uploads/2024/04/modal-checked.png);
  text-align: left;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 681px;
    margin: 1.75rem auto;
  }
}

.modal ul li span {
  color: #375D68;
  position: relative;
  top: -10px;
  left: 10px;
}

.modal h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}

@media(max-width: 550px) {
  .modal ul li span {
    color: #375D68;
    position: relative;
    top: -10px;
    left: 10px;
    font-size: 17px;
  }

  .cta-parte-3 {
    max-width: 100%;
  }

  .modal-body {
    padding: 25px;
  }

  .modal h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
  }

  .bg-parte-10-new .splide__slide {
    justify-content: flex-start;
  }

  video {
    width: 95%;
    height: auto;
    border-radius: 10px;
    margin-left: -20px;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 1000;
}

.floating-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 10px;
  transition: all 0.3s ease;
  border: none;
}

.btn-telfixo {
  position: fixed;
  bottom: 185px;
  color: white;
  left: 1px;
  display: block;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  width: 80%;
  font-size: 16px;
  border: none;
  font-weight: bold;
  background: linear-gradient(90deg, #D9CB4F -3.12%, #8F5B0D 100%);
  border-radius: 5px;
}

.btn-telfixo:hover {
  background: #007bff;
  color: white;
}

.floating-buttons .btn-whatsapp {
  background: linear-gradient(90deg, #3E8768 4.48%, rgba(27, 181, 24, 0.94) 76.12%);
  border-radius: 5px;
}

.floating-buttons .btn-whatsapp:hover {
  background: #1da851;
}

.floating-buttons .btn-call {
  background: linear-gradient(90deg, #B5593C 4.48%, rgba(220, 117, 43, 0.94) 76.12%);
  border-radius: 5px;
}

.floating-buttons .btn-call:hover {
  background: linear-gradient(90deg, #FF6347, #FF4500);
}

.floating-buttons i {
  margin-right: 10px;
  font-size: 20px;
}

@media(min-width: 992px) {
  .floating-buttons {
    display: none !important;
  }
}

@media(max-width: 992px) {
  .floating-buttons {
    position: fixed;
    bottom: 80px;
    left: 1px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    width: 80%;
    font-size: 15px;
  }

  .container-form {
    max-width: 100%;
    position: relative;
    right: 0;
    bottom: 0px;
    z-index: 2;
  }

  .my-5 {
    margin: 0 !important;
  }

  #FormModal .modal-body {
    padding: 0;
  }
}

.bg-parte-8 h3 {
  text-align: center;
  font-size: 17px
}

.bg-parte-8 h3 a {
  color: #0c452a;
  font-weight: 700;
  text-decoration: none
}

.bg-parte-8 h3:hover {
  color: #d4c44b
}

.bg-parte-8 h3 a:hover {
  color: #d4c44b
}

.bg-parte-8 h4 {
  text-align: center;
  font-size: 15px
}

.bg-footer {
  padding: 35px 0px;
  background-color: #0C3E25;
  font-size: 16px;
}

.bg-footer h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
}

.bg-footer img {
  float: left;
}

.bg-footer i {
  float: right;
  font-size: 18px;
  margin: 20px 8px 0px;
}

#p-wta3 {
  margin-top: 5px;
  font-size: 14px;
  margin-bottom: 0;
}

#p-wta3>a {
  font-size: 14px;
}

@media(max-width: 992px) {
  .bg-footer {
    padding-bottom: 100px;
  }

  #p-wta3 {
    margin-top: 15px;
  }

  .bg-footer h2 {
    text-align: left;
    margin: 15px 0px;
  }

  .bg-footer i {
    float: none;
    margin-top: 0;
  }
}