*{
  padding: 0;
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

:root{
  --color-primary: #fc0067;
  --color-primary-bold: #cc1d51;
  --color-secondary: #4ec8d3;
  --blue-primary: #0153cc;
}


@font-face {
  font-family: 'SST';
  src: url('../font/sst/SST\ Light.ttf');
}
@font-face {
  font-family: 'SST bold';
  src: url('../font/sst/SST\ Bold.ttf');
}
@font-face {
  font-family: 'SST medium';
  src: url('../font/sst/SST\ Medium.ttf');
}
@font-face {
  font-family: 'SST light';
  src: url('../font/sst/SST\ Light.ttf');
}
@font-face {
  font-family: 'SST typywriter';
  src: url('../font/sstype/SST\ Typewriter.ttf');
}
@font-face {
  font-family: 'SST typywriter bold';
  src: url('../font/sstype/SST\ Typewriter\ Bold.ttf');
}


a{text-decoration: none;}
li{list-style-type: none;}

.navbar-area .container{
  max-width: 1400px !important;
}

.container{
  width:100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a.icon-mobile{
  display: none;
}

/* Menu top and bottom */
header {
  margin-top: 55px;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 97;
  -webkit-box-shadow: 0px 4px 8px -4px rgba(150,150,150,1);
  -moz-box-shadow: 0px 4px 8px -4px rgba(150,150,150,1);
  box-shadow: 0px 4px 8px -4px rgba(150,150,150,1);
}
/* header.active {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 97;
  transition: transform 0.3s ease;
  animation: fixedHeader 0.3s linear; 
  -webkit-box-shadow: 0px 4px 8px -4px rgba(150,150,150,1);
  -moz-box-shadow: 0px 4px 8px -4px rgba(150,150,150,1);
  box-shadow: 0px 4px 8px -4px rgba(150,150,150,1);
}

@keyframes fixedHeader {
  0%{
      transform: translateY(-100%);
  }
  100% {
      transform: translateY(0%);
  }
} */


header .menu_top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 24px;
}
header .menu_top img{
  cursor: pointer;
}
header .menu_top .menu_top-logos{
  display: flex;
  gap: 21px;
  align-items: center;
}
header .menu_top .menu_top-logos img.sds{
  width: 100%;
  max-width: 270px;
}
header .menu_top .menu_top-logos img.boston{
  max-width: 160px;
  width: 100%;
}
header .menu_top .menu_top-desktop ul{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 21px;
}
header .menu_top .menu_top-desktop ul li a{
  font-size: 20px;
  font-family: 'SST bold';
  color: rgb(76, 184, 210);
  font-weight: bold;
  line-height: 0.959;

}

header .menu_top .menu_top-desktop ul li a.active{
  color: #023970;
}
header .menu_top .menu_top-desktop ul li a:hover{
  color: #023970;
}
header .menu_top .menu_top-desktop ul li img{
  max-width: 28px;
}
header .menu_top .menu_top-social{
  display: flex;
  gap: 4px
}
header .menu_top .menu_top-social a img{
  width: 100%;
  max-width: 34px;
}



@media (max-width:980px){
  header .menu_top .menu_top-desktop,
  header .menu_top .menu_top-social{
    display: none;
  }
  a.icon-mobile{
    display: block;
  }
  header .menu_top .menu_top-logos img.sds,
  header .menu_top .menu_top-logos img.boston{
    max-width: 180px;
  }

  header .menu_top .menu_top-logos{
    flex-direction: row-reverse;
  }
}




/* Menu bottom */

.menu_bottom{
  padding: 10px 0;
  background: #fc0067;
} 
.menu_bottom .menu_bottom-logo img{
  width: 100%;
  max-width: 250px;
}
.menu_bottom .menu_bottom-desktop{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu_bottom .menu_bottom-desktop ul{
  display: flex;
  align-items: center;
  gap: 21px;
  width: 100%;
  justify-content: end;
}
.menu_bottom .menu_bottom-desktop ul li{
  position: relative;
  text-align: center;
}
.menu_bottom .menu_bottom-desktop ul li:last-child img{
  width: 100%;
  max-width: 120px;
}

.menu_bottom .menu_bottom-desktop ul li a {
  font-size: 18px;
  font-family: 'SST bold';
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.328;
}
.menu_bottom .menu_bottom-desktop ul li a:hover{
  color: #fff;
}

@media (max-width:980px){
  
  .menu_bottom .menu_bottom-desktop ul{
    display: none;
  }
}

@media (max-width:600px){
  .menu_bottom .menu_bottom-logo img{
    max-width: 120px;
  }
}

section.refer{
  padding: 64px 0;
}

section.refer h3{
  font-size: 24px;
  font-family: "SST";
  font-weight: bold;
  color: rgb(2, 57, 112);
  line-height: 1.073;
  margin: 0 0 24px;
}

section.refer p{
  font-size: 14px;
  font-family: "SST";
  color: rgb(136, 136, 136);
  line-height: 1.238;
  text-align: left;
  margin: 0 0 10px;
}

section.refer p a{
  word-break: break-all;
}


.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* menu mobiel */

/* menu mobile */
.canvas-menu {
  background: #fff;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 90px 20px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  max-width:450px;
  z-index: 99;
  box-shadow: -4px 0px 20px rgba(41, 35, 33, 1);
  transform: translateX(-450px);
  transition: all 0.3s ease-in-out;
}
.canvas-menu .menu__mobile-logo{
  text-align: center;
  margin: 0 0 24px;
}
.canvas-menu.open {transform: translateX(0);}
.canvas-menu .btn-close {
  background: var(--color-primary);
  box-sizing: content-box;
  position: absolute;
  padding: 10px;
  color: #fff;
  border: 0;
  border-radius: 0;
  right: 0;
  top: 54px;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  cursor: pointer;
  display: flex;
    align-items: center;
    justify-content: center;
}
.canvas-menu .btn-close:focus {
  outline: none;
  box-shadow: none;
}
.canvas-menu nav ul{
  display:flex;
  flex-direction: column;
  gap: 16px;
}
.canvas-menu nav ul li a{
  color: #000;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "SST bold";
  line-height: 1.328;
}
.canvas-menu nav ul li a:hover{
  color: var(--color-primary);
}



.btn-menu-mobol{
    border: none;
    background: transparent;
    color: white;
    display: none;
}

#menu-vsa .overlay{
  display: none;
  transition: opacity 0.3s, transform 0.3s;
  transform-origin: right;
}
.overlay{
  position: fixed;
  width: 300px;
  right: 0;
  left: auto;
}

 .overlay .content{
  margin-top: 80px;
  padding: 25px;
}
.overlay .content .close-menu{
  text-align: right;
}
.overlay .content .close-menu .close{
  border: none;
  background: transparent;
  color: white;
}

@media (max-width: 768px){
  .menu_bottom-logo{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .menu_bottom{
    margin-top: 0 !important;
  }

  .btn-menu-mobol{
    display: block;
  }
  .news-vsa{
    gap: 18px !important;
  }

  .nav-mobile{
    display: block !important;
  }

  .nav-mobile li {
    text-align: right !important;
  }
}

a.icon-mobile {
  color: white;
  display: none;
  align-items: center;
  gap: 8px;
}

.active-link {
  color: #FFF !important;
}
.active-link-rose{
  color: #fd7fb3 !important;
}



#socialLinks {
  padding: 2rem 0;
}
#socialLinks .container-fluid{
  width: 90%;
}

