/*=============== GOOGLE FONTS ===============*/
@import url("css2.css");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3rem;
  --bodyscrollone: #1285ea;
  /*========== Colors ==========*/
  --hue: 174;
  --sat: 63%;
  --first-color: #e4ae0c;
  --first-color-alt: hsl(var(--hue), var(--sat), 36%);
  --title-color: #fff;
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;
  --tiny-font-size: .625rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1.2rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus{
  outline: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  width: 100%;
  max-width: 3000px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  overflow-x: hidden;
}

body::-webkit-scrollbar{width:11px;-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,.1);background: var(--bodyscrollone);}
body::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px transparent;border-radius:10px;}
body::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 5px rgb(255 255 255 / 84%);}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:active, a:focus, a:visited, a:link{
  outline: 0;
  border: none;
  -moz-outline-style: none;
}

/*img {
  max-width: 100%;
  height: auto;
}*/

/*=============== REUSABLE CSS CLASSES ===============*/

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__height {
  height: 100vh;
}

/*=============== LAYOUT ===============*/
.container {
  width: 100%;
  padding: 0;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  transition: .4s;
  padding: 0 10px;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  max-width: 3000px;
  width: 100%;
}

.nav__img {
  width: 32px;
  border-radius: 50%;
}

.nav__logo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__logo .logo{
  width: 100px; 
  margin-right: 10px;
}

.nav__logo .logoname{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-align: left;
}

.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--title-color);
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: var(--tiny-font-size);
  /* display: none;*/ /* Minimalist design, hidden labels */
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: var(--first-color) !important;
  transition: .3s;
}

/* Language */
.toggle-container{
  position: relative;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  transition: all 700ms ease-in-out;
  margin-bottom: 20px;
  margin-top: 20px;
}

.toggle-container.en-mode{
  background-color: #333;
}

