* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

h1 > img {
  height: 60px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  section.treinamentos .container h1 i,
  h1 > img {
    display: none;
  }
}

/* Sessão global Saiba mais ---------------------------------------------------------------------------------*/
.saiba-mais {
  display: flex;
  margin-top: auto;
  align-items: center;
}

.saiba-mais h3 {
  font-size: 12pt;
}

.saiba-mais a {
  text-decoration: none;
  color: inherit;
}

.saiba-mais button {
  display: flex;
  align-items: center;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 12pt;
  margin-left: 25px;
  background-color: #0dbc67;
  border: none;
  color: #ffffff;
  box-shadow: #b6b6b628 0 0 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.saiba-mais button:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.saiba-mais button img {
  width: 25px;
  margin-right: 10px;
}

/* ////    SECTION INICIO    //// */
section.inicio .container {
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 50px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}

section.inicio .container .left_side,
section.inicio .container .right_side {
  width: 50%;
}

section.inicio .container .left_side h2 {
  color: #08502d;
  font-weight: 500;
  font-size: 20pt;
}
section.inicio .container .left_side h1 {
  color: #000000;
  font-size: 32pt;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 20px;
}

section.inicio .container .left_side p {
  color: #000000;
  text-align: justify;
  max-width: 644px;
  font-size: 12pt;
  font-weight: 300;
}

section.inicio .container .right_side {
  display: flex;
  justify-content: end;
}

section.inicio .container .right_side img {
  max-height: 100%;
}

/* ////    SECTION BOXES    -----------------------------------------------------------//// */
section.boxes_container {
  width: 100%;
  height: 100vh;
  margin: auto;
  padding: 5%;
  display: grid;
  grid-template-areas:
    'n01 n01 n02'
    'n01 n01 n05'
    'n03 n04 n05';
  gap: 20px;
  grid-template-rows: calc(53% - 20px) 10% calc(37% - 20px);
  grid-template-columns: calc(30% - 20px) calc(30% - 20px) 40%;
}

section.boxes_container .box {
  background-color: #f2f2f2;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section.boxes_container .box img {
  width: auto;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  mask-image: linear-gradient(to left, rgb(0, 0, 0), rgb(0, 0, 0), rgba(255, 255, 255, 0) 100%);
}

section.boxes_container .box :is(h2, p, span) {
  position: relative;
  z-index: 1;
}

section.boxes_container .box p {
  font-size: 11pt;
  font-weight: 400;
  max-width: 70%;
}

section.boxes_container .box.n01 {
  grid-area: n01;
}

section.boxes_container .box.n01 .title {
  width: 350px;
}

section.boxes_container .box.n01 .title :is(h2, .and) {
  font-size: 28pt;
  font-weight: 500;
}

section.boxes_container .box.n01 h2 {
  width: fit-content;
  font-size: 28pt;
  font-weight: 500;
  box-shadow: inset 0 -20px 0 0 #4dd493;
  padding: 0 5px;
}

section.boxes_container .box.n02 {
  grid-area: n02;
  color: #ffffff;
}

section.boxes_container .box.n02 h2 {
  width: 250px;
}

section.boxes_container .box.n02 p {
  font-weight: 300;
}

section.boxes_container .box.n03 {
  grid-area: n03;
  padding: 15px;
}

section.boxes_container .box.n03 h2 {
  font-size: 15pt;
}

section.boxes_container .box.n03 p {
  width: 180px;
}

section.boxes_container .box.n04 {
  grid-area: n04;
  padding: 15px;
}

section.boxes_container .box.n04 h2 {
  font-size: 15pt;
}

/* section.boxes_container .box.n04 p {width: 180px;} */

section.boxes_container .box.n05 {
  grid-area: n05;
  padding-bottom: 15px;
}

section.boxes_container .box.n05 h2 {
  font-size: 18pt;
}

/* Sessão treinamentos e capacitações -----------------------------------------------------------------------------------------------*/

section.treinamentos {
  background-color: #f4f4f4;
}

section.treinamentos .container {
  padding: 5%;
  padding-right: 0;
}

section.treinamentos .container h1 {
  color: #000000;
  font-size: 20pt;
  font-weight: 400;
  padding: 0 10px;
  width: fit-content;
  box-shadow: inset 0 -20px 0 0 #4dd493;
  margin-bottom: 50px;
}

