@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
html {
  box-sizing: border-box;
  font-size: 100%;
}

html.resize {
  width: 100%;
  height: 100%;
}
html.resize body {
  width: 100%;
  height: 100%;
}
html.resize body main {
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  font-family: "Poppins", "Fredoka One", sans-serif;
  line-height: 1.5;
}
body div#lightbox {
  position: fixed !important;
  top: 10px !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1350px;
}
.container.min {
  max-width: 1155px;
}
.container.big {
  max-width: 1580px;
}

@media (min-width: 991px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

.has-error {
  border-color: red !important;
}

/*  Validação   */
.ng-invalid.ng-touched,
.campo-invalido {
  border-color: #dc3545 !important;
}

/*CORES PRINCIPAIS*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus, a:active, a:focus {
  text-decoration: none;
}

ul.no-list-style {
  list-style: none;
  padding: 0;
  margin: 0;
}

section.banner {
  background-image: url("../image/backgrounds/blog/banner.png");
  background-size: cover;
  min-height: 265px;
}
section.banner__geral {
  max-width: 765px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
section.banner__geral__titulo h1 {
  font-size: 35px;
  font-weight: 700;
}
section.banner__geral__texto h6 {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 61.9375em) {
  section.banner {
    text-align: center;
    padding-top: 15px;
  }
  section.banner__geral__titulo h1 {
    font-size: 30px;
  }
  section.banner__geral__texto h6 {
    font-size: 16px;
  }
}

.btn-primary {
  background-color: #F0C52E;
  padding: 12px 19px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  border: none;
  color: #573900;
}
.btn-primary__titulo {
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
}
.btn-primary:hover {
  background-color: #F0C52E;
}
@media (max-width: 61.9375em) {
  .btn-primary {
    text-align: center;
  }
}

.btn-secondary {
  background-color: #355B9F;
  padding: 12px 19px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
  color: #FFF;
}
.btn-secondary__titulo {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 61.9375em) {
  .btn-secondary {
    text-align: center;
  }
}

.btn-secondary-2 {
  background-color: transparent;
  padding: 12px 19px;
  border-radius: 5px;
  border: 1px solid #355B9F;
  display: flex;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
  color: #355B9F;
}
.btn-secondary-2__titulo {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 61.9375em) {
  .btn-secondary-2 {
    text-align: center;
  }
}

.btn-matriculate {
  background-color: #F0C52E;
  display: flex;
  padding: 10px 25px;
  border-radius: 35px;
  border: 5px solid #FFF;
  position: relative;
  transition: img 0.5s;
}
.btn-matriculate__title {
  color: #355B9F;
  font-weight: bold;
  font-size: 20px;
}
.btn-matriculate img {
  position: absolute;
  right: -10px;
  top: -20px;
  width: 80px;
  transition-delay: 0.5s;
  -webkit-animation: rotate-nohover 10s infinite alternate;
          animation: rotate-nohover 10s infinite alternate;
}
@-webkit-keyframes rotate-nohover {
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-nohover {
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 61.9375em) {
  .btn-matriculate {
    text-align: center;
    padding: 5px 25px;
  }
  .btn-matriculate__title {
    font-size: 15px;
    margin-inline: auto;
  }
  .btn-matriculate img {
    position: absolute;
    right: -10px;
    top: -20px;
    width: 60px;
  }
}

.btn-telephone {
  font-family: "Poppins";
  transition: 0.3s all;
}
.btn-telephone:hover {
  transform: rotate(-3deg);
}
.btn-telephone a {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.btn-telephone__icon {
  display: grid;
  place-items: center;
}
.btn-telephone__icon i {
  width: 35px;
}
.btn-telephone__icon i img {
  width: 100%;
}
.btn-telephone__number h5 {
  color: #355B9F;
  font-size: 20px;
  font-weight: bold;
}
.btn-telephone.type-2__number h5 {
  color: #FFF;
}

.btn-whatsapp {
  font-family: "Poppins";
  transition: 0.3s all;
}
.btn-whatsapp:hover {
  transform: rotate(3deg);
}
.btn-whatsapp a {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.btn-whatsapp__icon {
  display: grid;
  place-items: center;
}
.btn-whatsapp__icon i {
  width: 35px;
}
.btn-whatsapp__icon i img {
  width: 100%;
}
.btn-whatsapp__number h5 {
  color: #355B9F;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 61.9375em) {
  .btn-telephone,
.btn-whatsapp {
    text-align: center;
  }
  .btn-telephone a,
.btn-whatsapp a {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .btn-telephone__icon i,
.btn-whatsapp__icon i {
    width: 30px;
  }
  .btn-telephone__number h5,
.btn-whatsapp__number h5 {
    text-align: start;
    font-size: 15px;
  }
}

.btn-telephone-2 {
  font-family: "Poppins";
  transition: 0.3s all;
}
.btn-telephone-2:hover {
  transform: rotate(-3deg);
}
.btn-telephone-2 a {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.btn-telephone-2__icon {
  display: grid;
  place-items: center;
}
.btn-telephone-2__icon i {
  width: 35px;
}
.btn-telephone-2__icon i img {
  width: 100%;
}
.btn-telephone-2__number h5 {
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}

.btn-whatsapp-2 {
  font-family: "Poppins";
  transition: 0.3s all;
}
.btn-whatsapp-2:hover {
  transform: rotate(3deg);
}
.btn-whatsapp-2 a {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.btn-whatsapp-2__icon {
  display: grid;
  place-items: center;
}
.btn-whatsapp-2__icon i {
  width: 35px;
}
.btn-whatsapp-2__icon i img {
  width: 100%;
}
.btn-whatsapp-2__number h5 {
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 61.9375em) {
  .btn-telephone-2,
.btn-whatsapp-2 {
    text-align: center;
  }
  .btn-telephone-2 a,
.btn-whatsapp-2 a {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .btn-telephone-2__icon i,
.btn-whatsapp-2__icon i {
    width: 30px;
  }
  .btn-telephone-2__number h5,
.btn-whatsapp-2__number h5 {
    text-align: start;
    font-size: 15px;
  }
}

.saiba-mais {
  color: #FFF;
  display: block;
  font-weight: 700;
  text-shadow: 3px 4px 10px #355b9f;
  filter: drop-shadow(10px 10px 98px #355b9f);
  -webkit-filter: drop-shadow(10px 10px 98px #355b9f);
  -moz-filter: drop-shadow(10px 10px 98px #355b9f);
}

.btn-modalidades {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #355b9f;
  color: #fff;
  font-weight: 700;
  border-radius: 18px;
  justify-content: center;
  padding: 5px 15px;
  margin: 45px auto 0;
}

.card-blog {
  background-color: #fff;
  max-width: 455px;
  border-radius: 50px;
  border: 3px solid #F0C52E;
  position: relative;
}
.card-blog__conteudo {
  max-width: 420px;
}
.card-blog__conteudo__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card-blog__conteudo__image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
}
.card-blog__conteudo__texto {
  padding: 25px 35px;
}
.card-blog__conteudo__texto--titulo h1 {
  margin: 10px 0 15px;
  font-size: 21px;
  color: #355B9F;
  font-weight: 700;
  height: 50px;
}
.card-blog__conteudo__texto--descricao {
  margin: 10px 0 0;
  height: 150px;
}
.card-blog__conteudo__texto--descricao p {
  font-size: 15px;
}
.card-blog__conteudo__texto .link {
  display: flex;
  background-color: #F0C52E;
  padding: 5;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  position: absolute;
  -webkit-animation: jello-horizontal 2.9s infinite;
  animation: jello-horizontal 2.9s infinite;
}
.card-blog__conteudo__texto .link i {
  color: #355B9F;
  font-size: 20px;
}
@-webkit-keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.card-unidade__imagem {
  width: 500px;
  height: 405px;
  border-radius: 50px;
}
.card-unidade__imagem img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card-unidade .link {
  display: flex;
  align-items: center;
  background-color: #F0C52E;
  color: #355B9F;
  padding: 8px 25px;
  border-radius: 35px;
  max-width: 265px;
  justify-content: space-around;
  margin-inline: auto;
}
.card-unidade .link h5 {
  font-weight: 900;
}
@media (max-width: 61.9375em) {
  .card-unidade {
    text-align: center;
  }
  .card-unidade__imagem {
    width: 300px;
    height: auto;
  }
  .card-unidade__imagem img {
    width: 100%;
  }
}

.card-turmas {
  max-width: 300px;
}
.card-turmas h1 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #355B9F;
}
.card-turmas img {
  width: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 225px;
  margin: 8px 0 20px;
  border-radius: 30px;
  border: 2px solid #355B9F;
}
.card-turmas__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.card-turmas__buttons .btn-realizar {
  width: 195px;
  border: 2px solid #355B9F;
  border-bottom: 3px solid #355B9F;
  border-right: 3px solid #355B9F;
  border-radius: 25px;
  padding: 10px;
  display: grid;
  place-items: center;
}
.card-turmas__buttons .btn-realizar h5 {
  font-size: 14px;
  font-weight: 700;
}
.card-turmas__buttons .btn-realizar {
  background-color: #F0C52E;
}

.card-categoria {
  display: flex;
  flex-direction: column;
  background-color: #F0C52E;
  border-radius: 30px;
  row-gap: 15px;
  padding-bottom: 24px;
  position: relative;
}
.card-categoria::after {
  content: url("../image/pseudos/estrelas-do-mar.png");
  position: absolute;
  top: -35px;
  bottom: none;
  left: none;
  right: -15px;
  -webkit-animation: rotate-scale-up 7.65s infinite alternate;
  animation: rotate-scale-up 7.65s infinite alternate;
}
@-webkit-keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(1.1) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(1.1) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
.card-categoria h2 {
  color: #FFF;
  font-weight: 700;
  background-color: #355B9F;
  text-align: center;
  padding: 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.card-categoria__conteudo__item {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 290px;
  margin-inline: auto;
}
.card-categoria__conteudo__item li {
  color: #355B9F;
  font-weight: bold;
  font-size: 20px;
}
.card-categoria__conteudo__item li:hover, .card-categoria__conteudo__item li.active {
  color: #FFF;
  transition: 0.5s;
}
.card-categoria__conteudo__item button {
  border: none;
  background: none;
  padding-right: 20px;
  right: 0;
  position: absolute;
}

.card-collapse {
  background-color: #355B9F;
  border-radius: 5px;
}
.card-collapse__item {
  display: flex;
  min-height: 70px;
  justify-content: space-between;
  padding: 25px;
}
.card-collapse__item h4 {
  color: #F0C52E;
  font-size: 19px;
  max-width: 600px;
}
.card-collapse__item button {
  border: none;
  background: #F0C52E;
  border-radius: 5px;
  padding-inline: 10px;
  color: #355B9F;
  width: 150px;
  height: 23px;
}
.card-collapse__item button h5 {
  font-size: 17px;
}
.card-collapse__item-collapse {
  padding: 20px 0 30px;
  background-color: #FFF;
  border-left: 1px solid #b1b1b1;
  border-right: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-inline: 25px;
}
.card-collapse__item-collapse h5 {
  font-size: 15px;
  color: #000;
  font-weight: 400;
}
@media (max-width: 61.9375em) {
  .card-collapse {
    text-align: center;
    margin-inline: auto;
    width: 100%;
    max-width: 600px;
  }
  .card-collapse__item {
    align-items: center;
    flex-direction: column;
    row-gap: 15px;
    min-height: 70px;
    justify-content: space-between;
  }
  .card-collapse__item h4 {
    font-size: 16px;
  }
}

.form-enviar {
  text-align: center;
  padding: 20px 0 15px;
  min-height: 475px;
  border-radius: 44px;
  background-color: #F0C52E;
}
.form-enviar__titulo h1 {
  font-size: 23px;
  font-weight: bold;
  color: #000;
}
.form-enviar__titulo h6 {
  font-size: 16px;
  color: #000;
  margin-bottom: 25px;
}
.form-enviar__formulario {
  max-width: 310px;
  display: flex;
  margin: 0 auto 32px;
  flex-direction: column;
  row-gap: 15px;
}
.form-enviar__formulario .btn-form {
  background-color: #355B9F;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-top: 10px;
}
.form-enviar__formulario .btn-form__title {
  color: #FFF;
  font-weight: 700;
}
@media (max-width: 61.9375em) {
  .form-enviar {
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
  }
}

.pesquisar {
  position: relative;
}
.pesquisar:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 50px;
  width: 1px;
  height: 35px;
  background-color: #a1a1a1;
}
.pesquisar__procurar {
  width: 100%;
  background-color: #eeeeee;
  border-radius: 3px;
  border: none;
  border: 1px solid #cfcfcf;
  padding: 13px 0px 10px 16px;
  outline: none;
  margin-bottom: 40px;
  position: relative;
}
.pesquisar__btn {
  position: absolute;
  top: 15%;
  right: 5px;
  z-index: 1;
  border: none;
  background: transparent;
  outline: none;
}
.pesquisar__btn i {
  font-size: 22px;
  color: #a1a1a1;
}
@media (max-width: 61.9375em) {
  .pesquisar {
    text-align: center;
  }
  .pesquisar:after {
    top: 25px;
  }
  .pesquisar__procurar {
    margin-top: 20px;
  }
  .pesquisar__btn {
    top: 30%;
  }
}

form .form-contact {
  background-color: #F0C52E;
  border-radius: 20px;
  min-width: 680px;
  min-height: 525px;
  padding: 24px 24px 15px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  position: relative;
  position: relative;
}
form .form-contact::after {
  content: url("../image/pseudos/estrelas-do-mar.png");
  position: absolute;
  top: -24px;
  bottom: none;
  left: none;
  right: -37px;
}
form .form-contact__inputs {
  display: flex;
  flex: 1;
  flex-direction: column;
}
form .form-contact h1 {
  color: #355B9F;
  font-size: 28px;
  font-family: "Fredoka One";
}
form .form-contact input,
form .form-contact textarea {
  border: none;
  padding: 15px 27px;
  outline: none;
}
form .form-contact label {
  margin-bottom: 5px;
  font-weight: 600;
}
form .form-contact__name-telephone {
  display: flex;
  justify-content: stretch;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
form .form-contact__name-telephone #nome {
  width: 355px;
}
form .form-btn-enviar {
  background-color: #F0C52E;
  border: none;
  border-radius: 35px;
  display: grid;
  place-items: center;
  padding: 10px;
  width: 200px;
  margin: 15px 0 0 auto;
}
form .form-btn-enviar h5 {
  color: #355B9F;
  font-weight: 500;
}
@media (max-width: 61.9375em) {
  form {
    text-align: center;
  }
  form .form-contact {
    min-width: 300px;
    max-width: 600px;
    padding: 24px 24px 15px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    position: relative;
  }
  form .form-contact__inputs {
    display: flex;
    flex-direction: column;
  }
  form .form-contact h1 {
    color: #355B9F;
    font-size: 28px;
    font-family: "Fredoka One";
  }
  form .form-contact input,
form .form-contact textarea {
    border: none;
    padding: 15px 27px;
    outline: none;
  }
  form .form-contact label {
    margin-bottom: 5px;
    font-weight: 600;
  }
  form .form-contact__name-telephone {
    width: 100%;
    flex-wrap: wrap;
  }
  form .form-contact__name-telephone input {
    width: 100%;
  }
  form .form-contact__name-telephone #nome {
    width: 100%;
  }
}

.card-pesquisar {
  background-color: #F0C52E;
  border-radius: 30px;
  min-height: 210px;
  max-width: 600px;
}
.card-pesquisar h2 {
  background-color: #355B9F;
  color: #FFF;
  font-size: 25px;
  text-align: start;
  padding: 13px 20px;
  font-weight: 700;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}
.card-pesquisar__conteudo {
  padding: 15px 15px 0px;
  display: flex;
  flex-direction: column;
}
.card-pesquisar__conteudo input {
  border: none;
  padding: 14px;
  outline: none;
  margin-bottom: 15px;
}
.card-pesquisar__conteudo button {
  border: none;
  background-color: #355B9F;
  display: flex;
  padding: 10px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  margin-inline: auto;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.card-pesquisar__conteudo button h5 {
  font-weight: 700;
  color: #FFF;
}
@media (max-width: 61.9375em) {
  .card-pesquisar {
    text-align: center;
    margin-inline: auto;
  }
}

.card-categoria {
  display: flex;
  flex-direction: column;
  background-color: #F0C52E;
  border-radius: 30px;
  row-gap: 15px;
  padding-bottom: 24px;
  max-width: 600px;
  position: relative;
}
.card-categoria::after {
  content: url("../image/pseudos/estrelas-do-mar.png");
  position: absolute;
  top: -35px;
  bottom: none;
  left: none;
  right: -15px;
}
.card-categoria h2 {
  color: #FFF;
  font-weight: 700;
  background-color: #355B9F;
  text-align: center;
  padding: 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.card-categoria__conteudo__item {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 290px;
  margin-inline: auto;
}
.card-categoria__conteudo__item li {
  color: #355B9F;
  font-weight: bold;
  font-size: 20px;
}
.card-categoria__conteudo__item button {
  border: none;
  background: none;
  padding-right: 20px;
  right: 0;
  position: absolute;
}
@media (max-width: 61.9375em) {
  .card-categoria {
    text-align: center;
    margin-inline: auto;
  }
}

section.footer-newsletter {
  background-image: url("../image/backgrounds/newsletter.png");
  background-size: cover;
  padding: 10px 0;
}
section.footer-newsletter .newsletter {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
section.footer-newsletter .newsletter h5 {
  font-size: 20px;
  color: #FFF;
  font-weight: 300;
  max-width: 245px;
}
section.footer-newsletter .newsletter input {
  outline: none;
  padding: 10px;
  border-radius: 35px;
  border: none;
  width: 400px;
}
section.footer-newsletter .newsletter button {
  background-color: #F0C52E;
  border-radius: 35px;
  border: none;
  padding: 10px 45px;
  width: 215px;
  margin-left: 15px;
}
section.footer-newsletter .newsletter button h4 {
  color: #355B9F;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 61.9375em) {
  section.footer-newsletter .newsletter {
    text-align: center;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: center;
  }
  section.footer-newsletter .newsletter img {
    width: 100%;
  }
  section.footer-newsletter .newsletter h5 {
    font-size: 18px;
    max-width: 300px;
  }
  section.footer-newsletter .newsletter input {
    width: 350px;
  }
  section.footer-newsletter .newsletter button {
    padding: 5px 45px;
    width: 215px;
    margin-left: 0;
    margin-top: 15px;
  }
  section.footer-newsletter .newsletter button h4 {
    font-size: 16px;
  }
}

.form-comentario {
  background-color: #f2f2f2;
  padding: 30px 60px;
}
.form-comentario h1 {
  color: #52524f;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
}
.form-comentario__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.form-comentario__inputs input,
.form-comentario__inputs textarea {
  border: none;
  width: 100%;
  padding: 20px 25px;
  border-radius: 5px;
  outline: none;
}
.form-comentario__inputs input::-moz-placeholder, .form-comentario__inputs textarea::-moz-placeholder {
  font-weight: 500;
  color: #c9c9c9;
}
.form-comentario__inputs input:-ms-input-placeholder, .form-comentario__inputs textarea:-ms-input-placeholder {
  font-weight: 500;
  color: #c9c9c9;
}
.form-comentario__inputs input::placeholder,
.form-comentario__inputs textarea::placeholder {
  font-weight: 500;
  color: #c9c9c9;
}
.form-comentario .btn-secondary {
  margin-left: auto;
  margin-top: 10px;
  padding: 12px 20px;
  background-color: #355B9F;
  width: 200px;
  border-radius: 35px;
  border: none;
}
.form-comentario .btn-secondary__titulo {
  font-weight: 700;
  font-size: 15px;
}
@media (max-width: 61.9375em) {
  .form-comentario {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 25px;
    max-width: 600px;
    margin-inline: auto;
  }
  .form-comentario h1 {
    margin-bottom: 20px;
    font-size: 21px;
  }
  .form-comentario__inputs {
    row-gap: 15px;
    padding-inline: 10px;
  }
  .form-comentario .btn-secondary {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    transform: none;
    padding: 12px 20px;
  }
  .form-comentario .btn-secondary__titulo {
    transform: none;
  }
}

.i-duvidas {
  padding: 10px 0px 10px 20px;
  border-radius: 4px;
  border: none;
  outline: none;
}
.i-duvidas::-moz-placeholder {
  color: #c0c0c0;
  font-size: 16px;
}
.i-duvidas:-ms-input-placeholder {
  color: #c0c0c0;
  font-size: 16px;
}
.i-duvidas::placeholder {
  color: #c0c0c0;
  font-size: 16px;
}

.social {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.social a {
  transition: 0.3s all;
}
.social a:hover {
  transform: translateY(-3px);
}
.social a i {
  width: 40px;
}
.social a i img {
  width: 100%;
  max-width: 40px;
}
@media (max-width: 61.9375em) {
  .social {
    text-align: center;
    width: 100%;
    max-width: 600px;
    justify-content: space-between;
    margin-inline: auto;
  }
}

.onde_estamos {
  min-height: 100px;
  background-color: #F0C52E;
  border-radius: 20px;
  padding: 24px 80px 4px;
  position: relative;
  position: relative;
}
.onde_estamos::before {
  content: url("../image/icons/ico_onde-estamos.png");
  position: absolute;
  top: -25px;
  bottom: none;
  left: -20px;
  right: none;
}
.onde_estamos::after {
  content: url("../image/pseudos/estrelas-do-mar.png");
  position: absolute;
  top: -25px;
  bottom: none;
  left: none;
  right: -10px;
  -webkit-animation: rotate-scale-up 7.65s infinite alternate;
  animation: rotate-scale-up 7.65s infinite alternate;
}
@-webkit-keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(1.1) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(1.1) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
.onde_estamos h1 {
  color: #355B9F;
  font-family: "Fredoka One";
  font-size: 29px;
  margin-bottom: 20px;
}
.onde_estamos a {
  display: block;
  margin-bottom: 25px;
  color: #355B9F;
}
.onde_estamos a label {
  font-weight: 900;
}
.onde_estamos a h5 {
  font-size: 18px;
}
@media (max-width: 61.9375em) {
  .onde_estamos {
    text-align: center;
    min-height: auto;
    padding: 24px 20px 4px;
    max-width: 600px;
    margin-inline: auto;
    position: relative;
    position: relative;
  }
  .onde_estamos::before {
    content: url("../image/icons/ico_onde-estamos.png");
    position: absolute;
    top: -30px;
    bottom: none;
    left: 50%;
    right: none;
    transform: translate(-50%, 0);
  }
  .onde_estamos::after {
    content: url("../image/pseudos/estrelas-do-mar.png");
    position: absolute;
    top: -25px;
    bottom: none;
    left: none;
    right: -10px;
  }
  .onde_estamos h1 {
    font-size: 25px;
  }
  .onde_estamos a h5 {
    font-size: 16px;
  }
}

.fale_conosco {
  margin-top: 40px;
  background-color: #F0C52E;
  border-radius: 20px;
  padding: 24px 80px 24px;
  color: #355B9F;
  position: relative;
}
.fale_conosco::before {
  content: url("../image/icons/ico_fale-conosco.png");
  position: absolute;
  top: -15px;
  bottom: none;
  left: -30px;
  right: none;
}
.fale_conosco h1 {
  font-family: "Fredoka One";
  font-size: 29px;
}
.fale_conosco p {
  font-size: 15px;
  margin: 20px 0 20px;
}
.fale_conosco a {
  display: flex;
  align-items: center;
  color: #355B9F;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.fale_conosco a label {
  font-weight: 900;
}
.fale_conosco a h5 {
  font-size: 18px;
}
.fale_conosco__contatos {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  align-items: center;
  max-width: 420px;
  justify-content: space-between;
}
@media (max-width: 61.9375em) {
  .fale_conosco {
    text-align: center;
    margin-top: 40px;
    padding: 24px 20px 24px;
    max-width: 600px;
    margin-inline: auto;
    position: relative;
  }
  .fale_conosco::before {
    content: url("../image/icons/ico_fale-conosco.png");
    position: absolute;
    top: -30px;
    bottom: none;
    left: 50%;
    right: none;
    transform: translate(-50%, 0);
  }
  .fale_conosco h1 {
    font-size: 25px;
  }
  .fale_conosco a {
    text-align: start;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .fale_conosco a h5 {
    font-size: 16px;
  }
}

.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background-color: #cacaca;
  margin-right: 10px;
  border: none;
  outline: none;
  transition: 0.3s all;
}
.owl-carousel .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #8f8f8f;
}
.owl-carousel img {
  display: inline-block;
  width: initial;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: 100px;
  z-index: 2;
  -webkit-animation: nav 1.5s linear infinite;
          animation: nav 1.5s linear infinite;
}
.owl-nav .owl-prev {
  left: -100px;
}
.owl-nav .owl-next {
  right: -100px;
}
@media (max-width: 61.9375em) {
  .owl-nav {
    text-align: center;
  }
  .owl-nav .owl-prev {
    left: -10px;
  }
  .owl-nav .owl-next {
    right: -10px;
  }
}

.owl-depoimentos {
  max-width: 1400px;
}

* {
  scrollbar-width: thick; /* none | auto  */
  scrollbar-color: #F0C52E transparent;
}