.toggle-circle{
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #d0534f, #f0ad4e);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  transition: all 700ms ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-container.en-mode .toggle-circle{
  left: calc(100% - 52px);
  background: linear-gradient(to bottom right, #337ab7, #fff);
}

.flag{
  width: 32px;
  height: 32px;
  transition: transform 700ms ease-in-out;
}

.toggle-circle:hover .flag{
  transform: rotate(6deg) scale(1.1);
}

.toggle-container:hover .flag{
  transform: scale(1.05);
}

.es-flag{
  display: block;
    width: 32px;
    height: 32px;
}

.en-flag{
  display: none;
  width: 32px;
  height:32px;
}

.toggle-container.en-mode .es-flag{
  display: none;
}

.toggle-container.en-mode .en-flag{
  display: block;
}

/* Change background header */
.scroll-header {
  background-color: var(--container-color);
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}
.black{
  color: #000;
}

.nav__logo .logoname.cblack{
  color: #000;
}

/*=============== HOME ===============*/

.container__video{
  width: 100%;
  max-width: 3000px;
  height: 700px;
  min-height: 700px;
  position: relative;
  text-align: center;
  background-color: rgba(0, 0, 0, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container__video--text h1{
  font-size: 4rem;
  color: #fff;
  margin-bottom: 50px;
  padding: 0 10px;
  text-shadow: 0px 1px 4px rgba(0,0,0,0.56);
}

.container__video--text a{
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 15px 25px;
  border-radius: 50px;
  transition: .3s;
  -webkit-box-shadow: -1px 0px 10px -3px rgba(255,255,255,0.3); 
  box-shadow: -1px 0px 10px -3px rgba(255,255,255,0.3);
  text-shadow: #e0e0e0 0px 1px 0;
  transition: all 500ms ease;
}

.container__video--text a:hover{
  background-color: #e4ae0c;
  color: #000;
}

.background-clip{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*#videoblk{display: none;}*/

#video_playa{
  display: none;
}

/*=============== BOX ===============*/
.box {
  width: 100%;
  height: 50px;
  max-width: 3000px;
  background-color: #fcfaf6;
    --mask:
    radial-gradient(34.99px at 50% 48px,#000 99%,#0000 101%) calc(50% - 60px) 0/120px 100%,
    radial-gradient(34.99px at 50% -18px,#0000 99%,#000 101%) 50% 30px/120px 100% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);
  margin-top: -47px;
}

/*=============== ABOUT ===============*/
.about{
  width: 100%;
  padding: 100px 20px 130px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  background-position: center center;
  background-size: cover;
  background-color: #fcfaf6;
}

.about__contentOne, .about__contentTwo{
  width: 45%;
  text-align: center;
}

.about__contentOne .about__titles{
  margin-bottom: 20px;
}

.about__contentOne .about__titles h2{
  color: #790d67;
  font-size: 3.5rem;
  line-height: 1rem;
  font-weight: 800;
  position: relative;
  width: max-content;
  text-shadow: 0px 1px 4px rgba(0,0,0,0.56);
}

.about__comiOne{
  width: 50px;
  position: absolute;
  top: -35px;
  left: -43px;
}

.about__contentOne .about__titles h1{
  text-align: center;
  color: #000;
  font-size: 2.8rem;
  font-weight: 800;
  margin-right: 6px;
  position: relative;
  line-height: 4rem;
}

.about__contentOne .about__titles h1 span{
  color: #790d67;
}

.about__comiTwo{
  width: 50px;
  position: absolute;
  top: 25px;
  right: -43px;
}

.about__contentOne  p{
  text-align: justify;
  color: #000;
  font-size: 1.2rem;
  line-height: 2rem;
}

.ico_flor{
  width: 30px;
}

.logo_dos{
  width: 220px;
}

.lianas{
  display: block;
  width: 50%;
  margin: 20px auto 0;
}

.about__img{
  width: 700px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.about__img--two{
  display: none;
}

/*=============== FOLLOW ===============*/
.words{
  background-attachment: fixed;
  width: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('../img/flowers.jpg');
  background-size: cover;
  background-position: center center; 
  position: relative;
}

.words .words__bar{
  position: absolute;
  width: 100%;
}

.words .words__bar:nth-child(1){
  top: 0;
  left:  0;
}

.words .words__bar:nth-child(3){
  bottom: 0;
  right: 0;
}

.follow{
  padding: 200px 10px;
}

.follow h2{
  color: #fec502;
  font-size: 3.2rem;
  font-weight: 800;
  width: 100%;
  text-shadow: 0px 1px 4px rgba(0,0,0,0.56);
}

.follow h2 span{
  color: #fff;
}

.follow__links{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.follow__links a{
  text-decoration: none;
  padding: 10px;
  font-size: 2rem;
  border-radius: 20px;
  margin: 20px;
  -webkit-box-shadow: -1px 0px 10px -3px rgba(255,255,255,0.3); 
  box-shadow: -1px 0px 10px -3px rgba(255,255,255,0.3);
  text-shadow: #e0e0e0 0px 1px 0;
  transition: all 500ms ease;
}

.follow__links a:nth-child(1){
  background: #1969b4;
  color: #fff;
}

.follow__links a:nth-child(2){
  background: #048211;
  color: #fff;
}

.follow__links a:hover{
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(-2deg);
}

.follow__links--ico{
  width: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
}

/*=============== SERVICES ===============*/
.services{
  width: 100%;
  padding: 100px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  background-position: center center;
  background-size: cover;
  background-color: #fcfaf6;
}

.onlyOne h2{
  color: #000;
  font-size: 2.8rem;
  font-weight: 800;
  width: 100%;
}

.onlyOne div{
  position: relative;
}

.onlyOne div h3{
  color: #790d67;
  font-size: 2.8rem;
  font-weight: 800;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 99;
}

.onlyOne div .onlyOne_three, .onlyOne div .onlyOne_four{
    width: 100%;
    position: absolute;
}

.onlyOne div .onlyOne_three{
  width: 40px;
  position: absolute;
  top: 25px;
  left: -45px;
  z-index: 10;
}

.onlyOne div .onlyOne_four{
  width: 40px;
  position: absolute;
  top: 25px;
  right: -45px;
  z-index: 10;
}

#onlyOne__boxGallery{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  flex-grow: 1;
}

.onlyOne__boxGallery .onlyOne__boxCont{
  width: 30%;
  text-align: center;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px 10px;
  position: relative;
}

.onlyOne__boxGallery .onlyOne__boxCont .gradient{
  background-image: linear-gradient(to top, #0000008d, transparent);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.onlyOne__boxGallery .onlyOne__boxCont img{
  width: 100%;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  display: inline-block;
}

.onlyOne__boxGallery .onlyOne__boxCont h2{
  font-size: 1.2rem;
  color: #fff;
  line-height: 2.2rem;
  padding: 20px 20px 15px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.onlyOne__boxGallery .onlyOne__boxCont .moreInfo{
  position: absolute;
  margin: 5px 0 11px;
}

.onlyOne__boxGallery .onlyOne__boxCont .moreInfo button{
  background-color: rgb(255,255,255,0.7);
  padding: 20px 25px;
  color: #000;
  border-radius: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  -webkit-box-shadow: -1px 0px 10px -3px rgba(255,255,255,0.3); 
  box-shadow: -1px 0px 10px -3px rgba(255,255,255,0.3);
  transition: all 500ms ease;
  border: none; 
  cursor: pointer;
}

.onlyOne__boxGallery .onlyOne__boxCont .moreInfo button:hover{
  background-color: rgba(223, 223, 31, 0.7);
}

.cvideo_modal::-webkit-scrollbar{width:11px;-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,.1);background: var(--bodyscrollone);}
.cvideo_modal::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 5px transparent;border-radius:10px;}
.cvideo_modal::-webkit-scrollbar-thumb{border-radius:10px;-webkit-box-shadow:inset 0 0 5px rgb(255 255 255 / 84%);}


@keyframes pulse-border {
  0% {transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1); opacity: 1;}
  100% {transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);opacity: 0;}
}

@keyframes video-play-button {
  0% {-webkit-transform: scale(0.5); transform: scale(0.5);}
  100% {-webkit-transform: scale(1); transform: scale(1);}
}
@keyframes scale-up-center {
  0% {-webkit-transform: scale(0.5); transform: scale(0.5);}
  100% {-webkit-transform: scale(1); transform: scale(1);}
}

.nscroll{overflow: hidden;}

.cvideo_modal{
  display: none;
  width: 100%;
  height: 100vh;
  max-height: calc(100% - 0px);
  position: fixed;
  background: rgba(0, 0, 0, .8);
  z-index: 40000;
  top:0;
  left: 0;
  overflow-y: auto;
  animation-name: fadeIn_Container;
  animation-duration: .8s;
  overflow-x: hidden;
}

#a, #d, #f, #h, #j, #l{position: absolute; z-index: 40001; width: 100%; height: 100%;}

.video_modal{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  height: auto;
  max-height: calc(100% - 50px);
  margin: 0 auto;
  position: absolute;
  z-index: 40002;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px #000;
  animation-name: fadeIn_Container;
  animation-duration: 1s;
  text-align: right;
  padding: 10px 10px;
}

.video_modal-cancel{
  cursor: pointer;
  border-radius: 100%;
  padding: 6px 13px;
  font-weight: 700;
  background-color: #c7175a;
  color: #fff;
  position: absolute;
  z-index: 3;
  top: 5px;
  right:  5px;
}

.video_modal h2{
  width: 100%;
  font-size: 1.5rem;
  color: #790d67;
  display: block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.video_modal p{
  text-align: justify;
  color: #000;
  font-size: 1.2rem;
  line-height: 2rem;
}

.video_modal p span{
  font-weight: bold;
}

@keyframes fadeIn_Modal {
  from{opacity: 0;}
  to{opacity: 1;}
}
@keyframes fadeIn_Container {
  from{opacity: 0;}
  to{opacity: 1;}
}

/*=============== FOLLOW ===============*/
.travel{
  background-attachment: fixed;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 130px 0 100px ;
  background-image: linear-gradient(to right, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url('../img/papanoa.webp');
  background-size: cover;
  background-position: center center; 
  position: relative;
  z-index: 1;
}

.travel .travel__bar{
  position: absolute;
  width: 100%;
  top: 0;
}

.travel__sections{
    width: 40%;
    padding: 60px 40px 40px 40px;
    background-color: rgba(221, 206, 44, 0.88);
    border-radius: 100px 0 100px 0;
    margin-left: 200px;
  }

  .travel_icon{
    width: 50px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -7px;
  }

  .travel__sections h2{
    color: #4276cb;
    font-size: 2rem;
    text-align: left;
    font-weight: 700;
  }

  .travel__sections h3{
    color: #1b1d1c;
    font-size: 2.8rem;
    text-align: left;
    margin-top: -10px;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.1);
  }

  .travel__sections p{
    text-align: left;
    color: #000;
    padding: 40px 0;
    font-size: 1.2rem;
    line-height: 2rem;
    margin-top: -20px;
  }

  .travel__sections p span{
    color: #a91149;
    font-weight: bold;
  }

.travel__sections a{
  text-decoration: none;
  background-color: #048211;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  border-radius: 20px;
  transition: all .3s ease-in;
  font-size: 1.2rem;
}

.travel__sections a:hover{
  background-color: #0b9a19;
}

.travel__sections a .travel_ico{
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
}

/*=============== COURSES===============*/

.courses{
  width: 100%;
  padding: 80px 0 60px 0;
  position: relative;
  background-color: #fff;
}

.courses__bar{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.courses .courses__title{
  position: relative;
  width: 100%;
  width: max-content;
  margin: 0 auto;
}

.courses .courses__title h3{
  color: #790d67;
  font-size: 2.8rem;
  font-weight: 800;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 99;
}

.courses .courses__title .onlyOne_three, .courses .courses__title .onlyOne_four{
    width: 100%;
    position: absolute;
}

.courses .courses__title .onlyOne_three{
  width: 40px;
  position: absolute;
  top: 15px;
  left: -45px;
  z-index: 10;
}

.courses .courses__title .onlyOne_four{
  width: 40px;
  position: absolute;
  top: 15px;
  right: -45px;
  z-index: 10;
}

.courses__containerbox{
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -20px;
}

.courses__box{
  margin: 20px 20px;
  width: 44%;
  background-color: #f8f6f6;
  border-radius: 10px;
  position: relative;
}

.courses__box-status, .courses__box-statusTwo{
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0d981b;
  color: #fff;
  font-weight: 700;
  padding: 8px 20px;
  z-index: 9;
  border-radius: 0px 18px 18px 0px;
}

.courses__box-statusTwo{
  background-color: #c21f06;
}

.courses__box img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: relative;
  object-position: top;
}

.courses__box-sesions{
  background-color: #790d67;
  width: max-content;
  color: #fff;
  font-weight: 700;
  padding: 5px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: -25px;
  font-size: 1.2rem;
}

.courses__box h3, .courses__box p{
  margin-top: 15px;
  color: #000;
  font-size: 1.2rem;
  line-height: 2rem;
}

.courses__box h3{
  width: 90%;
  /*position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%,-50%);*/
  position: relative;
  margin: 0 auto;
}

/*.courses__box p{
  margin-top: 55px;
}*/

.courses__box p br{
  display: none;
}

.courses__box p span{
  color: #d35b11;
  font-weight: 700;
  
}

.courses__box a, .courses__box button{
  color: #fff;
  width: 40%;
  padding: 10px;
  margin: 0px 5px;
  margin-top: 15px;
  background-color: #068513;
  transition: all .3s ease-in;
    font-size: 1.2rem;
  line-height: 2rem;
  display: inline-block;
}

.courses__box button{
  background-color: #1866aa;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all .3s ease-in;
}

.courses__box button:hover{
  background-color: #1285ea;
  transition: all .3s ease-in;
}

.courses__box a img, .courses__box button img{
  width: 28px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.courses__box a:hover{
  background-color: #2ca037;
  transition: all .3s ease-in;
}

#n, #p, #r, #t{position: absolute; z-index: 40001; width: 100%; height: 100%;}

.box-two {
  width: 100%;
  height: 50px;
  max-width: 3000px;
  background-color: #fcfaf6;
    --mask:
    radial-gradient(36.15px at 50% calc(100% - 49.6px),#000 99%,#0000 101%) calc(50% - 62px) 0/124px 100%,
    radial-gradient(36.15px at 50% calc(100% + 18.6px),#0000 99%,#000 101%) 50% calc(100% - 31px)/124px 100% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);
          margin-top: 0px;
}

/*=============== FOOTER ===============*/

  footer{
    width: 100%;
    position: relative;
    padding: 50px 20px 30px;
    background-color: #482f05;
  }

  footer .footer_div{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

    footer p{
      width: 100%;
      font-size: 1.2rem;
      color: #fff;
      font-weight: 700; 
    }

/*=============== ERROR ===============*/
.error{width: 100%; height: 100vh; text-align: center; margin: 0 auto; background-image: url("../img/erro.jpg"); background-size: cover; background-position: bottom;}
.error div{width: 100%; height: 100vh; display: flex; flex-wrap: wrap; justify-content: center; align-content: center; background: rgba(0, 0, 0, .5);}
.error div h1, .error div h2{ width: 100%; padding: 10px; font-size: 1.7rem;}
.error div h1{color: #fff;}
.error div h2{color: #fff;}
.error div a{background: #e4ae0c; padding: 20px; margin-top: 20px; border-radius: 18px; color: #000; font-size: 1.2rem; font-weight: 700; transition: all .3s ease-in;}
.error div a:hover{background: #0b9a19; transition: all .3s ease-in;}

/*=============== PRELOADER ===============*/
.preloader{
  width: 100%;
  height: 100%;
  background: #ffeeda;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.preloader_logo{
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.spiner{
  width: 80px;
  height: 80px;
  border-top: 5px solid #482f05;
  border-right: 5px solid #482f05;
  border-radius: 50px;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 99999;
  padding: 30px;
}
.spiner > div{
  box-sizing: border-box;
  margin: auto;
  width: 100%;
  height: 100%;
  animation: spin 1s linear infinite;
}
@keyframes spin{
  100%{
    transform: rotate(360deg);
  }
}

.icoWhats{
  width: max-content;
}

.icoWhats a{
  border-radius: 100%;
  background-color: #13a822;
  padding: 2px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in;
}

.icoWhats a:hover{
  background-color: #068513;
  transition: all .3s ease-in;
}

.icoWhats a img{
  width: 40px;
  height: 40px;
}