section.treinamentos .container .container-flex {
  display: flex;
  align-items: center;
}

section.treinamentos .container .container-flex .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: #69696997 0 0 50px;
  width: 60%;
  min-height: 50vh;
}

section.treinamentos .container .container-flex .box h2 {
  font-size: 14pt;
  padding: 0 5px;
  width: fit-content;
  box-shadow: inset 0 -10px 0 0 #4dd493;
}

section.treinamentos .container .container-flex .box ul {
  list-style-position: inside;
  padding-top: 40px;
}

section.treinamentos .container .container-flex .box ul li {
  font-size: 12pt;
  padding: 0 5px;
}

section.treinamentos .container .container-flex .swiper {
  width: 40%;
  /* height: auto; */
  min-height: 50vh;
  overflow: hidden;
  margin: 60px 0;
  display: flex;
  align-items: center;
}

section.treinamentos .container .container-flex .swiper-slide {
  opacity: 0.5;
}

section.treinamentos .container .container-flex .swiper-slide-active {
  opacity: 1;
}

section.treinamentos .container .container-flex .swiper-slide img {
  /* width: 85%; */
  width: 90%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 14/9;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: flex;
  margin: 0 auto;
}

/* Sessão Bombeiro ---------------------------------------------------------------*/

section.bombeiro {
  display: flex;
  justify-content: end;
  padding-top: 100px;
  padding-bottom: 100px;
}

section.bombeiro .container {
  display: flex;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  width: 90%;
  border-radius: 20px 0 0 20px;
  box-shadow: #69696997 0 0 50px;
  position: relative;
  overflow: hidden;
}

section.bombeiro .container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

section.bombeiro .container .info-bombeiro {
  color: #ffffff;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

section.bombeiro .container img {
  height: 100%;
}

section.bombeiro .container .info-bombeiro h1 {
  font-size: 20pt;
  font-weight: 500;
  margin-bottom: 30px;
  display: flex;
}

section.bombeiro .container .info-bombeiro h1 i {
  margin-right: 10px;
}

section.bombeiro .container .info-bombeiro p {
  margin-bottom: 20px;
  /* text-align: justify; */
  font-size: 12pt;
  font-weight: 300;
}

section.bombeiro .container .info-bombeiro ul {
  padding-left: 50px;
}
section.bombeiro .container .info-bombeiro ul li {
  font-size: 12pt;
  font-weight: 300;
}

section.bombeiro .container .info-bombeiro .saiba-mais h3 {
  font-size: 12pt;
  font-weight: 300;
}

section.bombeiro .container .info-bombeiro .saiba-mais button {
  background-color: red;
  cursor: pointer;
  font-size: 12pt;
}

section.bombeiro .container .info-bombeiro .saiba-mais button img {
  width: 25px;
  margin-right: 10px;
}

/* Sessão maquinas e equipamentos -------------------------------------------------*/

section.maquinas {
  padding: 5%;
}

section.maquinas h1 {
  display: flex;
  color: #000000;
  font-size: 20pt;
  font-weight: 400;
  padding: 0 5px;
  width: fit-content;
  box-shadow: inset 0 -15px 0 0 #4dd493;
  margin-bottom: 60px;
  padding-right: 10px;
}

section.maquinas h1 img {
  width: 40px;
  height: auto;
  object-fit: cover;
}

section.maquinas .container {
  justify-content: center;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-areas:
    'n1 n2 n3'
    'n4 n5 n6'
    'n7 n7 n7';
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
}

section.maquinas .container .card.n01 {
  grid-area: n1;
}

section.maquinas .container .card.n02 {
  grid-area: n2;
}

section.maquinas .container .card.n03 {
  grid-area: n3;
}

section.maquinas .container .card.n04 {
  grid-area: n4;
}

section.maquinas .container .card.n05 {
  grid-area: n5;
}

section.maquinas .container .card.n06 {
  grid-area: n5;
}

section.maquinas .container .card-outros {
  grid-area: n7;
  display: flex;
  align-items: center;
  height: 120px;
}

section.maquinas .container .card,
section.maquinas .container .card-outros {
  border-radius: 15px;
  background: #f2f2f2;
  box-shadow: #b6b6b697 0 0 50px;
}

section.maquinas .container .card {
  display: flex;
  flex-direction: column;
}

section.maquinas .container .card img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  object-fit: cover;
}