*::-webkit-scrollbar {
  width: 18px; /* vertical scrollbar */
  height: 20px; /* horizontal scrollbar */
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: #F0C52E;
}

*::-webkit-scrollbar-thumb:hover {
  background: #355B9F;
}

.bolhas-animacao-principal {
  /*  Animações Balões  */
}
.bolhas-animacao-principal .ball {
  width: 170px;
  border-radius: 50px;
  position: fixed;
  z-index: 999;
  pointer-events: none;
}
.bolhas-animacao-principal .ball.ball-1 {
  -webkit-animation: animatedImage 5s 5s;
          animation: animatedImage 5s 5s;
  left: 0px;
  opacity: 0.4;
}
.bolhas-animacao-principal .ball.ball-2 {
  -webkit-animation: animatedImage 2.5s 5s;
          animation: animatedImage 2.5s 5s;
  left: 4%;
}
.bolhas-animacao-principal .ball.ball-3 {
  -webkit-animation: animatedImage 3s 5s;
          animation: animatedImage 3s 5s;
  left: 9%;
}
.bolhas-animacao-principal .ball.ball-4 {
  -webkit-animation: animatedImage 4s 5s;
          animation: animatedImage 4s 5s;
  left: 5%;
}
.bolhas-animacao-principal .ball.ball-5 {
  -webkit-animation: animatedImage 5s 10s;
          animation: animatedImage 5s 10s;
  right: 0px;
}
.bolhas-animacao-principal .ball.ball-6 {
  z-index: 2;
  -webkit-animation: animatedImage 2.5s 10s;
          animation: animatedImage 2.5s 10s;
  right: 4%;
}
.bolhas-animacao-principal .ball.ball-7 {
  -webkit-animation: animatedImage 3s 10s;
          animation: animatedImage 3s 10s;
  right: 9%;
}
.bolhas-animacao-principal .ball.ball-8 {
  -webkit-animation: animatedImage 4s 10s;
          animation: animatedImage 4s 10s;
  right: 5%;
}
@-webkit-keyframes animatedImage {
  0% {
    top: 100%;
  }
  100% {
    top: -200px;
  }
}
@keyframes animatedImage {
  0% {
    top: 100%;
  }
  100% {
    top: -200px;
  }
}
@media screen and (max-width: 991px) {
  .bolhas-animacao-principal .ball {
    display: none;
  }
}

body {
  overflow-x: hidden;
  /* MODAL */
}
body section.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: white;
}
body section.preloader .loader {
  border: 6px solid #e5e5e5;
  border-top-color: #F0C52E;
  -webkit-animation: loader-rotate 1s infinite;
          animation: loader-rotate 1s infinite;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@-webkit-keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}
