html,
body {
  width: 100%;
  height: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}
body {
  background-color: #fafcff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  overflow-x: hidden;

  @media screen and (max-width: 1400px) {
    & {
      font-size: 18px;
    }
  }
  @media screen and (max-width: 1200px) {
    & {
      font-size: 16px;
    }
  }
}

h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  color: #333333;
  margin: 0;

  @media screen and (max-width: 1400px) {
    & {
      font-size: 30px;
    }
  }
  @media screen and (max-width: 992px) {
    & {
      font-size: 20px;
    }
  }
}

.h1 {
  margin: 0;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  background: linear-gradient(90deg, #ff0025 0%, #811336 64.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  @media screen and (max-width: 1400px) {
    & {
      font-size: 30px;
    }
  }
  @media screen and (max-width: 992px) {
    & {
      font-size: 20px;
    }
  }
}

body.open {
  overflow: hidden;
}

.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}

#popup_holder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  padding: 15px;
  text-align: center;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;

  &:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  .close {
    cursor: pointer;
    position: absolute;
    color: #fff;
    top: 10px;
    right: 10px;
    z-index: 3;
  }

  a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .img {
    position: relative;
    height: 400px;
    z-index: 2;
    width: 800px;
    display: inline-block;
    max-width: 100%;

    img {
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      position: absolute;
      object-fit: cover;
    }
  }

  &.close {
    display: none !important;
  }
}

img {
  max-width: 100%;
}

.iframe_holder {
  position: relative;
  padding-bottom: 53.35%;
  padding-top: 25px;
  height: 0;
}

.iframe_holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .custom_container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .custom_container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .custom_container {
    max-width: 1099px;
  }
}

@media (min-width: 1300px) {
  .custom_container {
    max-width: 1199px;
  }
}

@media (min-width: 1400px) {
  .custom_container {
    max-width: 1299px;
  }
}

@media (min-width: 1500px) {
  .custom_container {
    max-width: 1399px;
  }
}

@media (min-width: 1600px) {
  .custom_container {
    max-width: 1499px;
  }
}