section.maquinas .container .card h2 {
  font-size: 14pt;
  text-align: center;
  padding: 25px 5px;
}

section.maquinas .container .card p {
  margin-top: auto;
  margin-bottom: 50px;
  font-size: 12pt;
  text-align: center;
  padding: 20px;
}

section.maquinas .container .card-outros h2 {
  font-size: 14pt;
  margin-left: 50px;
}

section.maquinas .container .card-outros .saiba-mais {
  margin-bottom: auto;
  margin-left: auto;
  margin-right: 50px;
}

/* Sessão de transito e transporte ------------------------------------------------- */

section.transporte {
  padding: 5%;
}

section.transporte .titulos_info {
  display: flex;
  justify-content: center;
  align-items: center;
}

section.transporte .titulos_info h1 {
  display: flex;
  color: #000000;
  font-size: 20pt;
  font-weight: 400;
  padding: 0 5px;
  width: fit-content;
  box-shadow: inset 0 -15px 0 0 #4dd493;
  padding-right: 10px;
}

section.transporte .titulos_info h1 img {
  width: 40px;
  height: auto;
  object-fit: cover;
  margin-bottom: 5px;
  margin-top: -5px;
}

section.transporte .titulos_info .info-credenciado {
  background: #00984e;
  margin-left: auto;
  padding: 20px;
  max-width: 400px;
  color: #ffffff;
  border-radius: 15px;
}

section.transporte .titulos_info .info-credenciado p {
  text-align: justify;
  font-size: 12pt;
  font-weight: 300;
}

section.transporte .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.transporte .container .card {
  display: flex;
  height: 200px;
  width: 80vw;
  margin-top: 50px;
  border-radius: 15px;
  background: #f2f2f2;
  box-shadow: #b6b6b6a6 0 0 20px;
}

section.transporte .container .card img {
  height: 100%;
  border-radius: 15px 0 0 15px;
  /* border-right: 30px solid #0DBC67; */
}

section.transporte .container .card .info-card {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
}

section.transporte .container .card .info-card h2 {
  margin-top: 10px;
  font-size: 14pt;
  font-weight: 500;
  border-left: 5px solid #0dbc67;
  padding-left: 10px;
  margin-left: -10px;
}

section.transporte .container .card .info-card p {
  text-align: justify;
  margin-top: auto;
  font-size: 12pt;
  margin-bottom: 10px;
}

section.transporte .container .saiba-mais {
  justify-content: end;
  margin-top: 40px;
  margin-left: auto;
  margin-right: 50px;
}

/* Sessão EJA ----------------------------------------------------------------------------*/

section.eja {
  padding: 5%;
  position: relative;
}

section.eja .fd_img {
  width: 220px;
  z-index: -1;
}

section.eja .fd_img.img01 {
  position: absolute;
  left: 75%;
  transform: translateY(-50%);
  top: 20%;
}

section.eja .fd_img.img02 {
  position: absolute;
  left: 25%;
  transform: translateY(-50%);
  top: 80%;
}

section.eja h1 {
  display: flex;
  color: #000000;
  font-size: 20pt;
  font-weight: 400;
  padding: 0 5px;
  width: fit-content;
  box-shadow: inset 0 -15px 0 0 #4dd493;
  margin-bottom: 70px;
  padding-right: 10px;
}

section.eja h1 img {
  width: 40px;
  height: auto;
  object-fit: cover;
}

section.eja .container {
  display: flex;
  margin: 50px auto;
  height: 500px;
  width: 80vw;
  border-radius: 20px;

  background-color: #efefef56;
  border: 1px solid #e4e4e4;
  box-shadow: #adadad48 15px 15px 28px;
  backdrop-filter: blur(15px);
}

section.eja .container .img_container {
  background-color: #0dc76d;
  /* background-color: #c6c6c634; */
  border-radius: 20px 0 0 20px;
  /* backdrop-filter: blur(50px); */
}

section.eja .container .img_container img {
  height: 100%;
  border-radius: 15px 0 0 15px;
  /* mask-image: linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0), rgba(255, 255, 255, 0) 100%); */
}

section.eja .container .info-eja {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 30px;
  position: relative;
}