body .modal-backdrop.show {
  opacity: 0.8;
  width: 100% !important;
  height: 100% !important;
}
body .modal-lg {
  max-width: 600px;
}
body .modal-content {
  background: #FFF;
}
body .modal-content .closebtn {
  background-color: #355B9F;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  opacity: 1;
  padding: 10px;
  position: absolute;
  right: 15px;
  text-shadow: none;
  top: -20px;
  z-index: 2;
  text-transform: uppercase;
}
body .modal-content .closebtn:hover {
  color: white !important;
  transform: scale(1.02);
}
@media (max-width: 991px) {
  body .modal-content .closebtn {
    font-size: 13px;
    top: 15px;
    right: 10px;
  }
}
body .modal-body {
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
}
body .modal-body form {
  padding: 30px 100px;
}
body .modal-body form input,
body .modal-body form select,
body .modal-body form textarea {
  font-size: 18px;
  padding: 10px 20px;
  border: 1px solid lightgray;
  border-radius: 6px;
  box-shadow: 0px 4px 0px #d1d8d4;
  width: 100%;
  margin: 10px 0;
  outline: none;
}
body .modal-body form input:first-child,
body .modal-body form select:first-child,
body .modal-body form textarea:first-child {
  margin-top: 0;
}
body .modal-body form textarea {
  resize: none;
  height: 100px;
  outline: none;
}
body .modal-body form button {
  width: 100%;
  outline: none;
  color: white;
  background-color: #355B9F;
  padding: 10px 20px;
  margin-top: 5px;
  border-radius: 6px;
  border: none;
}
body .modal-body.video {
  border-radius: 0;
  min-height: 650px;
}
@media (max-width: 991px) {
  body .modal-body.video {
    min-height: 360px;
  }
}
body .modal-body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
body .modal-body .texto-turma {
  padding: 20px 50px;
  font-size: 16px;
}
body .modal-body .texto-turma p {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  body .modal-body .texto-turma {
    font-size: 13px;
  }
}
body .modal-body .titulo {
  color: #565656;
  text-align: center;
  padding: 30px 40px 0 40px;
}
body .modal-body .titulo h2 {
  color: #355B9F;
  font-weight: 800;
  font-size: 30px;
  margin: auto;
  margin-bottom: 10px;
}
body .modal-body .titulo h2 img {
  display: block;
  margin: auto;
  height: 80px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  body .modal-body {
    border-radius: 5px;
  }
  body .modal-body form {
    padding: 20px;
  }
  body .modal-body form input,
body .modal-body form textarea {
    font-size: 14px;
  }
  body .modal-body form button h5 {
    font-size: 16px;
  }
  body .modal-body .titulo {
    padding: 20px;
    padding-bottom: 0;
    font-size: 13px;
  }
  body .modal-body .titulo h2 {
    font-size: 20px;
  }
  body .modal-body .titulo h2 img {
    height: 50px;
  }
}
body section.formulario-enviado {
  padding: 100px 0;
  color: #355B9F;
  background-color: #f5fbff;
}
body section.formulario-enviado i.fa-check-circle,
body section.formulario-enviado i.fa-exclamation-triangle {
  font-size: 80px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  body section.formulario-enviado i.fa-check-circle,
body section.formulario-enviado i.fa-exclamation-triangle {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
body section.formulario-enviado .box-in {
  text-align: center;
}
body section.formulario-enviado .box-in h5 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}
body section.formulario-enviado .box-in a {
  color: #355B9F;
  font-weight: 500;
  border-bottom: 1px dotted #355B9F;
}
body section.formulario-enviado .box-in .btn-voltar {
  color: #355B9F;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
  background-color: transparent;
  outline: none;
  border: 2px solid #355B9F;
  transition: 0.3s all;
}
body section.formulario-enviado .box-in .btn-voltar:hover {
  background-color: #355B9F;
  color: white;
}
body section.formulario-enviado .box-in .btn-voltar i {
  vertical-align: middle;
  font-size: 20px;
  margin-right: 15px;
}
body section.formulario-enviado .box-in h3 {
  font-size: 24px;
  font-weight: 400;
  color: #355B9F;
}
body section.formulario-enviado .box-in h1 {
  font-size: 75px;
  font-weight: 700;
  color: #355B9F;
  line-height: 1;
}
@media (max-width: 991px) {
  body section.formulario-enviado {
    padding: 30px 0;
    text-align: center;
  }
  body section.formulario-enviado .container {
    position: relative;
    z-index: 2;
  }
  body section.formulario-enviado .box-in .btn-voltar {
    font-size: 13px;
    margin: 10px 0;
  }
  body section.formulario-enviado .box-in h3 {
    font-size: 16px;
  }
  body section.formulario-enviado .box-in h5 {
    font-size: 15px;
  }
  body section.formulario-enviado .box-in h1 {
    font-size: 28px;
  }
}
body .politica-termos {
  padding: 60px 0px;
  background-image: url("../image/bg-branco2.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
body .politica-termos h1,
body .politica-termos h2,
body .politica-termos h3,
body .politica-termos h4,
body .politica-termos h5,
body .politica-termos h6 {
  color: #F0C52E;
}
body .politica-termos strong,
body .politica-termos b {
  color: #F0C52E;
}
@media (max-width: 61.9375em) {
  body .politica-termos {
    text-align: center;
    text-align: none;
    padding: 20px 0px;
    font-size: 15px;
  }
  body .politica-termos h1 {
    font-size: 22px;
  }
}
body header {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
  /*  Validação   */
  /*CORES PRINCIPAIS*/
}
body header html {
  box-sizing: border-box;
  font-size: 100%;
}
body header html.resize {
  width: 100%;
  height: 100%;
}
body header html.resize body {
  width: 100%;
  height: 100%;
}
body header html.resize body main {
  width: 100%;
  height: 100%;
}
body header *,
body header *::before,
body header *::after {
  box-sizing: inherit;
}
body header body {
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  font-family: "Poppins", "Fredoka One", sans-serif;
  line-height: 1.5;
}
body header body div#lightbox {
  position: fixed !important;
  top: 10px !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body header .container {
  max-width: 1350px;
}
body header .container.min {
  max-width: 1155px;
}
body header .container.big {
  max-width: 1580px;
}
@media (min-width: 991px) {
  body header .hide-desktop {
    display: none !important;
  }
}
@media (max-width: 991px) {
  body header .hide-mobile {
    display: none !important;
  }
}
body header .has-error {
  border-color: red !important;
}
body header .ng-invalid.ng-touched,
body header .campo-invalido {
  border-color: #dc3545 !important;
}
body header h1,
body header h2,
body header h3,
body header h4,
body header h5,
body header h6 {
  margin: 0;
}
body header p {
  margin: 0;
}
body header a {
  text-decoration: none;
  cursor: pointer;
}
body header a:hover, body header a:focus, body header a:active, body header a:focus {
  text-decoration: none;
}
body header ul.no-list-style {
  list-style: none;
  padding: 0;
  margin: 0;
}
body header section.header {
  background-image: url("../image/backgrounds/header.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 0;
}
body header section.header .container.big {
  max-width: 1600px;
}
@media (max-width: 991px) {
  body header section.header .container {
    max-width: 350px;
  }
}
body header section.header .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
body header section.header .content .btn-matriculate {
  max-width: 325px;
}
body header section.header .content__contacts {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  justify-content: center;
}
body header section.header .content__contacts__item label {
  display: block;
  color: #355B9F;
  font-weight: 700;
}
body header section.header .content__contacts__item--numbers {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
body header section.header .content__contacts__item--numbers .btn-telephone a,
body header section.header .content__contacts__item--numbers .btn-whatsapp a {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
body header section.header .content__contacts__item--numbers .btn-telephone img,
body header section.header .content__contacts__item--numbers .btn-whatsapp img {
  width: 1.75rem;
}
body header section.header .content__contacts__item--numbers .btn-telephone h5,
body header section.header .content__contacts__item--numbers .btn-whatsapp h5 {
  font-size: 18px;
}
body header section.header .content__logo--img {
  max-width: 150px;
}
@media (max-width: 61.9375em) {
  body header section.header .content {
    text-align: center;
  }
  body header section.header .content .logo-menu {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  body header section.header .content .btn-matriculate {
    margin-inline: auto;
    margin-top: 15px;
  }
  body header section.header .content__contacts {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    margin-top: 25px;
    justify-content: space-between;
    max-width: 600px;
    margin-inline: auto;
    padding-inline: 0;
  }
  body header section.header .content__contacts__item--numbers {
    row-gap: 0.75rem;
    padding-inline: 0.5rem;
  }
  body header section.header .content__contacts__item--numbers .btn-telephone a,
body header section.header .content__contacts__item--numbers .btn-whatsapp a {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
  body header section.header .content__contacts__item--numbers .btn-telephone img,
body header section.header .content__contacts__item--numbers .btn-whatsapp img {
    width: 1.75rem;
  }
  body header section.header .content__contacts__item--numbers .btn-telephone h5,
body header section.header .content__contacts__item--numbers .btn-whatsapp h5 {
    font-size: 1rem;
  }
  body header section.header .content__logo--img {
    max-width: 75px;
  }
  body header section.header .content .social {
    margin-top: 15px;
    justify-content: center;
  }
  body header section.header .content .social i img {
    max-width: 30px;
  }
}
body header section.header .btn-menu {
  background-color: #F0C52E;
  border-radius: 100%;
  color: white;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body header .menu {
  background-color: #355B9F;
  padding: 15px 0;
}
body header .menu__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body header .menu__content a {
  color: #FFF;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  transition: 0.5s all;
  margin: 0;
}
body header .menu__content a:hover, body header .menu__content a.active {
  color: #6ABCDD;
  position: relative;
}
body header .menu__content a:hover::before, body header .menu__content a.active::before {
  content: "";
  position: absolute;
  top: none;
  bottom: -10px;
  left: 0;
  right: none;
  width: 60px;
  height: 5px;
  background-color: #6ABCDD;
  border-radius: 5px;
}
body header .menu__content a.active {
  font-weight: bold;
}
body header .menu__content span {
  color: #9c9c9c;
}
@media (max-width: 61.9375em) {
  body header .menu {
    text-align: center;
    display: none;
  }
}
body header section.barra-lgpd {
  padding: 0 15px;
  background-color: #eeeeee;
  border-bottom: 1px solid gainsboro;
  font-size: 12px;
  width: 100%;
  z-index: 502;
  color: gray;
  display: none;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  body header section.barra-lgpd {
    border: none;
    padding: 10px;
    bottom: 57px;
    position: fixed;
    top: auto;
  }
  body header section.barra-lgpd .container {
    padding: 0;
  }
}
body header section.barra-lgpd.exibir {
  display: block;
}
body header section.barra-lgpd .row,
body header section.barra-lgpd .container {
  max-width: 1525px !important;
  margin: auto;
  justify-content: center;
}
body header section.barra-lgpd .row .conteudo-lgpd-in,
body header section.barra-lgpd .container .conteudo-lgpd-in {
  display: flex;
  align-items: center;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .txt-in,
body header section.barra-lgpd .container .conteudo-lgpd-in .txt-in {
  width: 100%;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .txt-in a,
body header section.barra-lgpd .container .conteudo-lgpd-in .txt-in a {
  color: gray;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted gray;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
  cursor: pointer;
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
  margin-left: 20px;
  padding: 5px 10px;
  margin: 5px 0 5px 15px;
  color: gray;
  border: 1px solid gray;
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1;
  transition: all 0.3s;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button:hover,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button:hover {
  background-color: #f9f9f9;
}
@media screen and (max-width: 991px) {
  body header section.barra-lgpd .row .conteudo-lgpd-in,
body header section.barra-lgpd .container .conteudo-lgpd-in {
    flex-direction: column;
  }
  body header section.barra-lgpd .row .conteudo-lgpd-in .button-in,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in {
    text-align: center;
  }
  body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
    margin-top: 10px;
    margin-left: auto;
  }
}
body main section.header-conteudo {
  background-size: cover;
  background-position: bottom;
  padding: 30px 0 95px;
  color: #FFF;
  font-size: 19px;
  position: relative;
  z-index: 3;
  min-height: 295px;
}
body main section.header-conteudo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 5;
  background-color: rgba(195, 169, 131, 0.1);
}
body main section.header-conteudo .resumo h1 {
  font-family: "Fredoka One";
  font-size: 45px;
  color: #F0C52E;
  margin-bottom: 20px;
}
body main section.header-conteudo .resumo h3 {
  color: #FFF;
  font-weight: 500;
  font-size: 20px;
  max-width: 525px;
}
body main section.header-conteudo.interna {
  background-image: none !important;
  background-color: #95a0b1 !important;
  min-height: auto;
  padding: 30px 0;
}
body main section.header-conteudo.interna section.breadcrumb {
  margin-bottom: 0;
}
body main section.header-conteudo.interna .resumo {
  display: none;
}
@media (max-width: 61.9375em) {
  body main section.header-conteudo {
    text-align: center;
    background-color: #355B9F;
    border-bottom: 5px solid #F0C52E;
    background-image: none !important;
    padding: 30px 10px;
    font-size: 15px;
    min-height: 200px;
  }
  body main section.header-conteudo .resumo h1 {
    font-size: 25px;
  }
  body main section.header-conteudo .resumo h3 {
    font-size: 16px;
    margin-inline: auto;
  }
}
body main section.breadcrumb {
  margin-bottom: 15px;
  color: #FFF;
  font-size: 15px;
  position: relative;
  z-index: 5;
}
body main section.breadcrumb a {
  color: #FFF;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 300;
  text-transform: lowercase;
  font-size: 15px;
}
body main section.breadcrumb a:first-child {
  margin-left: 0;
}
body main section.breadcrumb a:last-child {
  margin-right: 0;
}
body main section.breadcrumb a.active {
  color: #FFF;
  text-decoration: underline;
  font-weight: bold;
}
@media (max-width: 991px) {
  body main section.breadcrumb {
    font-size: 12px;
  }
  body main section.breadcrumb a {
    font-size: 12px;
  }
}
body main section.index-banner {
  position: relative;
  z-index: 2;
}
body main section.index-banner .banner-content {
  min-height: 500px;
}
body main section.index-banner .banner-content img {
  width: 100%;
}
body main section.index-despreocupado {
  min-height: 775px;
  background-image: url(../image/backgrounds/despreocupado.png);
  padding: 310px 0 0;
  background-size: cover;
  margin: -260px 0 -115px;
  position: relative;
  z-index: 1;
}
body main section.index-despreocupado .despreocupado__video {
  border: 15px solid #355B9F;
  border-radius: 10px;
  overflow: hidden;
  height: 375px;
}
body main section.index-despreocupado .despreocupado__video .video {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
body main section.index-despreocupado .despreocupado__video .video i {
  font-size: 75px;
  color: #FFF;
}
body main section.index-despreocupado .despreocupado__texto {
  color: #355B9F;
  padding-inline: 10px;
  position: relative;
}
body main section.index-despreocupado .despreocupado__texto::before {
  content: url(../image/pseudos/peixe-amarelo.png);
  position: absolute;
  top: -170px;
  bottom: none;
  left: none;
  right: 250px;
}
body main section.index-despreocupado .despreocupado__texto:before {
  -webkit-animation: pralaepraca 6s alternate infinite;
          animation: pralaepraca 6s alternate infinite;
}
@-webkit-keyframes pralaepraca {
  from {
    transform: scale(1) translateX(-50px);
  }
  100% {
    transform: scale(1.09) translateX(50px);
  }
}
@keyframes pralaepraca {
  from {
    transform: scale(1) translateX(-50px);
  }
  100% {
    transform: scale(1.09) translateX(50px);
  }
}
body main section.index-despreocupado .despreocupado__texto h2 {
  text-align: center;
  font-family: "Fredoka One";
}
body main section.index-despreocupado .despreocupado__texto p {
  text-align: center;
  font-size: 19px;
}
body main section.index-despreocupado .despreocupado__contatos {
  max-width: 465px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
}
@media (max-width: 61.9375em) {
  body main section.index-despreocupado {
    text-align: center;
    min-height: auto;
    background-image: none;
    padding: 20px 0;
    margin: 0;
  }
  body main section.index-despreocupado .despreocupado__video {
    max-width: 450px;
    margin-bottom: 15px;
    height: 250px;
  }
  body main section.index-despreocupado .despreocupado__texto {
    padding-inline: 10px;
  }
  body main section.index-despreocupado .despreocupado__texto::before {
    display: none;
  }
  body main section.index-despreocupado .despreocupado__texto h2 {
    font-size: 20px;
  }
  body main section.index-despreocupado .despreocupado__texto p {
    font-size: 16px;
  }
  body main section.index-despreocupado .despreocupado__contatos {
    max-width: 465px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px auto 0;
  }
}
body main section.home-preparatorias {
  background-image: url("../image/backgrounds/preparatorias.png");
  background-size: cover;
  min-height: 780px;
  margin-bottom: -95px;
  position: relative;
  padding-top: 175px;
  position: relative;
}
body main section.home-preparatorias::after {
  content: url("../image/pseudos/peixe-roxo.png");
  position: absolute;
  top: none;
  bottom: -60px;
  left: none;
  right: 435px;
  -webkit-animation: pralaepraca 20s alternate infinite;
          animation: pralaepraca 20s alternate infinite;
}
body main section.home-preparatorias .preparatorias__titulo {
  display: flex;
  align-items: center;
}
body main section.home-preparatorias .preparatorias__titulo img {
  margin-bottom: 5px;
  -webkit-animation: pulinho 2s infinite alternate;
          animation: pulinho 2s infinite alternate;
}
@-webkit-keyframes pulinho {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@keyframes pulinho {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
body main section.home-preparatorias .preparatorias__titulo h1 {
  color: #F0C52E;
  font-family: "Fredoka One";
  font-size: 30px;
  text-align: center;
}
body main section.home-preparatorias .preparatorias__texto {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
body main section.home-preparatorias .preparatorias__texto p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  max-width: 570px;
  margin-inline: auto;
}
body main section.home-preparatorias .preparatorias .btn-matriculate {
  max-width: 320px;
  margin: 25px auto 0;
}
body main section.home-preparatorias .preparatorias__imagem {
  width: 570px;
  height: 490px;
}
@media (max-width: 61.9375em) {
  body main section.home-preparatorias {
    text-align: center;
    min-height: auto;
    margin-bottom: -95px;
    position: relative;
    padding: 35px 0 25px;
  }
  body main section.home-preparatorias:after {
    display: none;
  }
  body main section.home-preparatorias .preparatorias__titulo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  body main section.home-preparatorias .preparatorias__titulo img {
    max-width: 75px;
  }
  body main section.home-preparatorias .preparatorias__titulo h1 {
    font-size: 25px;
  }
  body main section.home-preparatorias .preparatorias__texto {
    row-gap: 15px;
  }
  body main section.home-preparatorias .preparatorias__texto p {
    font-size: 15px;
  }
  body main section.home-preparatorias .preparatorias .btn-matriculate {
    max-width: 320px;
    margin: 25px auto 0;
  }
  body main section.home-preparatorias .preparatorias__imagem {
    width: 250px;
    height: 200px;
    margin-top: 15px;
  }
}
body main section.home-natacao .aulas-beneficios {
  background-image: url("../image/backgrounds/beneficios.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 850px;
  padding: 200px 0 0;
}
body main section.home-natacao .aulas-beneficios .beneficios h1 {
  color: #355B9F;
  font-family: "Fredoka One";
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
  max-width: 665px;
}
body main section.home-natacao .aulas-beneficios .beneficios__lista {
  background-color: #FFF;
  border: 2px solid #F0C52E;
  border-radius: 55px;
  padding: 27px 25px;
  max-width: 665px;
}
body main section.home-natacao .aulas-beneficios .beneficios__lista h2 {
  color: #B8221C;
  font-family: "Fredoka One";
  font-size: 22px;
  margin-bottom: 27px;
}
body main section.home-natacao .aulas-beneficios .beneficios__lista--item {
  display: flex;
  align-items: center;
  color: #355B9F;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin: 0 0 15px 15px;
}
body main section.home-natacao .aulas-beneficios .beneficios__lista--item h4 {
  text-transform: uppercase;
  font-size: 16px;
}
@media (max-width: 61.9375em) {
  body main section.home-natacao .aulas-beneficios {
    text-align: center;
    background-image: none;
    background-color: rgb(127, 191, 255);
    min-height: auto;
    padding: 100px 0 10px;
  }
}
body main section.home-natacao .reduz {
  background-image: url("../image/backgrounds/natacao.png");
  padding: 90px 0 105px;
  margin-bottom: -45px;
  position: relative;
}
body main section.home-natacao .reduz::before {
  content: url("../image/pseudos/cavalo-marinho.png");
  position: absolute;
  top: 130px;
  bottom: none;
  left: 155px;
  right: none;
  -webkit-animation: pralaepraca2 5s alternate infinite;
          animation: pralaepraca2 5s alternate infinite;
}
@-webkit-keyframes pralaepraca2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20px);
  }
}
@keyframes pralaepraca2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20px);
  }
}
body main section.home-natacao .reduz .risco__texto {
  color: #355B9F;
  text-align: center;
}
body main section.home-natacao .reduz .risco__texto h1 {
  font-family: "Fredoka One";
  font-size: 30px;
}
body main section.home-natacao .reduz .risco__texto p {
  font-size: 20px;
  margin: 35px 0 40px;
  font-weight: 500;
  max-width: 665px;
  margin-inline: auto;
}
body main section.home-natacao .reduz .risco__texto h4 {
  color: #B8221C;
  font-size: 18px;
  font-weight: 600;
  max-width: 425px;
  margin-inline: auto;
}
body main section.home-natacao .reduz .risco .btn-matriculate {
  margin: 25px auto 0;
  max-width: 420px;
}
@media (max-width: 61.9375em) {
  body main section.home-natacao .reduz {
    text-align: center;
    padding: 25px 0 40px;
    margin-bottom: 0;
  }
  body main section.home-natacao .reduz:before {
    display: none;
  }
  body main section.home-natacao .reduz .risco__texto h1 {
    font-size: 25px;
  }
  body main section.home-natacao .reduz .risco__texto p {
    font-size: 18px;
    margin: 15px 0 20px;
  }
  body main section.home-natacao .reduz .risco__texto h4 {
    font-size: 16px;
  }
}
body main section.home-hidroginastica {
  background-image: url("../image/backgrounds/hidroginastica.png");
  min-height: 535px;
  background-size: cover;
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
  padding-top: 170px;
}
body main section.home-hidroginastica .hidroginastica__texto {
  text-align: center;
}
body main section.home-hidroginastica .hidroginastica__texto h1 {
  color: #F0C52E;
  font-family: "Fredoka One";
  font-size: 30px;
}
body main section.home-hidroginastica .hidroginastica__texto p {
  font-size: 19px;
  color: #FFF;
  margin: 35px 0 50px;
  max-width: 665px;
  margin-inline: auto;
}
body main section.home-hidroginastica .hidroginastica__contato {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 535px;
  margin-inline: auto;
}
body main section.home-hidroginastica .hidroginastica__contato .btn-matriculate {
  width: 355px;
}
@media (max-width: 61.9375em) {
  body main section.home-hidroginastica {
    text-align: center;
    background-image: none;
    background-color: rgb(0, 0, 117);
    min-height: auto;
    margin-bottom: 0;
    padding: 20px 0 25px;
  }
  body main section.home-hidroginastica .hidroginastica__texto {
    text-align: center;
  }
  body main section.home-hidroginastica .hidroginastica__texto h1 {
    font-size: 25px;
  }
  body main section.home-hidroginastica .hidroginastica__texto p {
    font-size: 16px;
    margin: 25px 0 30px;
  }
  body main section.home-hidroginastica .hidroginastica__contato {
    flex-wrap: wrap;
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 15px;
    justify-content: center;
  }
  body main section.home-hidroginastica .hidroginastica__contato .btn-matriculate {
    width: 355px;
  }
}
body main section.home-simulacao {
  background-image: url("../image/backgrounds/simulacao.png");
  background-size: cover;
  min-height: 600px;
  padding: 150px 0 20px;
}
body main section.home-simulacao .simulacao {
  color: #355B9F;
  text-align: center;
}
body main section.home-simulacao .simulacao p,
body main section.home-simulacao .simulacao li {
  font-size: 20px;
}
body main section.home-simulacao .simulacao__texto h1 {
  font-family: "Fredoka One";
  font-size: 30px;
}
body main section.home-simulacao .simulacao__texto p {
  margin: 40px 0 25px;
}
body main section.home-simulacao .simulacao__listas {
  padding: 0;
  text-align: start;
}
body main section.home-simulacao .simulacao__frase-destaque {
  color: #B8221C;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}
body main section.home-simulacao .simulacao .btn-matriculate {
  max-width: 315px;
  margin: 25px auto 0;
}
@media (max-width: 61.9375em) {
  body main section.home-simulacao {
    text-align: center;
    min-height: auto;
    padding: 30px 0 20px;
  }
  body main section.home-simulacao .simulacao p,
body main section.home-simulacao .simulacao li {
    font-size: 18px;
  }
  body main section.home-simulacao .simulacao__texto h1 {
    font-size: 25px;
  }
  body main section.home-simulacao .simulacao__texto p {
    margin: 20px 0 15px;
  }
  body main section.home-simulacao .simulacao__listas {
    text-align: center;
  }
  body main section.home-simulacao .simulacao__frase-destaque {
    margin-top: 10px;
  }
  body main section.home-simulacao .simulacao .btn-matriculate {
    max-width: 315px;
    margin: 25px auto 0;
  }
}
body main section.home-aulas {
  padding: 50px 0 0;
}
body main section.home-aulas .aulas__texto {
  color: #355B9F;
  text-align: center;
  position: relative;
}
body main section.home-aulas .aulas__texto::after {
  content: url("../image/pseudos/carangueijo.png");
  position: absolute;
  top: none;
  bottom: 0;
  left: none;
  right: 0;
  -webkit-animation: pralaepraca2 5s alternate infinite;
          animation: pralaepraca2 5s alternate infinite;
}
body main section.home-aulas .aulas__texto h1 {
  font-family: "Fredoka One";
  font-size: 30px;
  max-width: 530px;
  margin-inline: auto;
}
body main section.home-aulas .aulas__texto p {
  font-size: 20px;
  margin: 30px 0 50px;
  font-weight: 500;
  max-width: 925px;
  margin-inline: auto;
}
body main section.home-aulas .aulas__imagens {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin-inline: auto;
}
body main section.home-aulas .aulas__imagens--card {
  max-width: 288px;
}
body main section.home-aulas .aulas__imagens--card img {
  width: 100%;
  max-width: 290px;
  height: 278px;
  border-radius: 50%;
  border-right: 15px solid #F0C32F;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.home-aulas .aulas__imagens--card .idade {
  background-color: #415899;
  border-radius: 35px;
  padding: 5px 35px;
  text-align: center;
  margin-top: 30px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-inline: auto;
}
body main section.home-aulas .aulas__imagens--card .idade h5 {
  color: #FFF;
  font-weight: 700;
}
body main section.home-aulas .aulas .title {
  color: #355B9F;
  font-size: 30px;
  font-family: "Fredoka One";
  text-align: center;
  margin-top: 25px;
  background-color: #ccc;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 10px 45px;
  margin-inline: auto;
  border-radius: 15px;
}
body main section.home-aulas .aulas .turmas-btn {
  display: flex;
  align-items: center;
}
body main section.home-aulas .aulas .btn-matriculate {
  width: 300px;
  margin: 30px auto 0;
}
@media (max-width: 61.9375em) {
  body main section.home-aulas {
    text-align: center;
  }
  body main section.home-aulas .aulas__texto:after {
    display: none;
  }
  body main section.home-aulas .aulas__texto h1 {
    font-size: 25px;
  }
  body main section.home-aulas .aulas__texto p {
    font-size: 18px;
    margin: 20px 0 40px;
  }
  body main section.home-aulas .aulas__imagens {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 25px;
  }
  body main section.home-aulas .aulas .btn-matriculate h5 {
    font-size: 15px;
  }
}
body main section.home-seguranca {
  min-height: 710px;
  background-image: url("../image/backgrounds/seguranca.png");
  padding: 120px 0 0;
}
body main section.home-seguranca .animado {
  -webkit-animation: pulinho 3s alternate infinite;
          animation: pulinho 3s alternate infinite;
}
body main section.home-seguranca .seguranca__titulo {
  text-align: center;
  margin-bottom: 55px;
  max-width: 315px;
  margin-inline: auto;
}
body main section.home-seguranca .seguranca__titulo img {
  margin-bottom: 15px;
}
body main section.home-seguranca .seguranca__titulo h1 {
  font-family: "Fredoka One";
  font-size: 30px;
  color: #F0C52E;
}
body main section.home-seguranca .seguranca__texto p {
  max-width: 600px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  margin-bottom: 25px;
  margin-inline: auto;
}
body main section.home-seguranca .seguranca__texto p strong {
  text-transform: uppercase;
}
body main section.home-seguranca .seguranca__btns {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
body main section.home-seguranca .seguranca__btns .btn-matriculate {
  width: 330px;
}
@media (max-width: 61.9375em) {
  body main section.home-seguranca {
    text-align: center;
    min-height: auto;
    background-color: rgb(55, 55, 209);
    background-image: none;
    padding: 30px 0 20px;
  }
  body main section.home-seguranca .seguranca__titulo {
    margin-bottom: 25px;
  }
  body main section.home-seguranca .seguranca__titulo h1 {
    font-size: 25px;
  }
  body main section.home-seguranca .seguranca__texto p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  body main section.home-seguranca .seguranca__btns {
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: center;
  }
}
body main section.home-estrutura {
  min-height: 615px;
  background-image: url("../image/backgrounds/estrutura.png");
  background: cover;
  padding: 75px 0 25px;
}
body main section.home-estrutura .estrutura {
  position: relative;
}
body main section.home-estrutura .estrutura::after {
  content: url("../image/diversos/pes-de-pato.png");
  position: absolute;
  top: -45px;
  bottom: none;
  left: none;
  right: 210px;
}
body main section.home-estrutura .estrutura__textos {
  color: #355B9F;
  text-align: center;
}
body main section.home-estrutura .estrutura__textos h1 {
  font-size: 30px;
  font-family: "Fredoka One";
}
body main section.home-estrutura .estrutura__textos p {
  font-size: 20px;
  max-width: 600px;
  font-weight: 500;
  margin: 25px auto 30px;
}
body main section.home-estrutura .galeria {
  position: relative;
}
body main section.home-estrutura .galeria__navs {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 155px;
  width: 100%;
  cursor: pointer;
}
body main section.home-estrutura .galeria__titulo {
  color: #B8221C;
  font-family: "Fredoka One";
  text-align: center;
  margin-bottom: 25px;
  font-size: 30px;
}
body main section.home-estrutura .galeria__items {
  display: flex;
  justify-content: space-between;
  max-width: 1285px;
  margin-inline: auto;
}
body main section.home-estrutura .galeria__items img {
  width: 290px;
  height: 278px;
  border-radius: 50%;
  border-right: 15px solid #F0C32F;
}
@media (max-width: 61.9375em) {
  body main section.home-estrutura {
    text-align: center;
    min-height: auto;
    background-image: none;
    padding: 35px 0 15px;
  }
  body main section.home-estrutura .estrutura:after {
    display: none;
  }
  body main section.home-estrutura .estrutura__textos h1 {
    font-size: 25px;
  }
  body main section.home-estrutura .estrutura__textos p {
    font-size: 18px;
    margin: 25px auto 30px;
  }
  body main section.home-estrutura .galeria {
    position: relative;
  }
  body main section.home-estrutura .galeria__navs {
    z-index: 8;
  }
  body main section.home-estrutura .galeria__items {
    display: flex;
    justify-content: space-between;
    max-width: 1285px;
    margin-inline: auto;
  }
  body main section.home-estrutura .galeria__items img {
    width: 250px;
    height: 240px;
    border-radius: 50%;
    border: 3px solid #F0C32F;
    margin-inline: auto;
  }
}
body main section.home-diferenciais {
  min-height: 750px;
  background-image: url("../image/backgrounds/diferenciais.png");
  background-size: cover;
  padding: 75px 0 0;
}
body main section.home-diferenciais .diferenciais {
  position: relative;
}
body main section.home-diferenciais .diferenciais__titulo {
  color: #355B9F;
  font-family: "Fredoka One";
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
}
body main section.home-diferenciais .diferenciais__items {
  display: flex;
  margin-bottom: 35px;
}
body main section.home-diferenciais .diferenciais__items__lista {
  background-color: #FFF;
  min-height: 400px;
  padding: 25px 0 15px;
  border-radius: 35px;
  border: 2px solid #F0C52E;
  min-width: 500px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
body main section.home-diferenciais .diferenciais__items__lista--item {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  max-width: 475px;
  margin-left: -35px;
}
body main section.home-diferenciais .diferenciais__items__lista--item h3 {
  color: #B8221C;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
body main section.home-diferenciais .diferenciais__items__lista--item h4 {
  font-size: 16px;
  color: #355B9F;
}
body main section.home-diferenciais .diferenciais__items--imagem {
  position: relative;
  right: 25px;
  bottom: 30px;
}
body main section.home-diferenciais .diferenciais__garanta {
  color: #355B9F;
  font-family: "Fredoka One";
  font-size: 30px;
  text-align: center;
  margin-bottom: 25px;
}
body main section.home-diferenciais .diferenciais__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 485px;
  margin-inline: auto;
}
body main section.home-diferenciais .diferenciais__links .btn-matriculate {
  min-width: 315px;
}
body main section.home-diferenciais .diferenciais__links__saiba-btn {
  color: #FFF;
  display: block;
  font-weight: 700;
  text-shadow: 3px 5px 2px #355B9F;
  filter: drop-shadow(10px 10px 98px #355b9f);
  -webkit-filter: drop-shadow(10px 10px 98px #355b9f);
  -moz-filter: drop-shadow(10px 10px 98px #355b9f);
}
@media (max-width: 61.9375em) {
  body main section.home-diferenciais {
    text-align: center;
    min-height: auto;
    padding: 35px 0 25px;
  }
  body main section.home-diferenciais .diferenciais__titulo {
    font-size: 25px;
    margin-bottom: 30px;
  }
  body main section.home-diferenciais .diferenciais__items {
    display: flex;
    flex-wrap: wrap;
    row-gap: 35px;
    justify-content: center;
  }
  body main section.home-diferenciais .diferenciais__items__lista {
    min-height: 400px;
    padding: 25px 0 15px;
    min-width: 255px;
    width: 310px;
    row-gap: 20px;
  }
  body main section.home-diferenciais .diferenciais__items__lista--item {
    -moz-column-gap: 15px;
         column-gap: 15px;
    max-width: 275px;
  }
  body main section.home-diferenciais .diferenciais__items__lista--item h3 {
    text-align: start;
  }
  body main section.home-diferenciais .diferenciais__items__lista--item h4 {
    font-size: 14px;
    text-align: start;
  }
  body main section.home-diferenciais .diferenciais__garanta {
    font-size: 25px;
  }
  body main section.home-diferenciais .diferenciais__links {
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: center;
  }
  body main section.home-diferenciais .diferenciais__links .btn-matriculate {
    min-width: 315px;
  }
}
body main section.home-preencha {
  min-height: 850px;
  background-image: url("../image/backgrounds/preencha.png");
  background-size: cover;
  margin-bottom: -80px;
  position: relative;
  position: relative;
}
body main section.home-preencha .preencha__sereia {
  -webkit-animation: pralaepraca2 5s infinite alternate;
          animation: pralaepraca2 5s infinite alternate;
}
body main section.home-preencha::before {
  content: url("../image/pseudos/esponja-do-mar.png");
  position: absolute;
  top: none;
  bottom: 92px;
  left: 65px;
  right: none;
}
body main section.home-preencha::after {
  content: url("../image/pseudos/algas.png");
  position: absolute;
  top: none;
  bottom: 168px;
  left: none;
  right: 100px;
}
body main section.home-preencha .preencha {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  max-width: 1280px;
}
body main section.home-preencha .preencha__texto {
  color: #355B9F;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  align-items: center;
}
body main section.home-preencha .preencha__texto h1 {
  font-family: "Fredoka One";
  font-size: 30px;
  max-width: 265px;
}
body main section.home-preencha .preencha__texto p {
  font-size: 20px;
  font-weight: 500;
}
body main section.home-preencha .preencha .form-contact {
  margin-top: 50px;
}
@media (max-width: 61.9375em) {
  body main section.home-preencha {
    text-align: center;
    height: auto;
    margin-bottom: 0;
  }
  body main section.home-preencha:before, body main section.home-preencha:after {
    display: none;
  }
  body main section.home-preencha .preencha {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0 15px;
  }
  body main section.home-preencha .preencha__texto {
    row-gap: 25px;
  }
  body main section.home-preencha .preencha__texto h1 {
    font-size: 25px;
  }
  body main section.home-preencha .preencha__texto p {
    font-size: 18px;
  }
  body main section.home-preencha .preencha__sereia {
    width: 100%;
    max-width: 150px;
  }
  body main section.home-preencha .preencha .form-contact {
    margin-top: 50px;
  }
}
body main section.home-turmas {
  min-height: 730px;
  background-image: url("../image/backgrounds/turmas.png");
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  body main section.home-turmas.alpha {
    margin-top: -65px;
  }
}
body main section.home-turmas .turmas {
  padding: 80px 0 25px;
}
body main section.home-turmas .turmas__texto {
  color: #355B9F;
  text-align: center;
}
body main section.home-turmas .turmas__texto h1 {
  font-family: "Fredoka One";
  font-size: 32px;
}
body main section.home-turmas .turmas__texto p {
  margin: 30px 0 50px;
  font-size: 20px;
  max-width: 775px;
  margin-inline: auto;
}
body main section.home-turmas .turmas__cards {
  display: flex;
  justify-content: space-between;
  max-width: 1230px;
  margin-inline: auto;
}
body main section.home-turmas .turmas .btn-modalidades {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #355B9F;
  color: #FFF;
  font-weight: 700;
  border-radius: 18px;
  justify-content: center;
  padding: 5px 15px;
  margin: 45px auto 0;
}
@media (max-width: 61.9375em) {
  body main section.home-turmas {
    text-align: center;
    min-height: auto;
    background-image: none;
    background-color: #FFF;
  }
  body main section.home-turmas .turmas {
    padding: 40px 0 25px;
  }
  body main section.home-turmas .turmas__texto h1 {
    font-size: 32px;
  }
  body main section.home-turmas .turmas__texto p {
    margin: 25px 0 20px;
    font-size: 18px;
  }
  body main section.home-turmas .turmas__cards {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
  }
  body main section.home-turmas .turmas .btn-modalidades h5 {
    font-size: 16px;
  }
}
body main section.index-redes {
  min-height: 410px;
  background-image: url("../image/backgrounds/redes_sociais.png");
}
body main section.index-redes .redes__textos {
  color: #355B9F;
  font-family: "Fredoka One";
}
body main section.index-redes .redes__textos h2 {
  font-weight: 900;
  margin-bottom: 20px;
}
body main section.index-redes .redes__textos--link {
  color: #355B9F;
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  max-width: 275px;
  margin-inline: auto;
  margin-bottom: 20px;
}
body main section.index-redes .redes__textos--link img {
  width: 38px;
  height: 38px;
}
body main section.index-redes .redes__textos--link h4 {
  font-size: 28px;
}
body main section.index-duvidas {
  min-height: 560px;
  background-image: url("../image/backgrounds/duvidas.png");
  background-size: cover;
  padding: 60px 0 80px;
}
body main section.index-duvidas .duvidas__textos {
  margin-bottom: 55px;
  color: #FFF;
}
body main section.index-duvidas .duvidas__textos h1 {
  font-family: "Aleo";
  font-size: 37px;
  font-weight: 700;
  color: #F0C52E;
}
body main section.index-duvidas .duvidas__textos h2 {
  font-family: "Aleo";
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0 30px;
}
body main section.index-duvidas .duvidas__textos p {
  font-size: 20px;
  font-weight: 600;
  max-width: 605px;
}
body main section.index-duvidas .duvidas__btn {
  display: flex;
  width: 250px;
}
body main section.index-duvidas .duvidas__btn a {
  width: 100%;
}
body main section.index-duvidas .duvidas__formulario {
  width: 1035px;
  background-color: #355B9F;
  min-height: 310px;
  border-radius: 10px 0 0 10px;
  padding: 44px 88px;
  color: #FFF;
}
body main section.index-duvidas .duvidas__formulario h1 {
  font-family: "Aleo";
  font-size: 35px;
  font-weight: 700;
}
body main section.index-duvidas .duvidas__formulario h2 {
  font-size: 21px;
}
body main section.index-duvidas .duvidas__formulario__campos {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 27px;
}
body main section.index-duvidas .duvidas__formulario__campos input {
  width: 500px;
}
body main section.index-duvidas .duvidas__formulario__campos--contato {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
body main section.index-duvidas .duvidas__formulario__campos--contato input {
  width: 235px;
}
body main section.index-duvidas .duvidas__formulario__campos--contato .btn-primary {
  width: 165px;
}
body main section.index-duvidas .duvidas__formulario__campos--contato .btn-primary__titulo {
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 61.9375em) {
  body main section.index-duvidas {
    text-align: center;
  }
  body main section.index-duvidas .duvidas__textos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 55px;
    text-align: start;
  }
  body main section.index-duvidas .duvidas__textos h1 {
    font-size: 27px;
    font-weight: 700;
  }
  body main section.index-duvidas .duvidas__textos h2 {
    font-size: 35px;
    margin: 20px 0 30px;
  }
  body main section.index-duvidas .duvidas__textos p {
    font-size: 15px;
  }
  body main section.index-duvidas .duvidas__btn {
    display: block;
    margin-bottom: 25px;
  }
  body main section.index-duvidas .duvidas__btn a {
    width: 100%;
  }
  body main section.index-duvidas .duvidas__formulario {
    max-width: 650px;
    border-radius: 0px 10px 10px 0px;
    padding: 44px 0;
    display: flex;
    flex-direction: column;
  }
  body main section.index-duvidas .duvidas__formulario h1 {
    font-size: 25px;
    padding-inline: 10px;
  }
  body main section.index-duvidas .duvidas__formulario h2 {
    font-size: 21px;
  }
  body main section.index-duvidas .duvidas__formulario__campos {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  body main section.index-duvidas .duvidas__formulario__campos input {
    width: 275px;
  }
  body main section.index-duvidas .duvidas__formulario__campos--contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
    margin-inline: auto;
  }
  body main section.index-duvidas .duvidas__formulario__campos--contato input {
    width: 275px;
  }
  body main section.index-duvidas .duvidas__formulario__campos--contato .btn-primary {
    width: 165px;
  }
  body main section.index-duvidas .duvidas__formulario__campos--contato .btn-primary__titulo {
    font-size: 18px;
  }
}
body main section.index-blog {
  padding: 105px 0 135px;
  background-image: url("../image/backgrounds/blog.png");
  background-size: cover;
}
body main section.index-blog .blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 55px;
  max-width: 1355px;
}
body main section.index-blog .blog__titulo {
  text-align: center;
}
body main section.index-blog .blog__titulo h1 {
  font-family: "Fredoka One";
  font-size: 35px;
  color: #355B9F;
  margin-bottom: 25px;
}
body main section.index-blog .blog__titulo p {
  color: #123d6f;
  font-size: 20px;
  max-width: 635px;
}
body main section.index-blog .blog .cards {
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
body main section.index-blog .blog .veja-mais {
  display: block;
  color: #355B9F;
  margin: 0 0 0 auto;
}
body main section.index-blog .blog .veja-mais h5 {
  text-decoration: underline;
}
@media (max-width: 61.9375em) {
  body main section.index-blog {
    text-align: center;
    padding: 20px 0 20px;
    background-color: rgb(221, 248, 239);
    background-image: none;
  }
  body main section.index-blog .blog {
    row-gap: 0;
  }
  body main section.index-blog .blog__titulo h1 {
    font-size: 25px;
  }
  body main section.index-blog .blog__titulo p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  body main section.index-blog .blog__resumo p {
    font-size: 18px;
  }
  body main section.index-blog .blog .cards {
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 25px;
         column-gap: 25px;
    row-gap: 35px;
  }
  body main section.index-blog .blog .veja-mais {
    margin: 35px auto 0;
  }
}
body main section.index-video {
  padding: 40px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  position: relative;
  z-index: 1;
}
body main section.index-video video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.index-depoimentos {
  padding: 75px 0 45px;
  position: relative;
  min-height: 525px;
  position: relative;
}
body main section.index-depoimentos::before {
  content: url("../image/diversos/estrela-do-mar.png");
  position: absolute;
  top: 175px;
  bottom: none;
  left: none;
  right: 370px;
}
body main section.index-depoimentos .container {
  position: relative;
  z-index: 1;
}
body main section.index-depoimentos .titulo {
  text-align: center;
  margin-bottom: 50px;
}
body main section.index-depoimentos .titulo h1 {
  max-width: 590px;
  font-size: 35px;
  font-weight: 700;
  color: #355B9F;
  margin: 15px 0px 25px;
  margin-inline: auto;
  font-family: "Fredoka One";
}
body main section.index-depoimentos .titulo p {
  font-size: 20px;
  max-width: 735px;
  margin-inline: auto;
  color: #123d6f;
  font-weight: 500;
}
body main section.index-depoimentos .owl-carousel {
  margin-top: 50px;
}
@media (min-width: 992px) {
  body main section.index-depoimentos .owl-carousel .owl-stage-outer {
    height: calc(100% + 10px);
    margin: -5px -10px;
    padding: 5px 10px;
    width: calc(100% + 20px);
  }
}
body main section.index-depoimentos .depoimento {
  border-radius: 14px;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  box-shadow: 3px 4px 10px 4px rgba(204, 204, 204, 0.2196078431);
  max-width: 375px;
  padding: 50px 30px 50px 50px;
}
body main section.index-depoimentos .depoimento__img {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
body main section.index-depoimentos .depoimento__img img {
  width: 52px;
  height: 52px;
}
body main section.index-depoimentos .depoimento__img--nome h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
body main section.index-depoimentos .depoimento__img--nome i {
  color: #F0C52E;
  margin-right: 5px;
}
body main section.index-depoimentos .depoimento__textos {
  padding-top: 20px;
}
body main section.index-depoimentos .depoimento__textos h6 {
  font-size: 15px;
}
@media (max-width: 61.9375em) {
  body main section.index-depoimentos {
    text-align: center;
    padding: 10px 0 20px;
    min-height: auto;
  }
  body main section.index-depoimentos::before {
    display: none;
  }
  body main section.index-depoimentos .titulo {
    margin-bottom: 0;
  }
  body main section.index-depoimentos .titulo h1 {
    font-size: 25px;
    margin: 10px 0px 15px;
    margin-inline: auto;
  }
  body main section.index-depoimentos .titulo p {
    font-size: 16px;
    max-width: 600px;
    margin-inline: auto;
  }
  body main section.index-depoimentos .owl-carousel {
    margin-top: 20px;
  }
  body main section.index-depoimentos .depoimento {
    -moz-column-gap: 16px;
         column-gap: 16px;
    border: 1px solid #b1b1b1;
    box-shadow: none;
    margin-inline: auto;
  }
}
body main section.index-unidades {
  background-image: url("../image/backgrounds/unidades.png");
  background-size: cover;
  min-height: 815px;
  position: relative;
}
body main section.index-unidades::before {
  content: url("../image/diversos/golfinho-rosa.png");
  position: absolute;
  top: none;
  bottom: -87px;
  left: 310px;
  right: none;
  -webkit-animation: golfin 20s infinite;
          animation: golfin 20s infinite;
  pointer-events: none;
}
@-webkit-keyframes golfin {
  from {
    transform: translateX(100vw) translateY(-100px);
  }
  to {
    transform: translateX(-100vw) translateY(50px);
  }
}
@keyframes golfin {
  from {
    transform: translateX(100vw) translateY(-100px);
  }
  to {
    transform: translateX(-100vw) translateY(50px);
  }
}
body main section.index-unidades .unidades__titulo {
  padding: 25px 0 15px;
  text-align: center;
}
body main section.index-unidades .unidades__titulo h1 {
  color: #F0C52E;
  font-family: "Fredoka One";
  font-size: 32px;
}
body main section.index-unidades .unidades__titulo p {
  color: #FFF;
  text-transform: uppercase;
  margin: 15px 0 50px;
}
body main section.index-unidades .unidades__cards {
  display: flex;
  justify-content: space-between;
  max-width: 1065px;
  margin-inline: auto;
}
@media (max-width: 61.9375em) {
  body main section.index-unidades {
    text-align: center;
    padding-bottom: 50px;
    min-height: auto;
  }
  body main section.index-unidades::before {
    display: none;
  }
  body main section.index-unidades .unidades__titulo {
    padding: 25px 0 15px;
    text-align: center;
  }
  body main section.index-unidades .unidades__titulo h1 {
    font-size: 25px;
  }
  body main section.index-unidades .unidades__titulo p {
    margin: 15px 0 30px;
  }
  body main section.index-unidades .unidades__cards {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
body main section.index-calendario {
  background-image: url("../image/backgrounds/calendario.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0 50px;
  position: relative;
}
body main section.index-calendario::before {
  content: url("../image/pseudos/peixe-amarelo.png");
  position: absolute;
  top: none;
  bottom: 150px;
  left: 30px;
  right: none;
  -webkit-animation: pralaepraca2 4s alternate infinite;
          animation: pralaepraca2 4s alternate infinite;
}
body main section.index-calendario .calendario {
  position: relative;
}
body main section.index-calendario .calendario__titulo {
  text-align: center;
}
body main section.index-calendario .calendario__titulo h1 {
  color: #355B9F;
  font-family: "Fredoka One";
  margin-bottom: 50px;
}
body main section.index-calendario .calendario__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 25px;
}
body main section.index-calendario .calendario .calendario-item__mes {
  background-color: #355B9F;
  border-top: 5px solid #FFF;
  border-right: 5px solid #FFF;
  border-left: 5px solid #FFF;
  padding: 3px 15px;
  max-width: 225px;
  position: relative;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 45px;
  top: 5px;
}
body main section.index-calendario .calendario .calendario-item__mes h5 {
  color: #FFF;
  font-weight: 700;
  letter-spacing: 2px;
}
body main section.index-calendario .calendario .calendario-item__quadro {
  background-color: #F0C52E;
  border: 5px solid #FFF;
  border-radius: 6% 13% 38% 22%/25% 61% 25% 18%;
  width: 300px;
  height: 125px;
  padding: 25px 25px;
}
body main section.index-calendario .calendario .calendario-item__quadro h2 {
  color: #355B9F;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
body main section.index-calendario .calendario::after {
  content: url("../image/pseudos/carangueijo.png");
  position: absolute;
  top: 50px;
  bottom: none;
  left: none;
  right: -65px;
  -webkit-animation: pulinho 5s alternate infinite;
          animation: pulinho 5s alternate infinite;
}
@media (max-width: 61.9375em) {
  body main section.index-calendario {
    text-align: center;
    padding: 40px 0 20px;
  }
  body main section.index-calendario:before {
    display: none;
  }
  body main section.index-calendario .calendario__titulo h1 {
    margin-bottom: 30px;
  }
  body main section.index-calendario .calendario__items {
    justify-content: center;
  }
  body main section.index-calendario .calendario::after {
    display: none;
  }
}
body main section.sobre-a-pousada {
  min-height: 265px;
  padding: 75px 0 52px;
  position: relative;
}
body main section.sobre-a-pousada::before {
  content: url("../image/pseudos/peixe-roxo-2.png");
  position: absolute;
  top: -135px;
  bottom: none;
  left: 710px;
  right: none;
  z-index: 3;
  -webkit-animation: pralaepraca2 3s infinite alternate;
          animation: pralaepraca2 3s infinite alternate;
}
body main section.sobre-a-pousada .pousada {
  display: flex;
  flex-direction: column;
}
body main section.sobre-a-pousada .pousada__titulo h1 {
  font-size: 35px;
  font-family: "Fredoka One";
  color: #F0C52E;
}
body main section.sobre-a-pousada .pousada__texto {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
body main section.sobre-a-pousada .pousada__texto p {
  font-size: 18px;
  color: #355B9F;
  font-weight: 700;
}
body main section.sobre-a-pousada .pousada__video {
  margin-top: 25px;
  border: 15px solid #355B9F;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  min-height: 360px;
  position: relative;
}
body main section.sobre-a-pousada .pousada__video .video {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: grid;
  place-items: center;
}
body main section.sobre-a-pousada .pousada__video .video i {
  font-size: 75px;
  color: #FFF;
}
@media (max-width: 61.9375em) {
  body main section.sobre-a-pousada {
    text-align: center;
    padding-top: 15px;
  }
  body main section.sobre-a-pousada:before {
    display: none;
  }
  body main section.sobre-a-pousada .pousada__titulo h1 {
    font-size: 30px;
  }
  body main section.sobre-a-pousada .pousada__texto {
    max-width: 600px;
    margin-inline: auto;
  }
  body main section.sobre-a-pousada .pousada__texto h6 {
    font-size: 16px;
  }
  body main section.sobre-a-pousada .pousada__video {
    margin-top: 25px;
    min-height: 360px;
    position: relative;
    max-width: 600px;
    margin-inline: auto;
  }
}
body main section.sobre-objetivos {
  background-image: url("../image/backgrounds/sobre/objetivos.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 50px;
  min-height: 525px;
}
body main section.sobre-objetivos .objetivos__cards {
  padding-top: 95px;
  max-width: 1250px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  position: relative;
  position: relative;
}
body main section.sobre-objetivos .objetivos__cards::before {
  content: url("../image/pseudos/separador-objetivos.png");
  position: absolute;
  top: none;
  bottom: 0;
  left: 375px;
  right: none;
}
body main section.sobre-objetivos .objetivos__cards::after {
  content: url("../image/pseudos/separador-objetivos.png");
  position: absolute;
  top: none;
  bottom: 0;
  left: none;
  right: 375px;
}
body main section.sobre-objetivos .objetivos__cards--card {
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 25px;
}
body main section.sobre-objetivos .objetivos__cards--card--textos h1 {
  font-size: 35px;
  margin-bottom: 30px;
  color: #F0C52E;
  font-family: "Fredoka One";
}
body main section.sobre-objetivos .objetivos__cards--card--textos p {
  color: #FFF;
  font-size: 16px;
  height: 100px;
}
@media (max-width: 61.9375em) {
  body main section.sobre-objetivos {
    text-align: center;
    background-image: none;
    background-color: #355ba0;
    padding-bottom: 25px;
  }
  body main section.sobre-objetivos .objetivos__cards {
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  body main section.sobre-objetivos .objetivos__cards:before, body main section.sobre-objetivos .objetivos__cards:after {
    display: none;
  }
  body main section.sobre-objetivos .objetivos__cards--card {
    row-gap: 20px;
    margin-top: 0;
    height: 275px;
  }
  body main section.sobre-objetivos .objetivos__cards--card img {
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  body main section.sobre-objetivos .objetivos__cards--card--textos h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  body main section.sobre-objetivos .objetivos__cards--card--textos h6 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  body main section.sobre-objetivos .objetivos__cards--card--textos ul li {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
body main section.oeste-confira {
  padding-top: 35px;
}
body main section.oeste-confira .confira__titulo {
  margin-bottom: 40px;
  text-align: center;
}
body main section.oeste-confira .confira__titulo h1 {
  color: #B8221C;
  font-family: "Fredoka One";
  font-size: 30px;
}
body main section.oeste-confira .confira .colunas {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 992px) {
  body main section.oeste-confira .confira .colunas.alphaville {
    margin: auto;
    flex-wrap: wrap;
    max-width: 1350px;
    row-gap: 30px;
    margin-bottom: 50px;
  }
  body main section.oeste-confira .confira .colunas.alphaville:before {
    display: none;
  }
  body main section.oeste-confira .confira .colunas.alphaville .item {
    flex-flow: column;
    text-align: start;
    width: 350px;
  }
  body main section.oeste-confira .confira .colunas.alphaville .item--texto {
    max-width: none;
  }
  body main section.oeste-confira .confira .colunas.alphaville .item h1 {
    max-width: none;
    margin: 0;
    margin-top: 24px;
    text-align: start;
  }
}
body main section.oeste-confira .confira .colunas::before {
  content: url("../image/logo/logo-oeste.png");
  position: absolute;
  top: 445px;
  bottom: none;
  left: 670px;
  right: none;
}
body main section.oeste-confira .confira .colunas .item {
  display: flex;
  color: #355B9F;
  text-align: end;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
body main section.oeste-confira .confira .colunas .item--texto {
  max-width: 330px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
body main section.oeste-confira .confira .colunas .item h1 {
  font-weight: 700;
  text-transform: uppercase;
  max-width: 300px;
  margin-right: 0;
  margin-left: auto;
  font-size: 20px;
}
body main section.oeste-confira .confira .colunas .item h2 {
  font-size: 18px;
}
body main section.oeste-confira .confira .colunas .item img {
  width: 100%;
  max-width: 290px;
  height: 278px;
  border-radius: 50%;
  border-right: 15px solid #F0C32F;
}
@media (max-width: 991px) {
  body main section.oeste-confira .confira .colunas .item {
    flex-direction: column;
    text-align: center;
    row-gap: 25px;
  }
  body main section.oeste-confira .confira .colunas .item img {
    order: 1;
    max-width: 200px;
  }
  body main section.oeste-confira .confira .colunas .item--texto {
    order: 2;
  }
  body main section.oeste-confira .confira .colunas .item h1 {
    margin-inline: auto;
    font-size: 18px;
  }
  body main section.oeste-confira .confira .colunas .item h2 {
    font-size: 15px;
  }
}
body main section.oeste-confira .confira .colunas__coluna-1 {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
body main section.oeste-confira .confira .colunas__coluna-1 .item:nth-child(1) {
  position: relative;
  left: 270px;
  bottom: -40px;
}
@media (max-width: 61.9375em) {
  body main section.oeste-confira .confira .colunas__coluna-1 {
    text-align: center;
    row-gap: 15px;
  }
  body main section.oeste-confira .confira .colunas__coluna-1 .item:nth-child(1) {
    left: 0;
    bottom: 0;
  }
}
body main section.oeste-confira .confira .colunas__coluna-2 {
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
body main section.oeste-confira .confira .colunas__coluna-2 .item:nth-child(3) {
  position: relative;
  right: 270px;
  bottom: 40px;
}
body main section.oeste-confira .confira .colunas__coluna-2 .item {
  text-align: start;
}
body main section.oeste-confira .confira .colunas__coluna-2 .item h1 {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 61.9375em) {
  body main section.oeste-confira .confira .colunas__coluna-2 {
    text-align: center;
    margin-top: 0;
    row-gap: 15px;
  }
  body main section.oeste-confira .confira .colunas__coluna-2 .item {
    text-align: center;
  }
  body main section.oeste-confira .confira .colunas__coluna-2 .item h1 {
    margin: auto;
  }
  body main section.oeste-confira .confira .colunas__coluna-2 .item:nth-child(3) {
    right: 0;
    bottom: 0;
  }
}
body main section.oeste-confira .confira__btns {
  max-width: 865px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
}
body main section.oeste-confira .confira__btns .btn-matriculate {
  width: 400px;
}
body main section.oeste-confira .confira__btns .botoes {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media (max-width: 61.9375em) {
  body main section.oeste-confira {
    text-align: center;
    padding-top: 35px;
  }
  body main section.oeste-confira .confira__titulo {
    margin-bottom: 40px;
  }
  body main section.oeste-confira .confira__titulo h1 {
    font-size: 25px;
  }
  body main section.oeste-confira .confira .colunas {
    flex-wrap: wrap;
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 25px;
    justify-content: center;
  }
  body main section.oeste-confira .confira .colunas:before {
    display: none;
  }
  body main section.oeste-confira .confira__btns {
    flex-direction: column;
    row-gap: 15px;
    margin: 20px auto 25px;
  }
  body main section.oeste-confira .confira__btns .btn-matriculate {
    width: 300px;
    margin-inline: auto;
  }
  body main section.oeste-confira .confira__btns .botoes {
    display: flex;
    align-items: center;
    -moz-column-gap: 25px;
         column-gap: 25px;
    margin-inline: auto;
    max-width: 600px;
  }
}
body main section.oeste-turmas {
  background-image: url("../image/oeste/turmas-back.png");
  padding: 100px 0 100px;
  margin-bottom: -55px;
  position: relative;
  z-index: 1;
  position: relative;
}
body main section.oeste-turmas .saiba-mais {
  text-shadow: none;
  filter: none;
  color: #355B9F;
  text-decoration: underline;
  font-weight: 900;
}
body main section.oeste-turmas::after {
  content: url("../image/pseudos/cauda.png");
  position: absolute;
  top: 25%;
  bottom: none;
  left: none;
  right: 0;
}
body main section.oeste-turmas .turmas h1 {
  font-family: "Fredoka One";
  color: #B8221C;
  font-size: 30px;
  text-align: center;
}
body main section.oeste-turmas .turmas__items {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
body main section.oeste-turmas .turmas__items--item {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
body main section.oeste-turmas .turmas__items--item .imagem {
  border: 2px solid #355B9F;
  border-radius: 35px;
}
body main section.oeste-turmas .turmas__items--item__texto {
  color: #355B9F;
  max-width: 1000px;
}
body main section.oeste-turmas .turmas__items--item__texto h2,
body main section.oeste-turmas .turmas__items--item__texto p {
  font-size: 20px;
}
body main section.oeste-turmas .turmas__items--item__texto h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}
body main section.oeste-turmas .turmas__items--item__texto p {
  margin-bottom: 50px;
}
body main section.oeste-turmas .turmas__items--item__btns {
  display: flex;
  align-items: center;
  max-width: 485px;
  margin-inline: auto;
  justify-content: space-between;
}
body main section.oeste-turmas .turmas__items--item__btns .btn-matriculate {
  width: 310px;
}
@media (max-width: 61.9375em) {
  body main section.oeste-turmas {
    text-align: center;
    background-image: none;
    background-color: #e3eaed;
    padding: 35px 0 35px;
    margin-bottom: 0;
  }
  body main section.oeste-turmas::after {
    display: none;
  }
  body main section.oeste-turmas .turmas h1 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  body main section.oeste-turmas .turmas__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 25px;
    justify-content: center;
  }
  body main section.oeste-turmas .turmas__items--item {
    display: flex;
    flex-direction: column;
    -moz-column-gap: 50px;
         column-gap: 50px;
    max-width: 325px;
    margin-inline: auto;
  }
  body main section.oeste-turmas .turmas__items--item .imagem {
    border-radius: 35px;
  }
  body main section.oeste-turmas .turmas__items--item__texto {
    color: #355B9F;
  }
  body main section.oeste-turmas .turmas__items--item__texto h2,
body main section.oeste-turmas .turmas__items--item__texto p {
    font-size: 16px;
  }
  body main section.oeste-turmas .turmas__items--item__texto h2 {
    margin: 10px 0 15px;
  }
  body main section.oeste-turmas .turmas__items--item__texto p {
    margin-bottom: 30px;
  }
  body main section.oeste-turmas .turmas__items--item__btns {
    flex-direction: column;
    margin-inline: auto;
    justify-content: center;
    row-gap: 15px;
  }
}
body main section.oeste-tematica {
  background-image: url("../image/backgrounds/oeste/tematicas.png");
  background-size: cover;
  min-height: 725px;
  padding: 100px 0 0;
}
body main section.oeste-tematica .tematica__texto {
  text-align: center;
}
body main section.oeste-tematica .tematica__texto h1 {
  font-family: "Fredoka One";
  color: #F0C52E;
  font-size: 30px;
}
body main section.oeste-tematica .tematica__texto p {
  color: #FFF;
  font-size: 18px;
  margin: 25px auto 50px;
  max-width: 700px;
}
body main section.oeste-tematica .tematica__cards--card img {
  width: 100%;
  height: 250px;
  border: 3px solid #F0C52E;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.oeste-tematica .tematica__cards--card h1 {
  text-align: center;
  margin-top: 25px;
  font-weight: 800;
  font-size: 25px;
  color: #FFF;
  text-shadow: 0 0 10px #000;
}
@media (max-width: 61.9375em) {
  body main section.oeste-tematica {
    text-align: center;
    background-image: none;
    background-color: #345a9f;
    min-height: auto;
    padding: 30px 0 20px;
  }
  body main section.oeste-tematica .tematica__texto h1 {
    font-size: 25px;
  }
  body main section.oeste-tematica .tematica__texto p {
    font-size: 16px;
    margin: 25px auto 30px;
    max-width: 500px;
    margin-inline: auto;
  }
  body main section.oeste-tematica .tematica__cards--card img {
    height: 200px;
    border-radius: 20px;
  }
  body main section.oeste-tematica .tematica__cards--card h1 {
    margin-top: 25px;
    font-size: 20px;
  }
}
body main section.oeste-coletivas {
  background-image: url("../image/backgrounds/oeste/coletivas.png");
  padding-top: 100px;
  margin-top: -80px;
  min-height: 700px;
  position: relative;
}
body main section.oeste-coletivas::after {
  content: url("../image/diversos/agua-viva.png");
  position: absolute;
  top: 0;
  bottom: none;
  left: none;
  right: 0;
  z-index: 2;
  -webkit-animation: pulinho 3s infinite alternate;
          animation: pulinho 3s infinite alternate;
}
body main section.oeste-coletivas .coletivas__texto {
  color: #355B9F;
  text-align: center;
}
body main section.oeste-coletivas .coletivas__texto h1 {
  font-family: "Fredoka One";
  font-size: 30px;
  max-width: 425px;
  margin-inline: auto;
}
body main section.oeste-coletivas .coletivas__texto h2 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 30px 0 30px;
}
body main section.oeste-coletivas .coletivas__texto p {
  font-size: 20px;
}
@media (max-width: 61.9375em) {
  body main section.oeste-coletivas {
    text-align: center;
    background-image: none;
    background-color: #dce7f1;
    padding: 20px 0 20px;
    margin-top: 0;
    min-height: auto;
  }
  body main section.oeste-coletivas:after {
    display: none;
  }
  body main section.oeste-coletivas .coletivas .imagem {
    max-width: 250px;
  }
  body main section.oeste-coletivas .coletivas__texto h1 {
    font-size: 25px;
  }
  body main section.oeste-coletivas .coletivas__texto h2 {
    font-size: 18px;
    margin: 15px 0 15px;
  }
  body main section.oeste-coletivas .coletivas__texto p {
    font-size: 15px;
    max-width: 600px;
    margin-inline: auto;
  }
}
body main section.oeste-compativeis {
  background-image: url("../image/backgrounds/oeste/compativeis.png");
  background-size: cover;
  padding: 75px 0 100px;
  margin-top: -115px;
  position: relative;
  z-index: 1;
}
body main section.oeste-compativeis .peixin {
  -webkit-animation: pralaepraca2 3s alternate infinite;
          animation: pralaepraca2 3s alternate infinite;
}
body main section.oeste-compativeis .compativeis__texto {
  color: #355B9F;
  text-align: center;
}
body main section.oeste-compativeis .compativeis__texto h1 {
  font-family: "Fredoka One";
  font-size: 30px;
  margin: 28px 0 34px;
  max-width: 375px;
  margin-inline: auto;
}
body main section.oeste-compativeis .compativeis__texto p {
  font-size: 20px;
  margin-bottom: 25px;
  max-width: 585px;
  margin-inline: auto;
}
body main section.oeste-compativeis .compativeis .btn-matriculate {
  max-width: 320px;
  margin-inline: auto;
}
body main section.oeste-compativeis .compativeis__imagem {
  margin: 65px 0 0 -45px;
}
@media (max-width: 61.9375em) {
  body main section.oeste-compativeis {
    text-align: center;
    background-image: none;
    background-color: #e6e7e7;
    padding: 25px 0 30px;
    margin-top: 0;
  }
  body main section.oeste-compativeis .compativeis__texto {
    color: #355B9F;
    text-align: center;
  }
  body main section.oeste-compativeis .compativeis__texto img {
    max-width: 150px;
  }
  body main section.oeste-compativeis .compativeis__texto h1 {
    font-size: 25px;
    margin: 20px auto 24px;
  }
  body main section.oeste-compativeis .compativeis__texto p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  body main section.oeste-compativeis .compativeis .btn-matriculate {
    max-width: 320px;
    margin-inline: auto;
    margin-top: 15px;
  }
  body main section.oeste-compativeis .compativeis__imagem {
    margin: 35px 0 0 0px;
    width: 100%;
    max-width: 400px;
  }
}
body main section.oeste-escolher {
  background-image: url("../image/backgrounds/oeste/porque-escolher.png");
  min-height: 500px;
  padding: 100px 0 100px;
  margin-top: -65px;
}
body main section.oeste-escolher .escolher__conteudo h1 {
  font-family: "Fredoka One";
  color: #FFF;
  font-size: 30px;
  margin-bottom: 25px;
  text-align: center;
}
body main section.oeste-escolher .escolher__conteudo__lista {
  background-color: #FFF;
  border: 3px solid #F0C52E;
  border-radius: 50px;
  padding: 40px 30px 40px 85px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
body main section.oeste-escolher .escolher__conteudo__lista--item {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
body main section.oeste-escolher .escolher__conteudo__lista--item h4 {
  color: #355B9F;
  font-size: 15px;
  text-transform: uppercase;
}
@media (max-width: 61.9375em) {
  body main section.oeste-escolher {
    text-align: center;
    background-position: right;
    min-height: auto;
    padding: 20px 0 20px;
    margin-top: 0;
  }
  body main section.oeste-escolher .escolher__conteudo h1 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  body main section.oeste-escolher .escolher__conteudo__lista {
    max-width: 600px;
    border-radius: 30px;
    padding: 20px 10px 20px 10px;
    row-gap: 15px;
    margin-inline: auto;
  }
  body main section.oeste-escolher .escolher__conteudo__lista--item h4 {
    text-align: start;
  }
}
body main section.servicos-turmas {
  background-image: url("../image/backgrounds/turmas/turmas.png");
  padding: 110px 0 100px;
  margin-top: -90px;
}
body main section.servicos-turmas .turmas {
  position: relative;
}
body main section.servicos-turmas .turmas::after {
  content: url("../image/diversos/golfinho-rosa.png");
  position: absolute;
  top: -145px;
  bottom: none;
  left: none;
  right: 375px;
  z-index: 3;
}
body main section.servicos-turmas .turmas__titulo {
  text-align: center;
  font-family: "Fredoka One";
  font-size: 30px;
  color: #355B9F;
  margin-bottom: 40px;
}
body main section.servicos-turmas .turmas__cards {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 61.9375em) {
  body main section.servicos-turmas {
    text-align: center;
    padding: 20px 0 20px;
    background-image: none;
    background-color: #dedede;
    margin-top: 0;
  }
  body main section.servicos-turmas .turmas:after {
    display: none;
  }
  body main section.servicos-turmas .turmas__titulo {
    text-align: center;
    font-family: "Fredoka One";
    font-size: 30px;
    color: #355B9F;
    margin-bottom: 40px;
  }
  body main section.servicos-turmas .turmas__cards {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    -moz-column-gap: 25px;
         column-gap: 25px;
    justify-content: center;
  }
}
body main section.blog-listagem {
  min-height: 585px;
  padding: 100px 0 60px;
}
body main section.blog-listagem .listagem {
  position: relative;
  position: relative;
}
body main section.blog-listagem .listagem::before {
  content: url("../image/pseudos/carangueijo.png");
  position: absolute;
  top: none;
  bottom: 0;
  left: -30px;
  right: none;
  -webkit-animation: pulinho 3s alternate infinite;
          animation: pulinho 3s alternate infinite;
}
body main section.blog-listagem .listagem::after {
  content: url("../image/pseudos/recife.png");
  position: absolute;
  top: none;
  bottom: 0;
  left: none;
  right: 160px;
}
body main section.blog-listagem .listagem .cards {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 45px;
}
body main section.blog-listagem .listagem .cards::after {
  content: url("../image/pseudos/estrela-do-mar-3.png");
  position: absolute;
  top: -240px;
  bottom: none;
  left: none;
  right: 40px;
  z-index: 3;
  -webkit-animation: pralaepraca2 3s alternate infinite;
          animation: pralaepraca2 3s alternate infinite;
}
body main section.blog-listagem .listagem .card-categoria {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
body main section.blog-listagem .listagem .card-pesquisar {
  position: relative;
  z-index: 1;
}
@media (max-width: 61.9375em) {
  body main section.blog-listagem {
    text-align: center;
    padding: 25px 0 35px;
  }
  body main section.blog-listagem .listagem:before, body main section.blog-listagem .listagem:after {
    display: none;
  }
  body main section.blog-listagem .listagem .cards {
    margin-top: 25px;
    justify-content: center;
  }
  body main section.blog-listagem .listagem .cards:after {
    display: none;
  }
  body main section.blog-listagem .listagem .card-categoria {
    margin-top: 35px;
  }
  body main section.blog-listagem .listagem .form-enviar {
    max-width: 500px;
    margin-inline: auto;
  }
}
body main section.blog-interna {
  padding: 55px 0;
}
body main section.blog-interna .interna__titulo {
  display: block;
}
body main section.blog-interna .interna__titulo h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #355B9F;
}
body main section.blog-interna .interna__img-principal {
  margin: 22px 0 38px;
}
body main section.blog-interna .interna__img-principal img {
  width: 100%;
  height: 515px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main section.blog-interna .interna__compartilhe {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body main section.blog-interna .interna__compartilhe h4 {
  color: #363636;
  opacity: 0.7;
  font-weight: light;
  font-size: 15px;
}
body main section.blog-interna .interna__compartilhe--icones {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  color: #355B9F;
}
body main section.blog-interna .interna__compartilhe--icones i {
  font-size: 18px;
}
body main section.blog-interna .interna__compartilhe--icones i:hover {
  color: #F0C52E;
  cursor: pointer;
}
body main section.blog-interna .interna__textos {
  margin-bottom: 85px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
body main section.blog-interna .interna__textos h1, body main section.blog-interna .interna__textos p {
  font-size: 18px;
}
body main section.blog-interna .interna__textos h1 {
  font-weight: 700;
}
body main section.blog-interna .interna__textos p {
  font-size: 18px;
  color: #363636;
}
body main section.blog-interna .interna .card-categoria {
  margin-bottom: 25px;
}
body main section.blog-interna .interna .card-categoria__conteudo {
  padding-left: 25px;
}
@media (max-width: 61.9375em) {
  body main section.blog-interna {
    text-align: center;
    padding: 45px 0;
  }
  body main section.blog-interna .interna {
    max-width: 600px;
    margin-inline: auto;
  }
  body main section.blog-interna .interna__titulo h1 {
    font-size: 24px;
  }
  body main section.blog-interna .interna__img-principal img {
    max-width: 600px;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px;
    box-shadow: 3px 18.5px 10px -3.5px #bbbbbb;
  }
  body main section.blog-interna .interna__compartilhe {
    text-align: start;
  }
  body main section.blog-interna .interna__textos {
    margin-bottom: 25px;
  }
  body main section.blog-interna .interna__textos h1, body main section.blog-interna .interna__textos p {
    font-size: 15px;
  }
  body main section.blog-interna .interna__gostou h2 {
    font-size: 20px;
  }
  body main section.blog-interna .interna .card-categoria {
    margin: 25px 0 25px;
  }
}
body main section.duvida-duvidas {
  padding: 87px 0 70px;
  position: relative;
  position: relative;
}
body main section.duvida-duvidas::before {
  content: url("../image/pseudos/esponja-do-mar.png");
  position: absolute;
  top: none;
  bottom: 70px;
  left: 245px;
  right: none;
  z-index: 3;
}
body main section.duvida-duvidas::after {
  content: url("../image/pseudos/algas.png");
  position: absolute;
  top: none;
  bottom: 60px;
  left: none;
  right: 40px;
  z-index: 3;
}
body main section.duvida-duvidas .duvidas {
  position: relative;
  position: relative;
}
body main section.duvida-duvidas .duvidas::before {
  content: url("../image/pseudos/peixe-amarelo.png");
  position: absolute;
  top: -180px;
  bottom: none;
  left: none;
  right: 600px;
  z-index: 3;
  -webkit-animation: pralaepraca2 3s alternate infinite;
          animation: pralaepraca2 3s alternate infinite;
}
body main section.duvida-duvidas .duvidas::after {
  content: url("../image/pseudos/carangueijo-2.png");
  position: absolute;
  top: -50px;
  bottom: none;
  left: none;
  right: -25px;
  z-index: 3;
}
body main section.duvida-duvidas .duvidas__conteudo {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
body main section.duvida-duvidas .duvidas .normas {
  margin-top: 90px;
}
@media (max-width: 61.9375em) {
  body main section.duvida-duvidas {
    text-align: center;
    padding: 25px 0 55px;
  }
  body main section.duvida-duvidas:before, body main section.duvida-duvidas:after {
    display: none;
  }
  body main section.duvida-duvidas .duvidas:before, body main section.duvida-duvidas .duvidas:after {
    display: none;
  }
  body main section.duvida-duvidas .duvidas__conteudo {
    row-gap: 15px;
  }
  body main section.duvida-duvidas .duvidas .normas {
    margin-top: 40px;
  }
  body main section.duvida-duvidas .duvidas .card-categoria {
    margin: 20px auto 20px;
  }
}
body main section.contato {
  padding-bottom: 50px;
  position: relative;
  position: relative;
}
body main section.contato::before {
  content: url("../image/pseudos/esponja-do-mar.png");
  position: absolute;
  top: none;
  bottom: 95px;
  left: 90px;
  right: none;
}
body main section.contato::after {
  content: url("../image/pseudos/carangueijo-3.png");
  position: absolute;
  top: -218px;
  bottom: none;
  left: none;
  right: 820px;
  z-index: 3;
  -webkit-animation: pulinho 3s infinite alternate;
          animation: pulinho 3s infinite alternate;
}
body main section.contato .fale {
  margin-top: 50px;
}
body main section.contato .fale__titulo {
  margin-bottom: 25px;
}
body main section.contato .fale__titulo h1 {
  font-family: "Fredoka One";
  color: #355B9F;
  font-size: 28px;
}
body main section.contato .fale__formulario {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 500px;
}
body main section.contato .fale__formulario--item {
  display: flex;
  flex-direction: column;
}
body main section.contato .fale__formulario--item label {
  font-size: 16px;
  font-weight: bold;
  color: #393939;
}
body main section.contato .fale__formulario--item input,
body main section.contato .fale__formulario--item textarea,
body main section.contato .fale__formulario--item select {
  background-color: #fbfbfb;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
  padding: 13px 0px 10px 16px;
  outline: none;
}
body main section.contato .fale__formulario--item input::-moz-placeholder, body main section.contato .fale__formulario--item textarea::-moz-placeholder, body main section.contato .fale__formulario--item select::-moz-placeholder {
  font-size: 15px;
  color: #bebebe;
  font-weight: 300;
}
body main section.contato .fale__formulario--item input:-ms-input-placeholder, body main section.contato .fale__formulario--item textarea:-ms-input-placeholder, body main section.contato .fale__formulario--item select:-ms-input-placeholder {
  font-size: 15px;
  color: #bebebe;
  font-weight: 300;
}
body main section.contato .fale__formulario--item input::placeholder,
body main section.contato .fale__formulario--item textarea::placeholder,
body main section.contato .fale__formulario--item select::placeholder {
  font-size: 15px;
  color: #bebebe;
  font-weight: 300;
}
body main section.contato .fale__formulario--item textarea {
  font-size: 15px;
}
body main section.contato .fale__formulario--button {
  align-self: flex-end;
}
body main section.contato .fale__formulario--button button {
  width: 205px;
  background-color: #F0C52E;
  border-radius: 35px;
  border: none;
  padding: 10px 20px;
}
body main section.contato .fale__formulario--button button h5 {
  color: #355B9F;
}
body main section.contato .fale__atendimento--conteudo {
  position: relative;
}
body main section.contato .fale__atendimento--conteudo::after {
  content: url("../image/pseudos/algas.png");
  position: absolute;
  top: none;
  bottom: -25px;
  left: none;
  right: -110px;
}
body main section.contato .fale__atendimento--conteudo h1 {
  color: #355B9F;
  font-size: 29px;
  font-family: "Fredoka One";
}
body main section.contato .fale__atendimento--conteudo h6 {
  color: #b0b0b0;
  margin: 10px 0 50px;
}
@media (max-width: 61.9375em) {
  body main section.contato {
    text-align: center;
    padding-bottom: 0;
  }
  body main section.contato:before, body main section.contato:after {
    display: none;
  }
  body main section.contato .fale {
    padding-bottom: 50px;
  }
  body main section.contato .fale__textos {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
  }
  body main section.contato .fale__formulario {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }
  body main section.contato .fale__formulario--button {
    align-self: flex-start;
  }
  body main section.contato .fale__formulario--button button {
    width: 100%;
  }
  body main section.contato .fale__formulario .escolha {
    justify-content: center;
    text-align: start;
  }
  body main section.contato .fale__atendimento {
    margin-top: 15px;
  }
  body main section.contato .fale__atendimento--conteudo:after {
    display: none;
  }
}
body main section.trabalhe {
  padding-bottom: 50px;
  position: relative;
  position: relative;
}
body main section.trabalhe::before {
  content: url("../image/pseudos/esponja-do-mar.png");
  position: absolute;
  top: none;
  bottom: 95px;
  left: 90px;
  right: none;
}
body main section.trabalhe::after {
  content: url("../image/pseudos/peixe-amarelo.png");
  position: absolute;
  top: -175px;
  bottom: none;
  left: none;
  right: 820px;
  z-index: 3;
}
body main section.trabalhe .fale {
  margin-top: 50px;
}
body main section.trabalhe .fale__titulo {
  margin-bottom: 25px;
}
body main section.trabalhe .fale__titulo h1 {
  font-family: "Fredoka One";
  color: #355B9F;
  font-size: 28px;
}
body main section.trabalhe .fale__titulo p {
  color: #F0C52E;
  font-family: "Fredoka One";
  font-size: 20px;
}
body main section.trabalhe .fale__formulario {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 500px;
}
body main section.trabalhe .fale__formulario--item {
  display: flex;
  flex-direction: column;
}
body main section.trabalhe .fale__formulario--item label {
  font-size: 16px;
  font-weight: bold;
  color: #393939;
}
body main section.trabalhe .fale__formulario--item p {
  font-size: 13px;
  margin-bottom: 10px;
}
body main section.trabalhe .fale__formulario--item input,
body main section.trabalhe .fale__formulario--item textarea,
body main section.trabalhe .fale__formulario--item select {
  background-color: #FBFBFB;
  border-radius: 3px;
  border: 1px solid #DCDCDC;
  padding: 13px 0px 10px 16px;
  outline: none;
}
body main section.trabalhe .fale__formulario--item input::-moz-placeholder, body main section.trabalhe .fale__formulario--item textarea::-moz-placeholder, body main section.trabalhe .fale__formulario--item select::-moz-placeholder {
  font-size: 15px;
  color: #BEBEBE;
  font-weight: 300;
}
body main section.trabalhe .fale__formulario--item input:-ms-input-placeholder, body main section.trabalhe .fale__formulario--item textarea:-ms-input-placeholder, body main section.trabalhe .fale__formulario--item select:-ms-input-placeholder {
  font-size: 15px;
  color: #BEBEBE;
  font-weight: 300;
}
body main section.trabalhe .fale__formulario--item input::placeholder,
body main section.trabalhe .fale__formulario--item textarea::placeholder,
body main section.trabalhe .fale__formulario--item select::placeholder {
  font-size: 15px;
  color: #BEBEBE;
  font-weight: 300;
}
body main section.trabalhe .fale__formulario--item textarea {
  font-size: 15px;
}
body main section.trabalhe .fale__formulario--button {
  align-self: flex-end;
}
body main section.trabalhe .fale__formulario--button button {
  width: 205px;
  background-color: #F0C52E;
  border-radius: 35px;
  border: none;
  padding: 10px 20px;
}
body main section.trabalhe .fale__formulario--button button h5 {
  color: #355B9F;
}
body main section.trabalhe .fale__atendimento--conteudo {
  position: relative;
}
body main section.trabalhe .fale__atendimento--conteudo::after {
  content: url("../image/pseudos/algas.png");
  position: absolute;
  top: none;
  bottom: -25px;
  left: none;
  right: -110px;
}
body main section.trabalhe .fale__atendimento--conteudo h1 {
  color: #355B9F;
  font-size: 29px;
  font-family: "Fredoka One";
}
body main section.trabalhe .fale__atendimento--conteudo h6 {
  color: #B0B0B0;
  margin: 10px 0 50px;
}
@media (max-width: 61.9375em) {
  body main section.trabalhe {
    text-align: center;
    padding-bottom: 0;
  }
  body main section.trabalhe:before, body main section.trabalhe:after {
    display: none;
  }
  body main section.trabalhe .fale {
    padding-bottom: 50px;
  }
  body main section.trabalhe .fale__textos {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 15px;
  }
  body main section.trabalhe .fale__formulario {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }
  body main section.trabalhe .fale__formulario--button {
    align-self: flex-start;
  }
  body main section.trabalhe .fale__formulario--button button {
    width: 100%;
  }
  body main section.trabalhe .fale__formulario .escolha {
    justify-content: center;
    text-align: start;
  }
  body main section.trabalhe .fale__atendimento {
    margin-top: 15px;
  }
  body main section.trabalhe .fale__atendimento--conteudo:after {
    display: none;
  }
}
body footer section.barra-fixa {
  position: fixed;
  background-image: url("../image/bg-header.png");
  background-size: cover;
  background-position: center;
  bottom: 0;
  background-color: white;
  border-top: 2px solid #F0C52E;
  width: 100%;
  padding: 10px 80px;
  z-index: 10;
  transition: all 0.5s;
}
body footer section.barra-fixa .main-cta-avaliacao {
  font-size: 17px;
  padding-left: 30px;
  padding-right: 30px;
}
body footer section.barra-fixa .main-cta-avaliacao i {
  margin-left: 15px;
  font-size: 17px;
}
body footer section.barra-fixa .main-cta-agendar {
  font-size: 17px;
}
body footer section.barra-fixa .main-cta-agendar .cta-icon {
  width: 60px;
}
body footer section.barra-fixa .main-cta-agendar img {
  width: 23px;
}
body footer section.barra-fixa .row-flex {
  display: inline-flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
body footer section.barra-fixa .row-flex a:first-child {
  margin-right: 20px;
}
body footer section.barra-fixa .row-flex hr {
  width: 2px;
  height: 32px;
  background-color: #F0C52E;
  opacity: 1;
}
body footer section.barra-fixa .row-flex .contato label {
  display: block;
  color: #355B9F;
  font-weight: 700;
}
body footer section.barra-fixa .row-flex .contato .contato-numeros {
  display: flex;
}
@media (max-width: 991px) {
  body footer section.barra-fixa {
    display: none;
  }
}
body footer section.barra-fixa.oculta {
  bottom: -100px;
}
body footer section.barra-fixa-mobile {
  background-color: #F0C52E;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 10;
  padding: 5px 0;
  border-top: 2px solid white;
  transition: 0.3s all;
}
body footer section.barra-fixa-mobile .list-itens {
  display: flex;
  justify-content: space-around;
  font-size: 30px;
}
body footer section.barra-fixa-mobile .list-itens a {
  color: white;
}
body footer section.barra-fixa-mobile .list-itens a i {
  color: white;
}
@media screen and (min-width: 992px) {
  body footer section.barra-fixa-mobile {
    display: none;
  }
}
body footer .mapas {
  display: flex;
  width: 100%;
  position: relative;
}
body footer .mapas::before {
  content: "";
  position: absolute;
  top: none;
  bottom: none;
  left: none;
  right: none;
  width: 7px;
  height: 390px;
  background-color: #355B9F;
  border-radius: 15px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 61.9375em) {
  body footer .mapas {
    text-align: center;
    flex-direction: column;
    row-gap: 10px;
    background-color: #355B9F;
    padding-inline: 10px;
  }
  body footer .mapas:before {
    display: none;
  }
}
body footer section.footer-mapa {
  width: 100%;
  height: 470px;
  display: flex;
}
body footer section.footer-mapa iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 61.9375em) {
  body footer section.footer-mapa {
    text-align: center;
    height: 250px;
  }
}
body footer section.footer {
  padding: 75px 0;
  background-image: url("../image/backgrounds/footer.png");
  background-size: cover;
  min-height: 410px;
  margin-top: -75px;
  position: relative;
  margin-bottom: 30px;
}
body footer section.footer .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body footer section.footer .conteudo__logo img {
  width: 165px;
}
body footer section.footer .conteudo__botao .btn-matriculate {
  width: 330px;
}
body footer section.footer .conteudo__contatos {
  display: flex;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
body footer section.footer .menu-footer {
  display: flex;
  justify-content: space-between;
  max-width: 945px;
  margin-inline: auto;
}
body footer section.footer .menu-footer a {
  color: #FFF;
  font-size: 14px;
  transition: color 0.5s;
}
body footer section.footer .menu-footer a:hover,
body footer section.footer .menu-footer a .active {
  color: #F0C52E;
  position: relative;
}
body footer section.footer .menu-footer a:hover::before,
body footer section.footer .menu-footer a .active::before {
  content: "";
  position: absolute;
  top: none;
  bottom: -5px;
  left: none;
  right: none;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: #F0C52E;
}
body footer section.footer .copyright {
  margin-top: 25px;
  max-width: 815px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body footer section.footer .copyright h5 {
  color: #FFF;
  font-size: 16px;
}
@media (max-width: 61.9375em) {
  body footer section.footer {
    text-align: center;
    padding: 25px 0;
    margin-bottom: 57px;
    background-image: none;
    margin-top: 0;
    background-color: rgb(0, 110, 255);
  }
  body footer section.footer .conteudo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 25px;
  }
  body footer section.footer .conteudo__logo img {
    width: 115px;
  }
  body footer section.footer .conteudo__botao .btn-matriculate {
    width: 330px;
  }
  body footer section.footer .conteudo__contatos {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 35px;
         column-gap: 35px;
    width: 100%;
    max-width: 600px;
  }
  body footer section.footer .menu-footer {
    display: none;
  }
  body footer section.footer .copyright {
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 25px;
         column-gap: 25px;
    row-gap: 15px;
  }
}
body footer section.botao_whatsapp {
  background-color: #25d366;
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 610;
  bottom: 30px;
  padding: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  right: 30px;
  border-radius: 75px;
  transition: all 0.5s;
}
body footer section.botao_whatsapp i.fab.fa-whatsapp {
  color: white;
  font-size: 46px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  body footer section.botao_whatsapp.scroll {
    bottom: 100px;
  }
}
body footer section.botao_whatsapp:hover {
  background-color: #1f9249;
}
@media screen and (max-width: 991px) {
  body footer section.botao_whatsapp {
    bottom: 75px;
    right: 10px;
  }
}
body footer .lente-whatsapp {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}
body footer .lente-whatsapp.exibir {
  opacity: 1;
  pointer-events: all;
}
body footer section.modal-whatsapp {
  position: fixed;
  right: 17px;
  bottom: 30px;
  background-image: url("../../default/image/bg-whatsapp-min.jpg");
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 7px 0px #373737;
  max-width: 320px;
  max-height: 360px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 9999;
  transform-origin: 100% 100%;
  transform: scale(0);
  transition: all 0.3s;
}
body footer section.modal-whatsapp.exibir {
  transform: scale(1);
}
body footer section.modal-whatsapp.scroll {
  bottom: 100px;
}
@media screen and (max-width: 991px) {
  body footer section.modal-whatsapp {
    right: 0px;
    top: 0px;
    bottom: unset !important;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    border-radius: 0px;
  }
}
body footer section.modal-whatsapp .cabecario-zap {
  background-color: #2e8c7d;
  font-size: 17px;
  color: #97c5be;
  padding: 12px 20px 4px 20px;
}
body footer section.modal-whatsapp .cabecario-zap span.zaptitulo {
  transform: translateY(-4px);
  display: inline-block;
}
body footer section.modal-whatsapp .cabecario-zap i.fab.fa-whatsapp {
  font-size: 25px;
  margin-right: 10px;
}
body footer section.modal-whatsapp .cabecario-zap i.far.fa-times-circle {
  font-size: 25px;
  float: right;
  margin-right: 0px;
  cursor: pointer;
}
body footer section.modal-whatsapp .msg-bot {
  font-family: "Open Sans", sans-serif;
  background-color: white;
  margin: 15px;
  padding: 15px;
  border-radius: 20px;
  font-size: 13.4px;
  position: relative;
}
body footer section.modal-whatsapp .msg-bot::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 15px solid transparent;
  border-top: 21px solid white;
  position: absolute;
  top: 0px;
  left: -10px;
  z-index: -1;
}
body footer section.modal-whatsapp .msg-bot :first-child {
  margin-top: 7px;
}
body footer section.modal-whatsapp .msg-bot label {
  font-weight: 700;
  font-size: 12px;
  color: black;
  display: block;
}
body footer section.modal-whatsapp .msg-bot input {
  height: auto;
  font-size: 14px;
  margin-bottom: 5px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid #cacaca;
  outline: none;
  width: 100%;
}
body footer section.modal-whatsapp .campo-acao {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  padding: 0px 10px;
  height: 44px;
}
@media (max-width: 991px) {
  body footer section.modal-whatsapp .campo-acao {
    position: static;
  }
}
body footer section.modal-whatsapp .campo-acao .texto {
  width: 100%;
  padding-right: 10px;
  font-family: "Open Sans", sans-serif;
}
body footer section.modal-whatsapp .campo-acao .texto input {
  border: none;
  border-radius: 32px;
  padding: 9px 18px;
  display: flex;
  outline-color: transparent;
  width: 100%;
  outline: none !important;
  font-size: 14px;
}
body footer section.modal-whatsapp .campo-acao .button-zap {
  background-color: transparent;
}
body footer section.modal-whatsapp .campo-acao .button-zap button {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #2e8c7d;
  color: white;
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body footer section.modal-whatsapp .campo-acao .button-zap button:disabled {
  background-color: #a7a7a7;
  cursor: not-allowed;
}
body footer section.modal-whatsapp .campo-acao .button-zap button i.fas.fa-paper-plane {
  font-size: 19px;
  transform: rotate(49deg) translate(-2px, 0px);
  position: relative;
  transform-origin: center;
}
body footer section.modal-whatsapp .hide-desktop {
  display: none;
}
@media (max-width: 991px) {
  body footer section.modal-whatsapp .campo-acao {
    display: none;
  }
  body footer section.modal-whatsapp .acao-mobile {
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #2e8c7d;
    color: white;
    border-radius: 9px;
    text-align: center;
    width: calc(100% - 40px);
    display: block;
    padding: 7px 15px;
    margin: 0 20px;
  }
  body footer section.modal-whatsapp .acao-mobile:disabled {
    background-color: #a7a7a7;
    cursor: not-allowed;
  }
  body footer section.modal-whatsapp .acao-mobile i {
    margin-right: 5px;
  }
  body footer section.modal-whatsapp .hide-desktop {
    display: block;
  }
}
body footer .menu-mobile {
  position: fixed;
  background-color: #355B9F;
  top: 0px;
  left: -100%;
  width: 75%;
  height: 100%;
  overflow: auto;
  z-index: 998;
  padding-bottom: 65px;
  border-right: 2px solid #F0C52E;
  transition: all 0.5s;
}
body footer .menu-mobile.aberto {
  left: 0px;
}
body footer .menu-mobile .fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  font-weight: 700;
  color: #F0C52E;
}
body footer .menu-mobile .logo {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
}
body footer .menu-mobile .logo img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 0;
}
body footer .menu-mobile ul {
  margin-top: 10px;
  padding: 0px;
}
body footer .menu-mobile ul li {
  list-style: none;
  margin: 5px;
  padding: 2px;
  text-transform: uppercase;
  position: relative;
}
body footer .menu-mobile ul li:last-child {
  border-bottom: none;
}
body footer .menu-mobile ul li a {
  color: #FFF;
  font-size: 16px;
  padding: 5px 10px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  max-width: 300px;
}/*# sourceMappingURL=custom.css.map */