.custom_container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.btn1 {
  background: #f0f4f5;
  border-radius: 50px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #000000;
  padding: 16px 44px;
  border: none;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  &:hover {
    color: #fff;
    background: #000;
  }
  &.v2 {
    background: #2d132c;
    color: #ffffff;
    box-shadow: none;
    &:hover {
      box-shadow: 0px 57px 23px rgba(0, 0, 0, 0.01),
        0px 32px 19px rgba(0, 0, 0, 0.05), 0px 14px 14px rgba(0, 0, 0, 0.09),
        0px 4px 8px rgba(0, 0, 0, 0.1);
    }
  }
  &.v3 {
    background: linear-gradient(90deg, #ff0025 0%, #811336 100%);
    color: #fff;
    text-align: left;
    display: flex;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    &:hover {
      background: linear-gradient(90deg, #811336 0%, #ff0025 100%);
      gap: 40px;
    }
  }

  &.v4 {
    background: #ffffff;
    padding: 10px 22px;
    span {
      background: linear-gradient(90deg, #ff0025 0%, #510b32 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    &:hover {
      background: linear-gradient(90deg, #ff0025 0%, #510b32 100%);

      span {
        background: transparent;
        color: #fff;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        text-fill-color: transparent;
      }
    }
  }
  &.v5 {
    background: #ffffff;
    padding: 10px 22px;
    span {
      color: #000000;
    }
    &:hover {
      background: #000;

      span {
        background: transparent;
        color: #fff;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
        text-fill-color: transparent;
      }
    }
  }

  @media screen and (max-width: 992px) {
    & {
      font-size: 15px;
      padding: 12px 24px;
    }
  }
}
/*==================================================================================================*/
/*ANIMAÇÕES*/
/*==================================================================================================*/

.aparecer {
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.aparecer.apper {
  opacity: 1;
}

.deslizar_direita {
  right: -1500px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.deslizar_direita.apper {
  right: 0;
}

.deslizar_direita img {
  max-width: 1000px;
  width: 100%;
}

.deslizar_direita.img_big img {
  width: 80%;
  max-width: 700px;
}

.deslizar_esquerda {
  left: -1500px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.deslizar_esquerda.apper {
  left: 0;
}

.small_to_big {
  transform: scale(0);
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.small_to_big.apper {
  transform: scale(1);
}

.bottom_top_fade {
  position: relative;
  top: 100px;
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.bottom_top_fade.apper {
  top: 0;
  opacity: 1;
}

.fade_anim {
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.fade_anim.apper {
  opacity: 1;
}

/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/

.menu_holder {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 40px 0;
  width: 100%;
  z-index: 6;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  &.scroll,
  &.light2.scroll,
  &.light.scroll {
    background: #fff;
    padding: 25px 0;
    box-shadow: 0px 144px 58px rgba(0, 0, 0, 0.01),
      0px 81px 49px rgba(0, 0, 0, 0.05), 0px 36px 36px rgba(0, 0, 0, 0.09),
      0px 9px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar-header {
    float: unset;
    width: 175px;
    display: inline-block;
    img {
      max-width: 100%;
      &.dark {
        display: none;
      }
    }
  }
  .menu-toggler {
    position: absolute;
    background: transparent;
    border: 0;
    width: 42px;
    cursor: pointer;

    display: none;

    .nav-icon1 {
      width: 30px;
      height: 25px;
      position: relative;
      margin: 0 auto;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.5s ease-in-out;
      -moz-transition: 0.5s ease-in-out;
      -o-transition: 0.5s ease-in-out;
      transition: 0.5s ease-in-out;
      cursor: pointer;
      span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #fff;
        border-radius: 0;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
        &:nth-child(1) {
          top: 0px;
        }
        &:nth-child(2) {
          top: 8px;
        }
        &:nth-child(3) {
          top: 16px;
        }
      }
      &.open {
        span {
          background: #fff;
          -webkit-transition: 0.25s ease-in-out;
          -moz-transition: 0.25s ease-in-out;
          -o-transition: 0.25s ease-in-out;
          transition: 0.25s ease-in-out;
          &:nth-child(1) {
            top: 18px;
            -webkit-transform: rotate(140deg);
            -moz-transform: rotate(140deg);
            -o-transform: rotate(140deg);
            transform: rotate(140deg);
          }
          &:nth-child(2) {
            opacity: 0;
            left: -60px;
          }
          &:nth-child(3) {
            top: 18px;
            -webkit-transform: rotate(-140deg);
            -moz-transform: rotate(-140deg);
            -o-transform: rotate(-140deg);
            transform: rotate(-140deg);
          }
        }
      }
    }
  }
  .menu {
    display: inline-block;
    margin: 0;
    float: unset;
    color: #fff;
    width: Calc(100% - 181px);
    text-align: right;
    vertical-align: middle;
    .menu-toggler {
      display: none;
    }
    ul {
      padding: 0;
    }
    .menu-nav {
      list-style: none;
      margin: 0;
      .dropdown {
        display: inline-block;
        margin: 0 40px;
        cursor: pointer;
        a {
          font-weight: 400;
          font-size: 20px;
          line-height: 120%;
          color: #ffffff;
          text-decoration: none !important;

          &:after {
            content: "";
            width: 0;
            height: 2px;
            background: #fff;
            position: absolute;
            bottom: -1px;
            left: 0;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
          }
        }

        & a:hover,
        &.active > a,
        &.active:hover > a {
          &:after {
            width: 100%;
          }
        }
        &.button {
          a {
            color: #000000;
            padding: 8px 20px;
            background: #ffffff;
            border-radius: 134px;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
          }

          & a:hover,
          &.active > a,
          &.active:hover > a {
            color: #fff;
            text-decoration: none !important;
            background: linear-gradient(90deg, #ff0025 0%, #811336 100%);

            &:after {
              width: 0;
            }
          }
        }
        .dropdown-menu {
          background-color: #fff;
          cursor: default;
          text-align: left;
          color: #000;
          margin-top: 20px;
          top: 5px;
          a {
            color: #000;
          }

          a:hover,
          .dropdown.active > a,
          .dropdown.active:hover > a {
            color: #d43838;
            text-decoration: none !important;
            background-color: transparent;
          }
        }
      }
    }
  }

  &.scroll,
  &.light2,
  &.light {
    .menu-toggler {
      .nav-icon1 {
        span {
          background: #000;
        }
      }
    }
    .navbar-header {
      img {
        &.dark {
          display: inline-block;
        }
        &.light {
          display: none;
        }
      }
    }
    .menu {
      .menu-toggler {
        .nav-icon1 {
          span {
            background: #fff;
          }
        }
      }
      .menu-nav {
        .dropdown {
          a {
            color: #000;
            &:after {
              background: #000;
            }
          }
          &.button {
            a {
              color: #fff;
              background: #000000;
            }

            & a:hover,
            &.active > a,
            &.active:hover > a {
              color: #fff;
              text-decoration: none !important;
              background: linear-gradient(90deg, #ff0025 0%, #811336 100%);
              &:after {
                width: 0;
              }
            }
          }
        }
      }
    }
  }
  &.light2 {
    .navbar-header {
      img {
        &.dark {
          display: none;
        }

        &.light {
          display: inline-block;
        }
      }
    }

    .menu-toggler {
      .nav-icon1 {
        span {
          background: #fff;
        }
      }
    }
  }
  &.light2.scroll {
    .navbar-header {
      img {
        &.dark {
          display: inline-block;
        }

        &.light {
          display: none;
        }
      }
    }
  }
  @media screen and (min-width: 993px) {
    & {
      .menu {
        display: inline-block !important;
        #m1 {
          display: none;
        }
      }
    }
  }

  @media screen and (max-width: 1300px) {
    & {
      .menu {
        .menu-nav {
          .dropdown {
            margin: 0 25px;
          }
        }
      }
    }
  }
  @media screen and (max-width: 1200px) {
    & {
      .menu {
        .menu-nav {
          .dropdown {
            margin: 0 20px;
            a {
              font-size: 18px;
            }
          }
        }
      }
    }
  }
  @media screen and (max-width: 992px) {
    & {
      padding: 10px 0;
      .navbar-header {
        float: unset;
        display: inline-block;
        width: Calc(100% - 47px);
        vertical-align: middle;
        img {
          width: 155px;
        }
      }
      .menu-toggler {
        display: inline-block;
        position: relative;
        vertical-align: middle;
      }
      .menu {
        padding: 20px 35px 30px 35px;
        text-align: left;
        position: relative;
        width: 260px;
        background: linear-gradient(
          180deg,
          #ff0025 -11.27%,
          #9b2c46 32.06%,
          #41162f 100%
        );
        border-radius: 0px;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        .menu-toggler {
          display: block;
          position: relative;
          text-align: right;
          margin-left: auto;
          padding: 0;
          width: 35px;
        }
        &.open {
          right: 0;
        }
        .menu-nav {
          padding: 0;
          .dropdown {
            display: block;
            width: 100%;
            margin: 60px 0;
            a {
              font-size: 20px;
              line-height: 24px;
              text-transform: uppercase;
              color: #ffffff;
              position: relative;
            }
            &.button {
              a {
                font-size: 20px;
                line-height: 24px;
                text-transform: uppercase;
                color: #ffffff;
                padding: 0;
                background: transparent;
              }
              & a:hover,
              &.active > a,
              &.active:hover > a {
                color: #ffffff;
                background: transparent;

                &:after {
                  width: 100%;
                }
              }
            }
          }
        }
      }
      &.light2,
      &.light {
        .menu {
          .menu-nav {
            .dropdown {
              a {
                color: #fff;
                &:after {
                  background: #fff;
                }
              }
              &.button {
                a {
                  color: #fff;
                  background: transparent;
                }

                & a:hover,
                &.active > a,
                &.active:hover > a {
                  color: #fff;
                  text-decoration: none !important;
                  background: transparent;
                  &:after {
                    width: 100%;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/
.fakebanner {
  height: 130px;
}

.banner {
  position: relative;
  width: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  .zona_redes {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 2;
    .redes_sociais {
      gap: 15px;
      color: #fff;
      a {
        color: #fff;
        font-size: 22px;
      }
    }
  }
  .holder_slider {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    img {
      width: 100%;
    }
    .single_banner,
    .single_banner .holder_content,
    .single_banner .holder_content_img {
      width: 100%;
      min-height: 850px;
      height: 100vh;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top center;
    }
    .single_banner {
      .holder_content_img {
        .iframe_holder {
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
        }
      }
      video {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 0;
      }
    }
  }
  .conteudo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: left;
    margin: auto;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    .info_banner {
      position: relative;
      max-width: 100%;
      width: 670px;
      margin-left: auto;
      padding: 0 15px;
      &:before {
        content: "";
        position: absolute;
        top: 65%;
        right: 0;
        background-image: url(/site/imagens/forma_banner.webp);
        width: 121%;
        height: 255%;
        z-index: 0;
        transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
      }
    }

    .nome {
      font-weight: 600;
      font-size: 25px;
      line-height: 150%;
      color: #f0f4f5;
      position: relative;
      z-index: 1;
    }
    .descricao {
      font-weight: 400;
      font-size: 20px;
      line-height: 150%;
      color: #f0f4f5;
      margin-top: 30px;
      max-width: 470px;
      position: relative;
      z-index: 1;
    }
    .botao {
      margin-top: 60px;
      position: relative;
      z-index: 1;
    }
  }
  @media screen and (max-width: 767px) {
    & {
      .conteudo {
        & .info_banner {
          padding-right: 15%;
          &:before {
            top: -100%;
            right: -4%;
            transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
          }
        }
      }
    }
  }
  @media screen and (max-width: 600px) {
    & {
      .conteudo {
        & .info_banner {
          &:before {
            top: -120%;
          }
        }
      }
    }
  }
}

/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/

.bloco {
  position: relative;
  width: 100%;
  padding: 85px 0;
}

.bloco.no-margin {
  padding: 0;
}

@media screen and (max-width: 992px) {
  .bloco {
    padding: 40px 0;
  }
}

/*==================================================================================================*/
/*HOMEPAGE*/
/*==================================================================================================*/
#homepage {
  overflow: hidden;
  .parceiros {
    h2 {
      color: #333333;
    }
    .holder_parceiros {
      margin-top: 70px;
      flex-wrap: wrap;
      .single_parceiro {
        width: Calc(100% / 4);
        padding: 10px;
        .holder_single_parceiro {
          margin: 0 auto;
          width: 166px;
          height: 166px;
          max-width: 100%;
          border: 1px solid #811336;
          position: relative;
          border-radius: 50%;
          transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -webkit-transition: all 0.3s ease-in-out;
          cursor: pointer;
          .nome,
          .imagem {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
          }
          .nome {
            text-align: center;
            width: 100%;
            padding: 10px;
            font-size: 25px;
            line-height: 150%;
            color: #811336;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
          }
          .imagem {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            opacity: 0;
            img {
              max-width: 100%;
              height: 100%;
            }
          }
        }
        .holder_single_parceiro.active {
          background: linear-gradient(
            87.73deg,
            #c72c41 -12.16%,
            #611520 115.97%
          );
          box-shadow: 0px 87px 35px rgba(0, 0, 0, 0.01),
            0px 49px 29px rgba(0, 0, 0, 0.05), 0px 22px 22px rgba(0, 0, 0, 0.09),
            0px 5px 12px rgba(0, 0, 0, 0.1);
        }
        &.logo {
          .holder_single_parceiro.active {
            .nome {
              opacity: 0;
            }
            .imagem {
              opacity: 1;
            }
          }
        }
      }
      @media screen and (max-width: 992px) {
        & {
          margin-top: 40px;
          .single_parceiro {
            .holder_single_parceiro {
              width: 100px;
              height: 100px;
              .nome {
                font-size: 14px;
              }
            }
          }
        }
      }
      @media screen and (max-width: 500px) {
        & {
          margin-top: 20px;
          .single_parceiro {
            .holder_single_parceiro {
              width: 80px;
              height: 80px;
              .nome {
                font-size: 12px;
              }
            }
          }
        }
      }
      @media screen and (max-width: 400px) {
        & {
          margin-top: 20px;
          .single_parceiro {
            width: 50%;
          }
        }
      }
    }
    .holder_zona_info_parceiro {
      padding-top: 85px;
      display: flex;
      flex-wrap: wrap;
      .titulo {
        width: 100%;
        margin-bottom: 45px;
        h3 {
          width: 55%;
          padding-left: 45px;
          margin-left: auto;
          font-size: 30px;
          line-height: 150%;
          color: #000000;
        }
      }
      .imagem {
        width: 45%;
        img {
          width: 100%;
          border-radius: 50px;
        }
      }
      .info {
        width: 55%;
        padding-left: 45px;
        .descricao {
          padding-left: 45px;
          font-size: 16px;
          color: #000000;
          .botao {
            margin-top: 30px;
          }
        }
      }

      @media screen and (max-width: 992px) {
        & {
          padding-top: 45px;
          .titulo {
            h3 {
              font-size: 30px;
            }
          }
          .info {
            padding-left: 25px;
            .descricao {
              padding-left: 25px;
              font-size: 16px;
            }
          }
        }
      }
      @media screen and (max-width: 767px) {
        & {
          padding-top: 45px;
          .titulo {
            width: 100%;
            margin-bottom: 0;
            order: 2;
            margin-top: 30px;
            h3 {
              width: 100%;
              font-size: 20px;
              padding-left: 0;
              text-align: center;
            }
          }
          .imagem {
            order: 1;
            width: 100%;
          }
          .info {
            order: 3;
            width: 100%;
            padding-left: 0;
            text-align: center;
            margin-top: 20px;
            .descricao {
              padding-left: 0;
              font-size: 16px;
            }
          }
        }
      }
    }
  }
  .bloco-numeros {
    .holder_numeros {
      .single_numero {
        width: Calc(100% / 3);
        padding: 15px;
        .number-holder {
          text-align: center;
          .zona_numero {
            justify-content: center;
            font-weight: 400;
            font-size: 50px;
            line-height: 65px;
            background: linear-gradient(180deg, #ff0000 0%, #216bd8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
          }
          .title {
            font-size: 30px;
            line-height: 150%;
            color: #000000;
          }
        }
        &:nth-child(1),
        &:nth-child(4) {
          .number-holder {
            .zona_numero {
              background: linear-gradient(180deg, #ff0000 0%, #216bd8 100%);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
              text-fill-color: transparent;
            }
          }
        }
        &:nth-child(2),
        &:nth-child(5) {
          .number-holder {
            .zona_numero {
              background: linear-gradient(90deg, #c72c41 0%, #510b32 100%);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
              text-fill-color: transparent;
            }
          }
        }
        &:nth-child(3),
        &:nth-child(6) {
          .number-holder {
            .zona_numero {
              background: linear-gradient(180deg, #c72c41 0%, #510b32 100%);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
              text-fill-color: transparent;
            }
          }
        }
      }
    }

    @media screen and (max-width: 1400px) {
      .holder_numeros {
        .single_numero {
          .number-holder {
            .zona_numero {
              font-size: 40px;
              line-height: 55px;
            }

            .title {
              font-size: 20px;
            }
          }
        }
      }
    }
    @media screen and (max-width: 1200px) {
      .holder_numeros {
        .single_numero {
          .number-holder {
            .zona_numero {
              font-size: 35px;
              line-height: 50px;
            }

            .title {
              font-size: 20px;
            }
          }
        }
      }
    }
    @media screen and (max-width: 992px) {
      .holder_numeros {
        .single_numero {
          .number-holder {
            .zona_numero {
              font-size: 30px;
              line-height: 45px;
            }

            .title {
              font-size: 18px;
            }
          }
        }
      }
    }
    @media screen and (max-width: 767px) {
      .holder_numeros {
        .single_numero {
          .number-holder {
            .zona_numero {
              font-size: 25px;
              line-height: 35px;
            }

            .title {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
  .servicos_home {
    position: relative;
    .forma {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 0;
      width: 1200px;
      max-width: 65%;
    }
    .holder_servicos {
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;

      .linha {
        position: absolute;
        right: 95px;
        top: -445px;
        z-index: -1;
        width: 2744px;
        svg {
          width: 100%;
          height: auto;
        }
      }
      .linha.mobile {
        display: none;
      }
      .single_servico {
        width: Calc(100% / 4);
        padding: 10px;
        .holder_single_servico {
          background: #ffffff;
          box-shadow: 0px 82px 33px rgba(0, 0, 0, 0.01),
            0px 46px 28px rgba(0, 0, 0, 0.05), 0px 21px 21px rgba(0, 0, 0, 0.09),
            0px 5px 11px rgba(0, 0, 0, 0.1);
          border-radius: 63px;
          padding: 50px 40px;
          text-align: center;
          min-height: 420px;
          .imagem {
            margin-bottom: 20px;
            img {
              width: 64px;
              height: 74px;
              object-fit: contain;
            }
          }
          .nome {
            font-weight: 500;
            font-size: 25px;
            line-height: 120%;
            color: #811336;
          }
          .descricao {
            font-weight: 400;
            font-size: 18px;
            line-height: 120%;
            text-align: center;
            color: #000000;
            margin-top: 20px;
          }
        }

        &:nth-child(1) {
        }
        &:nth-child(2) {
          .holder_single_servico {
            margin-top: 120px;
          }
        }
        &:nth-child(3) {
          .holder_single_servico {
            margin-top: Calc(120px * 2);
          }
        }
        &:nth-child(4) {
          .holder_single_servico {
            margin-top: Calc(120px * 3);
          }
        }
        &:nth-child(5) {
          .holder_single_servico {
            margin-top: Calc(120px * 6);
          }
        }
        &:nth-child(6) {
          .holder_single_servico {
            margin-top: Calc(120px * 4.5);
          }
        }
        &:nth-child(7) {
          .holder_single_servico {
            margin-top: Calc(120px * 2);
          }
        }
        &:nth-child(8) {
          .holder_single_servico {
          }
        }
      }
    }

    @media screen and (max-width: 1500px) {
      & {
        .holder_servicos {
          .single_servico {
            .holder_single_servico {
              padding: 50px 20px;
            }
          }
        }
      }
    }
    @media screen and (max-width: 1400px) {
      & {
        .holder_servicos {
          .linha {
            width: 2200px;
            top: -300px;
          }

          .single_servico {
            .holder_single_servico {
              min-height: 370px;
              .nome {
                font-size: 20px;
              }
              .descricao {
                font-size: 16px;
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 1200px) {
      & {
        .holder_servicos {
          .single_servico {
            &:nth-child(5) {
              .holder_single_servico {
                margin-top: Calc(120px * 4.5);
              }
            }
            &:nth-child(6) {
              .holder_single_servico {
                margin-top: Calc(120px * 3.5);
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 992px) {
      & {
        .holder_servicos {
          .linha.desktop {
            display: none;
          }
          .linha.mobile {
            display: block;
          }
          .linha {
            width: 520px;
            top: 50px;
            right: unset;
            left: 50%;
            transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
          }
          .single_servico {
            width: Calc(100% / 3);
            .holder_single_servico {
              min-height: 300px;
              .imagem {
                img {
                  width: 40px;
                  height: 50px;
                }
              }
            }
            &:nth-child(4) {
              .holder_single_servico {
                margin-top: Calc(60px);
              }
            }
            &:nth-child(5) {
              .holder_single_servico {
                margin-top: Calc(120px * -1);
              }
            }
            &:nth-child(6) {
              .holder_single_servico {
                margin-top: Calc(120px * 3.5);
              }
            }
            &:nth-child(8) {
              .holder_single_servico {
                margin-top: Calc(-120px * 4);
              }
            }
            &:nth-child(7) {
              .holder_single_servico {
                margin-top: Calc(-20px);
                position: relative;
                left: Calc(((100% / 3) * 3) + 20px);
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 767px) {
      & {
        & .holder_servicos {
          & .single_servico {
            & .holder_single_servico {
              .nome {
                font-size: 18px;
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 650px) {
      & {
        .holder_servicos {
          max-width: 365px;

          .linha {
            top: 70px;
          }
          .single_servico {
            width: Calc(100% / 2);
            .holder_single_servico {
              padding: 30px 10px;
              min-height: 200px;
              .nome {
                font-size: 15px;
              }
              .descricao {
                font-size: 13px;
              }
            }
            &:nth-child(3) {
              .holder_single_servico {
                margin-top: Calc(120px * 1);
              }
            }
            &:nth-child(5) {
              .holder_single_servico {
                margin-top: Calc(120px * 0.5);
              }
            }
            &:nth-child(6) {
              .holder_single_servico {
                margin-top: Calc(120px * 4.5);
              }
            }
            &:nth-child(8) {
              .holder_single_servico {
                margin-top: Calc(120px * -5);
              }
            }
            &:nth-child(7) {
              .holder_single_servico {
                margin-top: Calc(-120px);
                position: relative;
                left: 0;
              }
            }
          }
        }
      }
    }
  }
  .para_quem {
    position: relative;
    margin-top: 200px;
    overflow: hidden;
    h3 {
      font-weight: 500;
      font-size: 40px;
      line-height: 120%;
      color: #000000;
      text-align: center;
    }
    .linha {
      position: absolute;
      left: 0;
      width: 100%;
      top: Calc(50% + 150px);
      transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
    }
    .holder_slider {
      margin-top: 80px;
      .owl-stage-outer {
        overflow: unset;
      }
    }
    .owl-item.center {
      .single_pagina {
        padding-top: 120px;
      }
    }
    .single_pagina {
      transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      .holder_single_pagina {
        width: 423px;
        height: 423px;
        background: linear-gradient(180deg, #c72c41 0%, #510b32 100%);
        position: relative;
        border-radius: 50%;
        .info {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          left: 0;
          width: 100%;
          padding: 65px;
          text-align: center;

          .imagem {
            margin-bottom: 20px;
            img {
              width: 133px;
              height: 85px;
              object-fit: contain;
              margin: 0 auto;
            }
          }
          .nome {
            font-weight: 500;
            font-size: 25px;
            line-height: 120%;
            color: #fff8f8;
          }
          .descricao {
            color: #fff8f8;
          }
        }
      }
    }
    @media screen and (max-width: 1400px) {
      & {
        margin-top: 0;
        h3 {
          font-size: 35px;
        }
      }
    }
    @media screen and (max-width: 1200px) {
      & {
        h3 {
          font-size: 30px;
        }
      }
    }
    @media screen and (max-width: 992px) {
      & {
        h3 {
          font-size: 25px;
        }
      }
    }
    @media screen and (max-width: 767px) {
      & {
        .single_pagina {
          .holder_single_pagina {
            width: 323px;
            height: 323px;
            .info {
              padding: 35px;
              .imagem {
                margin-bottom: 10px;
                img {
                  width: 80px;
                  height: 45px;
                }
              }
              .nome {
                font-size: 18px;
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 600px) {
      & {
        .linha {
          width: 125%;
          max-width: unset;
        }
        .holder_slider {
          margin-top: 20px;
        }
        .single_pagina {
          .holder_single_pagina {
            width: 223px;
            height: 223px;
            .info {
              padding: 35px;
              .imagem {
                margin-bottom: 5px;
                img {
                  width: 50px;
                  height: 35px;
                }
              }
              .nome {
                font-size: 16px;
              }
              .descricao {
                font-size: 14px;
              }
            }
          }
        }
      }
    }
  }
}

/*==================================================================================================*/
/*SERVICOS*/
/*==================================================================================================*/
#servicos {
  overflow: hidden;
  .forma {
    width: 100%;
  }
  .cabecalho {
    h2 {
      font-weight: 500;
      font-size: 20px;
      line-height: 150%;
      color: #000000;
      max-width: 580px;
      margin: 20px auto 0 auto;
    }
    .descricao {
      font-weight: 400;
      font-size: 15px;
      line-height: 150%;
      color: #000000;
      max-width: 580px;
      margin: 20px auto 0 auto;
    }
  }
  .info_servicos {
    .holder_info {
      flex-wrap: wrap;
      align-items: center;
      position: relative;
      &:before {
        content: "";
        background: linear-gradient(90deg, #ff0025 0%, #811336 64.89%);
        height: 1px;
        width: 95%;
        position: absolute;
        top: -85px;
        left: 50%;
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
      }

      .imagem {
        width: 47%;
        padding-right: 80px;
        img {
          width: 100%;
        }
      }
      .descricao {
        width: 52%;
      }
    }

    @media screen and (max-width: 992px) {
      .holder_info {
        flex-wrap: wrap;
        align-items: center;
        position: relative;

        &:before {
          top: -40px;
        }
      }
    }

    @media screen and (max-width: 767px) {
      .holder_info {
        .imagem {
          width: 100%;
          padding-right: 0;
          margin-bottom: 40px;
        }
        .descricao {
          width: 100%;
        }
      }
    }
  }
  .zona_contactos {
    .row {
      margin: 0;
    }
    background: linear-gradient(
      180deg,
      #020001 0%,
      #000000 37.02%,
      #1c1c1c 100%
    );
    border-radius: 48px 48px 0px 0px;
    position: relative;
    &:before {
      content: "";
      position: absolute;
      width: 50%;
      height: 100%;
      left: 0px;
      top: 0;
      background: linear-gradient(180deg, #c42c41 0%, #461730 100%);
      border-radius: 48px 48px 0px 0px;
    }
    .holder_zona_contactos {
      flex-wrap: wrap;
      .coluna {
        width: 50%;
      }
      #pedido-de-informacoes {
        padding-left: 80px;
        &:after {
          display: none;
        }
        h2 {
          color: #ff546d;
        }
        .form_generico {
          input,
          textarea {
            border-color: #ffffff;
            color: #ffffff;
          }
          label {
            color: rgba(255, 255, 255, 0.6);
          }
          button {
            border: none;
            display: block;
            margin: 0 auto;
          }
          .rgpd {
            label {
              font-weight: 500;
              font-size: 16px;
              line-height: 120%;
              color: #ffffff;
              display: block;
              position: relative;
              padding-left: 40px;
              cursor: default;
              -webkit-user-select: none;
              -moz-user-select: none;
              -ms-user-select: none;
              user-select: none;
              a {
                color: #ffffff;
              }
              input {
                position: absolute;
                opacity: 0;
                cursor: pointer;
                height: 0;
                width: 0;
              }
              input:checked ~ .checkbox:after {
                display: block;
              }
              input:checked ~ .checkbox {
                background-color: #fff;
              }
              .checkbox {
                position: absolute;
                top: -4px;
                left: 0;
                cursor: pointer;
                width: 27px;
                height: 27px;
                background: rgba(237, 237, 237, 0.46);
                border-radius: 6px;

                &:after {
                  content: "";
                  position: absolute;
                  display: none;
                  left: 9px;
                  top: 2px;
                  width: 9px;
                  height: 17px;
                  border: solid #f20428;
                  border-width: 0 2px 2px 0;
                  -webkit-transform: rotate(45deg);
                  -ms-transform: rotate(45deg);
                  transform: rotate(45deg);
                }
              }
            }
          }
        }
      }
      .contactos {
        position: relative;
        z-index: 2;
        padding-right: 80px;
        h2 {
          font-weight: 500;
          font-size: 60px;
          line-height: 120%;
          color: #ffffff;
          max-width: 400px;
          margin-bottom: 70px;
          span {
            color: rgba(255, 255, 255, 0.65);
          }
        }
        & .single_contacto {
          .icon {
            img {
              filter: grayscale(100%) brightness(100);
            }
          }
          &,
          a {
            font-weight: 500;
            font-size: 18px;
            line-height: 150%;
            color: #ffffff;
            text-decoration: none;
          }
          a:hover {
            color: #000;
          }
        }
      }
    }

    @media screen and (max-width: 1400px) {
      & {
        .holder_zona_contactos {
          .contactos {
            h2 {
              font-size: 50px;
            }
          }
        }
      }
    }
    @media screen and (max-width: 1200px) {
      & {
        .holder_zona_contactos {
          #pedido-de-informacoes {
            padding-left: 10px;
            h2 {
              font-size: 30px;
            }
          }
          .contactos {
            h2 {
              font-size: 40px;
            }
            .single_contacto {
              &,
              a {
                font-size: 16px;
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 992px) {
      & {
        background: linear-gradient(180deg, #c42c41 0%, #461730 100%);
        border-radius: 48px 48px 0px 0px;
        &:before {
          display: none;
        }
        .holder_zona_contactos {
          .coluna {
            width: 100%;
          }
          #pedido-de-informacoes {
            position: relative;
            overflow: unset;
            padding-left: 0;
            padding-top: 40px;
            &:before {
              content: "";
              background: #000;
              top: 0;
              left: 50%;
              transform: translateX(-50%);
              width: 100vw;
              height: Calc(100% + 40px);
              position: absolute;
              z-index: 0;
              border-radius: 48px 48px 0px 0px;
            }
            padding-left: 10px;
            h2 {
              font-size: 30px;
              position: relative;
              z-index: 2;
              margin-bottom: 0 !important;
            }
            form {
              position: relative;
              z-index: 2;
              padding: 0;
            }
          }
          .contactos {
            padding-top: 20px;
            text-align: center;
            padding-right: 0;
            h2 {
              font-size: 30px;
              margin: 0 auto 50px auto;
            }
            .single_contacto {
              margin: 0 auto 30px auto;
              max-width: 300px;
              text-align: left;
              &,
              a {
                font-size: 16px;
              }
            }
          }
        }
      }
    }
  }
}

.servicos {
  .owl-stage {
    display: flex;
  }
  #slider_servicos_not {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    .single_servico {
      width: Calc(100% / 3);
    }
  }
  #slider_servicos {
    padding: 0 20px;
  }
  .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 0;
    button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      &.owl-next {
        right: 0;
      }
      &.owl-prev {
        left: 0;
      }
      &.disabled {
        opacity: 0;
      }
    }
  }
  .single_servico {
    padding: 15px;
    height: 100%;
    .holder_single_servico {
      background-size: cover;
      background-position: center;
      /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
            /*box-shadow: 0px 138px 55px rgba(0, 0, 0, 0.01), 0px 78px 47px rgba(0, 0, 0, 0.05), 0px 35px 35px rgba(0, 0, 0, 0.09), 0px 9px 19px rgba(0, 0, 0, 0.1);*/
      border-radius: 40px;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
      height: 100%;
      align-content: space-between;
      position: relative;
      overflow: hidden;
      &:before {
        content: "";
        background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.8),
          rgba(0, 0, 0, 0.8)
        );
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        z-index: 0;
      }
      .info {
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 1;
        .botao_icon {
          text-align: right;
          a {
            display: inline-block;
          }
          .icon {
            width: 41px;
            height: 41px;
            background: linear-gradient(
              270.5deg,
              #510b32 -38.26%,
              #c22c41 99.57%
            );
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            &:hover {
              background: #fff;
              svg {
                path {
                  fill: #c22c41;
                }
              }
            }
          }
        }
        .imagem {
          margin-bottom: 35px;
          margin-top: 25px;
          img {
            width: 55px;
            height: 55px;
            object-fit: contain;
            margin: 0 auto;
          }
        }
        h3 {
          font-weight: 600;
          font-size: 30px;
          line-height: 120%;
          color: #ffffff;
        }
        .descricao {
          font-weight: 500;
          font-size: 18px;
          line-height: 120%;
          color: #ffffff;
          margin-top: 35px;
        }
      }
      .botao {
        margin-top: 50px;
        width: 100%;
        position: relative;
        z-index: 1;
        .v4 {
          width: 100%;
        }
      }
    }
  }

  @media screen and (max-width: 1400px) {
    .single_servico {
      .holder_single_servico {
        .info {
          h3 {
            font-size: 25px;
          }
          .descricao {
            font-size: 16px;
          }
        }
      }
    }
  }
}
/*==================================================================================================*/
/*QUEM SOMOS*/
/*==================================================================================================*/
#quem-somos {
  h1 {
    background: linear-gradient(90deg, #811336 0%, #c72c41 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .zona_intro {
    position: relative;
    align-items: flex-start;
    &:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 205px;
      left: 0;
      top: 0px;
      background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
      );
    }
    .imagens {
      width: 50%;
      margin-left: auto;
      order: 2;
      img {
        width: 100%;
      }
    }
    .info {
      position: sticky;
      top: 0;
      order: 1;
      width: 50%;
      .holder_info {
        position: absolute;
        top: 0;
        width: Calc(100vw - 15px);
        .bloco_info {
          width: 40%;
        }
      }
    }
    .info {
      .descricao {
        margin-top: 30px;
      }
    }

    @media screen and (max-width: 767px) {
      & {
        flex-wrap: wrap;
        .imagens {
          width: 100%;
          order: 1;
          .imagem:not(:first-child) {
            display: none;
          }
        }
        .info {
          order: 2;
          position: relative;
          width: 100%;
          text-align: center;
          .fakebanner {
            height: 0;
          }
          .holder_info {
            width: 100%;
            .bloco_info {
              width: 100%;
              position: relative;
            }
          }
        }
      }
    }
  }
  .equipa {
    .holder_equipa {
      flex-wrap: wrap;
      margin-top: 70px;
      .single_pagina {
        width: Calc(100% / 3);
        padding: 15px;
        .holder_single_pagina {
          padding: 40px;
          background: linear-gradient(180deg, #c72c41 0%, #41162f 100%);
          box-shadow: 0px 144px 58px rgba(0, 0, 0, 0.01),
            0px 81px 49px rgba(0, 0, 0, 0.05), 0px 36px 36px rgba(0, 0, 0, 0.09),
            0px 9px 20px rgba(0, 0, 0, 0.1);
          border-radius: 48px;
          height: 100%;
          display: flex;
          flex-wrap: wrap;
          align-content: space-between;
          .info {
            width: 100%;
            text-align: center;
            .botao_icon {
              margin-bottom: 25px;
              text-align: right;
              a {
                display: inline-block;
              }
              .icon {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 31px;
                height: 31px;
                background: #ffffff;
                border: 1px solid #ffffff;
                border-radius: 50%;
                svg path {
                  fill: #000;
                }
                &:hover {
                  background: #000;
                  border: 1px solid #000;
                  svg path {
                    fill: #fff;
                  }
                }
              }
            }
            .imagem {
              margin-bottom: 30px;
              img {
                width: 220px;
                height: 220px;
                object-fit: cover;
                display: block;
                margin: 0 auto;
                border-radius: 48px;
              }
            }
            h3 {
              font-weight: 500;
              font-size: 30px;
              line-height: 120%;
              color: #ffffff;
            }
            .descricao {
              font-weight: 300;
              font-size: 16px;
              line-height: 120%;
              color: #ffffff;
              margin-top: 30px;
            }
          }
          .botao {
            width: 100%;
            margin-top: 50px;
            .btn1 {
              width: 100%;
            }
          }
        }
      }
    }
    @media screen and (max-width: 1400px) {
      .holder_equipa {
        .single_pagina {
          .holder_single_pagina {
            .info {
              h3 {
                font-size: 25px;
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 1200px) {
      .holder_equipa {
        .single_pagina {
          .holder_single_pagina {
            padding: 20px;
          }
        }
      }
    }
    @media screen and (max-width: 992px) {
      .holder_equipa {
        margin-top: 30px;
        justify-content: center;
        .single_pagina {
          width: 50%;
          .holder_single_pagina {
            .info {
              h3 {
                font-size: 20px;
              }
              .imagem {
                img {
                  width: 120px;
                  height: 120px;
                  border-radius: 14px;
                }
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 567px) {
      .holder_equipa {
        margin-top: 30px;
        justify-content: center;
        .single_pagina {
          width: 100%;
          padding: 15px 0;
          .holder_single_pagina {
            max-width: 300px;
            margin: 0 auto;
            .info {
              h3 {
                font-size: 20px;
              }
              .imagem {
                img {
                  width: 100px;
                  height: 100px;
                  border-radius: 12px;
                }
              }
            }
          }
        }
      }
    }
  }
  .valores {
    .holder_valores {
      flex-wrap: wrap;
      margin-top: 70px;
      .single_pagina {
        width: Calc(100% / 3);
        padding: 15px;
        .holder_single_pagina {
          padding: 40px;
          background: linear-gradient(180deg, #c72c41 0%, #41162f 100%);
          box-shadow: 0px 144px 58px rgba(0, 0, 0, 0.01),
            0px 81px 49px rgba(0, 0, 0, 0.05), 0px 36px 36px rgba(0, 0, 0, 0.09),
            0px 9px 20px rgba(0, 0, 0, 0.1);
          border-radius: 48px;
          height: 100%;
          display: flex;
          flex-wrap: wrap;
          align-content: space-between;
          .info {
            width: 100%;
            text-align: center;
            .botao_icon {
              margin-bottom: 25px;
              text-align: right;
              a {
                display: inline-block;
              }
              .icon {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 31px;
                height: 31px;
                background: #ffffff;
                border: 1px solid #ffffff;
                border-radius: 50%;
                svg path {
                  fill: #000;
                }
                &:hover {
                  background: #000;
                  border: 1px solid #000;
                  svg path {
                    fill: #fff;
                  }
                }
              }
            }
            .imagem {
              margin-bottom: 30px;
              img {
                width: 95px;
                height: 95px;
                object-fit: contain;
                display: block;
                margin: 0 auto;
              }
            }
            h3 {
              font-weight: 500;
              font-size: 30px;
              line-height: 120%;
              color: #ffffff;
            }
            .descricao {
              font-weight: 300;
              font-size: 16px;
              line-height: 120%;
              color: #ffffff;
              margin-top: 30px;
            }
          }
          .botao {
            width: 100%;
            margin-top: 50px;
            .btn1 {
              width: 100%;
            }
          }
        }
      }
    }
    @media screen and (max-width: 1400px) {
      .holder_valores {
        .single_pagina {
          .holder_single_pagina {
            .info {
              h3 {
                font-size: 25px;
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 1200px) {
      .holder_valores {
        .single_pagina {
          .holder_single_pagina {
            padding: 20px;
          }
        }
      }
    }
    @media screen and (max-width: 992px) {
      .holder_valores {
        margin-top: 30px;
        justify-content: center;
        .single_pagina {
          width: 50%;
          .holder_single_pagina {
            .info {
              h3 {
                font-size: 20px;
              }
              .imagem {
                img {
                  width: 55px;
                  height: 55px;
                }
              }
            }
          }
        }
      }
    }
    @media screen and (max-width: 567px) {
      .holder_valores {
        margin-top: 30px;
        justify-content: center;
        .single_pagina {
          width: 100%;
          padding: 15px 0;
          .holder_single_pagina {
            max-width: 300px;
            margin: 0 auto;
            .info {
              h3 {
                font-size: 20px;
              }
              .imagem {
                img {
                  width: 55px;
                  height: 55px;
                }
              }
            }
          }
        }
      }
    }
  }
  .cta_quem_somos {
    position: relative;
    a {
      text-decoration: none;
    }
    .bg_cta {
      background: rgba(84, 2, 14, 0.09);
      position: relative;
    }
    .info {
      width: 60%;
      text-align: center;
      padding-right: 80px;
      .holder_info {
        max-width: 440px;
        margin: 0 auto;
      }
      h2 {
        font-weight: 500;
        font-size: 50px;
        line-height: 120%;
        color: #000000;
      }
      .descricao {
        font-weight: 400;
        font-size: 20px;
        line-height: 120%;
        color: #000000;
        margin-top: 35px;
      }
      .botao {
        margin-top: 60px;
        .btn1 {
          margin: 0 auto;
        }
      }
    }
    .imagem {
      position: absolute;
      width: 41%;
      height: 100%;
      right: 0;
      top: 0;
      img,
      video {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 0;
      }
    }

    @media screen and (max-width: 1400px) {
      & {
        .info {
          h2 {
            font-size: 40px;
          }
          .descricao {
            font-size: 18px;
          }
        }
      }
    }
    @media screen and (max-width: 1200px) {
      & {
        .info {
          h2 {
            font-size: 35px;
          }
          .descricao {
            font-size: 16px;
          }
        }
      }
    }
    @media screen and (max-width: 767px) {
      & {
        .imagem {
          position: relative;
          width: 100%;
          padding-bottom: 60%;
        }
        .info {
          width: 100%;
          padding-right: 0;
          h2 {
            font-size: 25px;
          }
          .botao {
            margin-top: 30px;
          }
        }
      }
    }
  }
}

/*==================================================================================================*/
/*FAQS*/
/*==================================================================================================*/

.faqs {
  .holder_faqs {
    .single_faq {
      margin-bottom: 40px;
      &:last-child {
        margin-bottom: 0;
      }
      .pergunta {
        cursor: pointer;
        .cabecalho {
          position: relative;
          border-bottom: 1px solid #b23e3e;
          padding-bottom: 10px;
          padding-right: 45px;
          h2 {
            text-align: left;
            margin: 0;
            color: #b23e3e;
            font-size: 35px;
            line-height: 40px;
          }
          span {
            position: absolute;
            color: #b23e3e;
            top: 12px;
            /* left: 0; */
            font-size: 26px;
            right: 0;
            transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
          }
        }
        &.open {
          .cabecalho span {
            transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -webkit-transform: rotate(180deg);
          }
        }
      }
      .resposta {
        display: none;
        padding-top: 20px;
        &,
        p {
          margin: 0;
          font-size: 18px;
          color: #000;
          letter-spacing: 0;
          line-height: 24px;
          font-weight: 300;
        }
      }
    }
  }

  @media screen and (max-width: 1400px) {
    & {
      .holder_faqs {
        .pergunta {
          .cabecalho {
            h2 {
              font-size: 30px;
              line-height: 35px;
            }
            span {
              top: 8px;
            }
          }
        }
      }
    }
  }

  @media screen and (max-width: 992px) {
    & {
      .holder_faqs {
        .pergunta {
          .cabecalho {
            h2 {
              font-size: 25px;
              line-height: 30px;
            }
            span {
              top: 6px;
              font-size: 23px;
            }
          }
        }
        .resposta {
          &,
          p {
            font-size: 16px;
            line-height: 22px;
          }
        }
      }
    }
  }

  @media screen and (max-width: 767px) {
    & {
      .holder_faqs {
        .pergunta {
          .cabecalho {
            h2 {
              font-size: 21px;
              line-height: 26px;
            }
          }
        }
      }
    }
  }
}

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

.contactos {
  .single_contacto {
    display: flex;
    margin-bottom: 25px;
    &,
    a {
      font-weight: 500;
      color: #000000;
    }
    .icon {
      width: 30px;
      img {
        max-width: 100%;
      }
    }
    .info {
      width: Calc(100% - 30px);
      padding-left: 20px;
    }
  }
}

.cta_footer {
  padding-bottom: 0;
  a {
    text-decoration: none;
  }
  .holder_cta {
    background: #ffffff;
    box-shadow: -96px -102px 56px rgba(0, 0, 0, 0.01),
      -54px -57px 47px rgba(0, 0, 0, 0.05), -24px -25px 35px rgba(0, 0, 0, 0.09),
      -6px -6px 19px rgba(0, 0, 0, 0.1);
    border-radius: 55px;
    margin-bottom: -65px;
    padding: 45px 80px;
    margin: 0 auto -65px auto;
    max-width: 1025px;
    align-items: center;
    .info {
      padding-right: 20px;
      width: 55%;
      h3 {
        font-weight: 400;
        font-size: 35px;
        line-height: 130%;
        background: linear-gradient(180deg, #c92b42 0%, #811336 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
      }
      .descricao {
        font-weight: 400;
        font-size: 17px;
        line-height: 120%;
        color: #000000;
        margin-top: 20px;
      }
      .botao {
        margin-top: 35px;
      }
    }
    .imagens {
      width: 45%;
      .holder_imagem {
        position: relative;
        img {
          transition: all 0.3s ease-in-out;
          -moz-transition: all 0.3s ease-in-out;
          -webkit-transition: all 0.3s ease-in-out;
        }
        .imagem0 {
          position: absolute;
          z-index: 0;
          width: 100%;
          left: 34%;
          top: 35%;
          transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
        }
        .imagem1 {
          position: relative;
          z-index: 1;
          width: 100%;
        }
      }
    }
    &:hover {
      .imagens {
        .holder_imagem {
          .imagem0 {
            transform: scale(1.1) translate(-50%, -50%);
            -moz-transform: scale(1.1) translate(-50%, -50%);
            -webkit-transform: scale(1.1) translate(-50%, -50%);
          }
          .imagem1 {
            transform: rotate(10deg);
          }
        }
      }
    }
  }

  @media screen and (max-width: 992px) {
    & {
      .holder_cta {
        padding: 30px 40px;
        .info {
          h3 {
            font-size: 25px;
          }
          .descricao {
            font-size: 14px;
          }
        }
      }
    }
  }
  @media screen and (max-width: 767px) {
    & {
      .holder_cta {
        padding: 20px 30px;
        .info {
          h3 {
            font-size: 20px;
          }
          .descricao {
            font-size: 14px;
          }
        }
      }
    }
  }
  @media screen and (max-width: 500px) {
    & {
      .holder_cta {
        padding: 40px 30px;
        flex-wrap: wrap;
        .info {
          width: 100%;
        }
        .imagens {
          width: 100%;
          margin-top: 30px;
        }
      }
    }
  }
}

footer {
  background: #000000;
  &.more_padding {
    .footer {
      padding-top: 150px;
    }
  }

  .footer {
    position: relative;
    width: 100%;
    .holder_footer {
      flex-wrap: wrap;
      margin: 0 -15px;
      .coluna {
        width: Calc(100% / 5);
        padding: 0 15px;
      }
    }
    .logo {
      img {
        max-width: 100%;
        width: 138px;
      }
      margin-bottom: 25px;
    }

    .menus {
      .single_menu {
        margin-bottom: 22px;
      }
      &,
      p,
      label,
      a {
        background: linear-gradient(180deg, #ff4560 0%, #b64066 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
      }
      a:hover {
        font-weight: 700;
      }
    }
    .redes_sociais {
      display: flex;
      gap: 20px;
      a {
        font-size: 24px;
        background: transparent;
        color: #fff;
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        &:hover {
          color: #ff4560;
        }
      }
    }
    .contactos {
      .single_contacto {
        &,
        a {
          color: #fff;
          font-size: 14px;
          text-decoration: none;
        }
        a:hover {
          color: #ff4560;
        }
      }
    }
    @media screen and (max-width: 1400px) {
      & {
        .contactos {
          .single_contacto {
            &,
            a {
              font-size: 12px;
            }
          }
        }
      }
    }
    @media screen and (max-width: 992px) {
      & {
        .holder_footer {
          .coluna {
            width: Calc(100% / 3);
            padding: 20px 15px;
          }
          .coluna.info,
          .coluna.contactos {
            width: 100%;
          }
        }
      }
    }
    @media screen and (max-width: 500px) {
      & {
        .holder_footer {
          margin: 0;
          .coluna {
            padding: 20px 0;
          }
          .coluna.info {
            padding-bottom: 40px;
          }
          .coluna.menus {
            width: 100%;
            padding: 0;
          }
        }
      }
    }
  }

  .lower_footer {
    padding: 40px 0;
    text-align: center;
    position: relative;
    border-top: 0.4px solid rgb(255 255 255 / 40%);

    &,
    p,
    a {
      font-weight: 400;
      font-size: 14px;
      line-height: 150%;
      color: #ffffff;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
  }
}

.politica_privacidade {
  h1 {
    font-weight: 500;
    font-size: 50px;
    line-height: 150%;
    color: #000000;
  }
  a {
    color: inherit;
  }
  table {
    max-width: 100% !important;
    border: none !important;
    tr {
      td {
        width: Calc(100% / 3) !important;
        padding: 5px 10px;
        border: none !important;
      }
      th {
        background: #c6c5c5;
        padding: 5px 10px;
      }
    }
  }
}