section.eja .container .info-eja h2 {
  font-size: 14pt;
  margin-bottom: 5px;
  margin-top: 20px;
  font-weight: 500;
  border-left: 5px solid #0dbc67;
  padding-left: 10px;
  margin-left: -10px;
}

section.eja .container .info-eja p {
  font-size: 12pt;
}

section.eja .container .info-eja .saiba-mais {
  margin-top: 10%;
  margin-bottom: 10px;
}

section.eja .container .info-eja .saiba-mais {
  justify-content: end;
}

section.eja .container .info-eja > img {
  height: 70px;
  width: fit-content;
  position: absolute;
  bottom: 30px;
}

/* Sessão Plataforma ead de ensino ------------------------------------------------------------------------------------------------- */

section.ead {
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.ead .container {
  display: flex;
}

section.ead .container > img {
  height: 65vh;
  margin-right: 100px;
}

section.ead .container .info-ead {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.ead .container .info-ead h1 {
  color: #000000;
  font-size: 20pt;
  width: fit-content;
  margin-bottom: 2vh;
  box-shadow: inset 0 -15px 0 0 #4dd493;
  padding: 0 10px;
}

section.ead .container .info-ead h1 span {
  color: #00582d;
  font-weight: 600;
}

section.ead .container .info-ead p {
  margin-bottom: 4vh;
  font-size: 15pt;
  font-weight: 400;
}

section.ead .container .info-ead p span {
  color: #00582d;
  font-size: 25pt;
  font-weight: 500;
}

section.ead .container .info-ead .ead-selos {
  display: flex;
  gap: 15px;
}

section.ead .container .info-ead .ead-selos > img {
  height: 150px;
}

section.ead .botoes {
  padding: 3%;
}

/* Sessão de Copetencia Aferição ------------------------------------------------------------------------------------*/

section.competencia {
  padding: 5%;
}

section.competencia .cabecalho-copetencia {
  display: flex;
  background-color: #f2f2f2;
  /* background-color: #0DBC67; */
  width: 80vw;
  max-width: 1200px;
  height: 230px;
  color: #000000;
  /* color: #ffffff; */
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

section.competencia .cabecalho-copetencia .image-container {
  position: relative;
  border-radius: 30px 0 0 30px;
  margin-right: 15px;
  overflow: hidden;
}

section.competencia .cabecalho-copetencia .image-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to left, #f2f2f2, rgba(13, 188, 103, 0));
  /* background: linear-gradient(to left, rgba(13, 188, 103, 1), rgba(13, 188, 103, 0)); */
  z-index: 1;
  border-radius: 30px 0 0 30px;
}

section.competencia .cabecalho-copetencia img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px 0 0 30px;
  position: relative;
  z-index: 0;
}

section.competencia .cabecalho-copetencia .titulo {
  padding: 20px;
  padding-left: 0;
}

section.competencia .cabecalho-copetencia .titulo h1 {
  display: flex;
  align-items: center;
  font-size: 20pt;
  width: fit-content;
  margin-top: 5px;
  margin-bottom: 5px;
  box-shadow: inset 0 -15px 0 0 #4dd493;
  padding: 0 10px;
}

section.competencia .cabecalho-copetencia .titulo p {
  margin-top: 20px;
  font-size: 12pt;
}

section.competencia .container {
  margin-top: -70px;
  /* margin-left: 12vw; */
  margin-left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

section.competencia .container .box_cards {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

section.competencia .container .box_cards .card {
  padding: 30px;
  width: 300px;
  border-radius: 15px;
  background-color: #efefef56;
  border: 1px solid #e4e4e4;
  box-shadow: #adadad48 15px 15px 28px;
  backdrop-filter: blur(15px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

/* section.competencia .container .box_cards .card:after {
    content: '';
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
} */

section.competencia .container .box_cards .card:hover {
  transform: scale(1.1);
  z-index: 10;
}

section.competencia .container .box_cards .card:hover::after {
  opacity: 1;
}

section.competencia .container .box_cards .card span {
  color: #00582d;
  font-weight: 600;
}

section.competencia .container .box_cards .card h3 {
  color: #00582d;
  font-weight: 500;
  font-size: 18pt;
  margin-top: 15px;
  margin-bottom: 15px;
}

section.competencia .container .box_cards .card ul {
  padding-left: 15%;
  margin-bottom: 5vh;
  font-size: 12pt;
}

section.competencia .container .box_cards .card p {
  font-size: 12pt;
}

section.competencia .container .saiba-mais {
  justify-content: end;
  margin-right: 10%;
  margin-top: 5vh;
}

/* Sessão de graduação ------------------------------------------------------------------------------------*/

section.graduacao {
  padding: 5%;
}

section.graduacao .titulos_info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

section.graduacao .titulos_info h1 {
  display: flex;
  color: #000000;
  font-size: 20pt;
  font-weight: 400;
  padding: 0 5px;
  width: fit-content;
  box-shadow: inset 0 -15px 0 0 #4dd493;
  margin-bottom: 50px;
  padding-right: 10px;
}

section.graduacao .titulos_info h1 img {
  width: 40px;
  height: auto;
}

section.graduacao .titulos_info .info-credenciado {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-left: auto;
  padding: 20px;
  max-width: 450px;
  color: #000000;
  border-radius: 15px;
  justify-content: center;
  margin-top: -30px;
  margin-right: -30px;

  background-color: #efefef56;
  border: 1px solid #e4e4e4;
  box-shadow: #adadad48 15px 15px 28px;
  backdrop-filter: blur(15px);
}

section.graduacao .titulos_info .info-credenciado img {
  height: 50px;
  width: fit-content;
  position: absolute;
  right: 15px;
  bottom: 15px;
}

section.graduacao .titulos_info .info-credenciado p {
  text-align: justify;
  font-size: 10pt;
  font-weight: 500;
}

section.graduacao .titulos_info .info-credenciado ul {
  padding: 10px;
}

section.graduacao .titulos_info .info-credenciado ul li {
  margin-left: 20px;
  font-size: 10pt;
  font-weight: 300;
}

section.graduacao .container {
  display: flex;
  margin: 10px auto;
  background-color: #f2f2f2;
  border-radius: 20px;
  width: 1200px;
  height: auto;
  border: 1px solid #e4e4e4;
  box-shadow: #adadad48 15px 15px 28px;
  align-items: end;
}

section.graduacao .left_side_img {
  height: 100%;
  max-height: 530px;
  margin: 0 50px;
}

section.graduacao .right_side {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
}

section.graduacao .right_side h2 {
  font-size: 18pt;
  font-weight: 300;
  border-bottom: solid 5px #00582d;
}

section.graduacao .right_side p {
  font-size: 12pt;
  font-weight: 600;
}

section.graduacao .right_side .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 5px;
}

section.graduacao .right_side .logos img {
  height: 100px;
  margin: 10px;
}

/* Sessão Plataforma Gestão e qualidade  ------------------------------------------------------- */

section.gestao {
  padding: 5%;
  position: relative;
  overflow-x: hidden;
}

section.gestao .fd_img {
  width: 220px;
  z-index: -1;
}

section.gestao .fd_img.img01 {
  position: absolute;
  left: 80%;
  transform: translateY(-50%);
  top: 20%;
}

section.gestao .fd_img.img02 {
  position: absolute;
  left: 5%;
  transform: translateY(-50%);
  top: 65%;
}

section.gestao .container {
  display: flex;
  justify-content: center;
  margin: 10px auto;
  padding: 25px;
  height: 600px;
  max-width: 1150px;
  border-radius: 20px;

  background-color: #efefef56;
  border: 1px solid #e4e4e4;
  box-shadow: #adadad48 15px 15px 28px;
  backdrop-filter: blur(15px);
}

section.gestao .container .left_side {
  display: flex;
  flex-direction: column;
}

section.gestao .container .left_side h1 {
  color: #000000;
  font-size: 30pt;
  text-transform: uppercase;
  font-weight: 400;
  width: fit-content;
  margin-bottom: 20px;
  margin-top: 40px;
}

section.gestao .container .left_side p {
  color: #000000;
  font-size: 16pt;
  text-transform: uppercase;
  font-weight: 300;
  width: fit-content;
}

section.gestao .container .left_side h1 span {
  color: #00582d;
}

section.gestao .container .left_side .saiba-mais {
  margin-top: auto;
  margin-bottom: 30px;
}

section.gestao .container .barra {
  border-radius: 10px;
  width: 20px;
  height: 100%;
  background-color: #0dbc67;
  transform: rotate(-22deg); /* Gira a barra em graus */
  transform-origin: center; /* Ponto de origem da rotação */
  position: relative;
  margin: 5px;
}

section.gestao .container .right_side {
  display: flex;
  position: relative;
  align-items: center;
}

section.gestao .container .right_side ul {
  white-space: nowrap;
}

section.gestao .container .right_side ul li {
  margin-left: calc(15px * var(--i)); /* Aumenta a margem esquerda progressivamente */
  margin-bottom: 10px;
  margin-top: 5px;
  font-size: 12pt;
  font-weight: 300;
}

section.gestao .container .right_side ul li:nth-child(1) {
  --i: 0;
}
section.gestao .container .right_side ul li:nth-child(2) {
  --i: 1;
}
section.gestao .container .right_side ul li:nth-child(3) {
  --i: 2;
}
section.gestao .container .right_side ul li:nth-child(4) {
  --i: 3;
}
section.gestao .container .right_side ul li:nth-child(5) {
  --i: 4;
}
section.gestao .container .right_side ul li:nth-child(6) {
  --i: 5;
}
section.gestao .container .right_side ul li:nth-child(7) {
  --i: 6;
}
section.gestao .container .right_side ul li:nth-child(8) {
  --i: 7;
}
section.gestao .container .right_side ul li:nth-child(9) {
  --i: 8;
}
section.gestao .container .right_side ul li:nth-child(10) {
  --i: 9;
}
section.gestao .container .right_side ul li:nth-child(11) {
  --i: 10;
}
section.gestao .container .right_side ul li:nth-child(12) {
  --i: 11;
}
section.gestao .container .right_side ul li:nth-child(13) {
  --i: 12;
}

/* Sessão baixe o portfolio  -------------------------------------------------------------------------- */

section.portifolio {
  padding: 5%;
  display: flex;
  justify-content: center;
}

section.portifolio .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50vw;
  height: 60vh;
  border-radius: 15px;
  background-color: #efefef56;
  border: 1px solid #e4e4e4;
  box-shadow: #adadad48 15px 15px 28px;
  backdrop-filter: blur(15px);
}

section.portifolio .container h1 {
  color: #000000;
  font-size: 20pt;
  font-weight: 400;
  padding: 0 5px;
  width: fit-content;
  box-shadow: inset 0 -15px 0 0 #4dd493;
  margin-bottom: 50px;
}

section.portifolio .container a {
  text-decoration: none;
}

section.portifolio .container button {
  padding: 10px 40px;
  border-radius: 30px;
  font-size: 14pt;
  background-color: #0dbc67;
  border: none;
  color: #ffffff;
  box-shadow: #b6b6b628 0 0 10px;
  margin-left: 0;
}

/* ////    CONTATOS    //// */
section.contatos_gerais {
  display: flex;
  padding: 50px;
  padding-top: 150px;
}

section.contatos_gerais .title {
  font-size: 25pt;
  font-weight: 500;
}

section.contatos_gerais .box_imgs_cont {
  position: relative;
}

section.contatos_gerais .box_imgs_cont .imgcontatos {
  height: 364px;
  width: 364px;
  position: absolute;
  top: 151px;
  left: 151px;
}

section.contatos_gerais .box_imgs_cont .imgmask {
  height: 444px;
  width: 444px;
  mask-image: url('/assets/images/home/mask.webp');
  mask-size: 444px;
  mask-repeat: no-repeat;
}

section.contatos_gerais .contatos_info {
  padding-left: 38px;
  padding-top: 20px;
}

section.contatos_gerais .contatos_info .contatos_infoEsp {
  margin-bottom: 30px;
  margin-top: 30px;
  position: relative;
}

section.contatos_gerais .contatos_info .contatos_infoEsp h2 {
  width: fit-content;
  padding: 0 5px;
  margin-left: -5px;
  font-style: italic;
  font-size: 15pt;
  font-weight: 500;
  box-shadow: inset 0 -12px 0 0 #5fe7a5;
}

section.contatos_gerais .contatos_info .contatos_infoEsp h3 {
  padding-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

section.contatos_gerais .contatos_info .contatos_infoEsp img.whatsapp_button {
  width: 25px;
  height: auto;
}