#socialLinks p {
  font-family: 'SST Bold';
  font-size: 1.3rem;
  line-height: 1.8rem;
  text-align: right;
  color: #4cb8d2;
  padding: 0;
  margin: 0;
}

#socialLinks ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
#socialLinks li {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
  display: inline;
}
#socialLinks li a {
  background-color: #47b8d2;
  padding: 7px 1px 5px 0;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-grid;
  color: #fff;
  font-size: 16px;
  margin: auto;
}

@media only screen and (max-width: 767px){
  .inverter-3 {
  order: 3;
}
#socialLinks p {
  padding: 0 14%;
  margin: 0;
  padding-bottom: 1rem;
  text-align: center;
}
#socialLinks ul {
  padding-bottom: 2rem;
}
#socialLinks li a {
  padding: 10px 0px 5px 0px;
  font-size: 20px;
  width: 40px;
  height: 40px;
}
}






#posts-vsa {
  background-color: #fff;
    padding-top: 48px  !important;
    

    & .second-title{
      font-family: 'SST Light';
    font-size: 2.8rem;
    line-height: 3.3rem;
    text-align: center;
    color: #4cb8d2;
    }
  & .blog-post {
    background: transparent;
    margin: 0;
    & img {
      min-height: 185px;
    }

    & .category {
      color: #8800cc;
      font-size: 12px;
      font-family: "SST Heavy" !important;
      margin-top: 26px;
    }

    & .title-post {
      color: #000000;
      font-family: "SST Heavy";
      margin-bottom: 14px !important;
    }

    & .text-preview{
      font-size: 18px;
    font-family: "SST Roman";
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #6b6b84;

    & h3{
      font-size: 18px;
      font-family: "SST Roman";
      color: #6b6b84;
    }
    }

    & .read-more-blog{
      color: #0153cc !important;
    font-family: "SST Heavy";
    text-decoration: underline;
    }
    
  }

  & .btn-mais-artigos{
    background: var(--blue-primary);
    color: #fff;
    outline: none;
    border: none;
    border-radius: 2px;
    padding: 12px 26px;
    cursor: pointer;
    font-size: 22px;
    font-family: "SST";
    color: rgb(255, 255, 255);
    line-height: 1.176;
    text-align: center;
    text-decoration: none;
    width: fit-content;
    margin: 20px 0 48px;
    font-weight: bold;
  }
}


.content-play {
  background: #f2f2f2;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  gap: 15px;
  margin-top: 20px;

  & .audio-link {
    background-color: #0153cc;
    color: white;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    & svg {
      width: 12px;
    }
  }

  & span {
    font-family: "SST Roman";
    color: #333333;
  }
}