/* Reset básico */
:root {
  --cor-1: #762075;
  --cor-2: #61185E;
  --cor-3: #470f40;
  --cor-letra: #220022;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--cor-letra);
}

body {
  background-color: #fff;
}

/* Seção Apresentação */
.apresentacao {
  padding: 80px 0;
  margin-top: 50px;
}

.container-apresentacao {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 80px;
}

.texto-apresentacao {
  flex: 1;
}

.texto-apresentacao h2,
.span-cor {
  font-size: 50px;
  font-weight: 700;
}

.span-cor {
  color: var(--cor-1);
}

.texto-apresentacao p {
  margin: 40px 0;
}

.imagem-apresentacao img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Botão Introdução */
.button-geral {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background: var(--cor-1);
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s ease-out;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button-geral:not(.slider-btn):hover {
  background-color: var(--cor-3);
  color: #ffffff !important;
}

.button-geral:active {
  transform: scale(1.02);
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button-geral:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button-geral:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* Responsivo Apresentação */
@media (max-width: 1024px) {

  .container-apresentacao {
    flex-direction: column;
    text-align: center;
    width: auto;
    margin: auto 5%;
  }

  .texto-apresentacao {
    width: 100%;
  }
}

/* Seção Missão, Visão e Valores */
.bloco-texto {
  max-width: 1100px;
  margin: 10px auto;
  padding: 20px;
  text-align: center;
}

.bloco-texto h2,
.span-cor-2 {
  font-size: 30px;
  font-weight: 630;
  margin-bottom: 20px;
}

.span-cor-2 {
  color: var(--cor-1);
}

.bloco-texto p {
  line-height: 1.6;
}

.mvv {
  padding: 10px 0;
}

.container-mvv {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Card Missão, Visão e Valores */
.card-mvv {
  flex: 1 1 30%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  transition: transform 0.3s ease;
}

.card-mvv:hover {
  transform: translateY(-8px);
}

.card-mvv img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px auto;
  display: block;
}

.missao {
  max-width: 400px !important;
  margin: 20px auto -20px auto !important;
}

.card-mvv h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-mvv p {
  margin-bottom: 20px;
}

/* Responsivo Missão, Visão e Valores */
@media (max-width: 1024px) {
  .container-mvv {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .card-mvv {
    flex: 1 1 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .container-mvv {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Seção Serviços */
.container-cartoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.cartao {
  display: block;
  position: relative;
  width: 165px;
  height: 108px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.cartao a{
  text-decoration: none;
}

.cartao:hover {
  transform: scale(1.03);
}

.cartao::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background-image: linear-gradient(180deg, var(--cor-1), var(--cor-1));
  height: 22px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.55s ease-out;
}

.cartao:hover::before {
  transform: scale(28);
}

.cartao:hover .descricao,
.cartao:hover .titulo-cartao {
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.titulo-cartao {
  font-size: 14px;
  font-weight: bold;
  margin-top: 14px !important;
  margin-bottom: -30px !important;
}

.descricao {
  font-size: 14px;
}

.canto-ir {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 45px;
  height: 25px;
  overflow: hidden;
  top: 0;
  right: 0;
  background: var(--cor-1);
  border-radius: 0 4px 0 32px;
}

.seta-ir {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
}

@media (max-width: 1198px) {
  .s-img {
    display: none;
  }

  .container-apresentacao {
    flex-direction: column;
    text-align: center;
    width: auto;
    margin: auto 5%;
  }

  .container-cartoes {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .card-mvv {
    flex: 1 1 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .container-mvv {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Testemunhos */
.area-testemunhos {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 180px auto 300px auto;
}

.carrossel-testemunhos {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.testemunho__item {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  padding: 0 12px;
  opacity: 0;
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  animation: animacao-testemunhos-vertical 45s linear infinite;
}

.testemunho__item:nth-child(1) {
  animation-delay: calc(5s * -1);
}

.testemunho__item:nth-child(2) {
  animation-delay: calc(5s * 0);
}

.testemunho__item:nth-child(3) {
  animation-delay: calc(5s * 1);
}

.testemunho__item:nth-child(4) {
  animation-delay: calc(5s * 2);
}

.testemunho__item:nth-child(5) {
  animation-delay: calc(5s * 3);
}

.testemunho__item:nth-child(6) {
  animation-delay: calc(5s * 4);
}

.testemunho__item:nth-child(7) {
  animation-delay: calc(5s * 5);
}

.testemunho__item:nth-child(8) {
  animation-delay: calc(5s * 6);
}

.testemunho__item:nth-child(9) {
  animation-delay: calc(5s * 7);
}

.testemunho__cabecalho {
  position: absolute;
  left: -20px;
  width: 90px;
  height: 90px;
  margin-right: -45px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(110, 4, 105, 0.7);
  background-color: var(--cor-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
}

.testemunho__cabecalho img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.testemunho__corpo {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 9px 10px 10px 70px;
}

.testemunho__corpo p {
  font-size: 13px;
  margin: 0;
}

.titulo-testemunho {
  font-size: 15px !important;
  color: var(--cor-1);
  font-weight: 600;
  margin-top: 10px;
}

.data-postagem {
  font-size: 10px;
  color: #ba93ba;
  font-weight: 600;
  margin-top: 25px;
}

@keyframes animacao-testemunhos-vertical {
  0% {
    transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }

  3%,
  11.1111111111% {
    transform: translateY(100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }

  14.1111111111%,
  22.2222222222% {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  25.2222222222%,
  33.3333333333% {
    transform: translateY(-100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
  }

  36.3333333333% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: visible;
  }

  100% {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
  }
}

/*responsividade */
@media (max-width: 600px) {

  .carrossel-testemunhos {
    max-width: 100%;
  }

  .testemunho__item {
    padding: 0 8px;
  }

  .testemunho__cabecalho {
    left: 10px;
    width: 70px;
    height: 70px;
    margin-right: 0;
    font-size: 40px;
  }

  .testemunho__corpo {
    padding-left: 90px;
  }

  .titulo-testemunho {
    font-size: 14px !important;
  }

  .testemunho__corpo p {
    font-size: 12px;
  }

  .data-postagem {
    font-size: 9px;
    margin-top: 15px;
  }
}

@media (max-width: 360px) {
  .testemunho__cabecalho {
    width: 60px;
    height: 60px;
    font-size: 35px;
  }

  .testemunho__corpo {
    padding-left: 80px;
  }

  .titulo-testemunho {
    font-size: 13px !important;
  }

  .testemunho__corpo p {
    font-size: 11px;
  }

  .data-postagem {
    font-size: 8px;
    margin-top: 12px;
  }
}

/* Área como funciona*/
.titulo-cf {
  text-align: center;
  margin-top: 2%;
}

.titulo-cf h3 {
  font-size: 30px;
  font-weight: 630;
}

.container-como-funciona {
  height: auto;
  width: 100%;
  position: relative;
  margin: 0%;
  margin-bottom: 0px;
  overflow: hidden;
}

.area-branca {
  width: 100%;
  height: 150px;
}

.area-roxa {
  background: var(--cor-1);
  width: 100%;
  height: 250px;
}

/* Card */
.cf {
  padding: 10px 0;
}

.container-cf {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -7%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.card-cf {
  flex: 1 1 30%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.card-cf:hover {
  transform: translateY(-8px);
}

.card-cf h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-cf p {
  font-size: 14px;
}

.container-svg-cf {
  margin-bottom: 15px;
}

.svg-cf {
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: var(--cor-2);
  border-radius: 50%;
  font-weight: 700;
  padding: 5px;
}

/* Responsivo Missão, Visão e Valores */
@media (max-width: 1024px) {
  .container-cf {
    justify-content: center;
    margin-bottom: 0px;

  }
}

@media (max-width: 820px) {
  .container-como-funciona {
    height: 550px;
    margin-bottom: 0px;
  }

  .area-roxa {
    height: auto;
    padding: 30px;
  }

  .container-cf {
    margin-top: -15%;
  }
}

@media (max-width: 768px) {
  .card-cf {
    flex: 1 1 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .container-cf {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  .container-como-funciona {
    height: auto;
  }

  .area-branca {
    display: none;
  }

  .titulo-cf {
    margin: 6% auto;
  }
}

/**  slider **/
.sessao-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 35px;
  flex-wrap: wrap;
  background: var(--cor-1);
}

.slider-conteudo {
  max-width: 500px;
  flex: 1;
  padding-right: 40px;
}

.slider-conteudo h1 {
  font-size: 35px;
  font-weight: 630;
  margin-bottom: 30px;
  color: white;
}

.slider-conteudo p {
  color: white;
  text-align: left;
  margin-bottom: 30px;
}

.slider-galeria {
  width: 100%;
  max-width: 650px;
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  flex: 1;
}

.slider-faixa {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-imagem {
  min-width: 100%;
  height: 400px;
  flex-shrink: 0;
}

.slider-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-botao {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  padding: 8px;
  cursor: pointer;
  z-index: 1;
}

.slider-botao.esquerda {
  left: 5px;
}

.slider-botao.direita {
  right: 5px;
}

.slider-indicadores {
  text-align: center;
  margin-top: 10px;
}

.slider-indicadores input[type="radio"] {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  background-color: var(--cor-3);
  transition: background-color 0.3s;
}

.slider-indicadores input[type="radio"]:checked {
  background-color: #5f085c;
}

.slider-indicadores input[type="radio"]:hover {
  background-color: #5f085c;
}

.btn-branco {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--cor-1);
  border-radius: 20px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s ease-out;
}

.button__icon-branco {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  background-color: var(--cor-1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.btn-branco:not(.slider-btn):hover {
  transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 968px) {
  .sessao-slider {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .slider-conteudo p {
    text-align: center;
  }

  .slider-conteudo {
    text-align: center;
  }

  .slider-botao {
    display: none;
  }
}

@media (max-width: 700px) {

  .slider-galeria,
  .slider-indicadores,
  .slider-conteudo p,
  .slider-conteudo h1 {
    display: none;
  }
}

/* Fomulário Orçamento */
.form-area {
  padding: 5% 75px !important;
  overflow: hidden;
}

#orcamentoForm {
  padding: 10px 50px;
}

.single-form {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 13px;
  overflow: hidden;
}

.left {
  background: var(--cor-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.left h2 {
  font-size: 35px;
  font-weight: 630;
}

.left span {
  font-size: 25px;
  color: #ffffff;
}

.right {
  padding: 40px;
}

.form-area {
  font-size: 15px;
  font-weight: 600;
}

.form-area ::placeholder {
  color: var(--cor-letra);
  font-size: 14px;
}

.dropdown-custom {
  position: relative;
  user-select: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: var(--cor-letra);
}

.dropdown-custom:focus {
  outline: 1px solid var(--co);
}

.dropdown-custom .options {
  display: none;
  position: absolute;
  top: 90%;
  left: 0;
  z-index: 100;
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
  background-color: white;
  border-radius: 0 0 6px 6px;
  max-height: 150px;
  overflow-y: auto;
}

.dropdown-custom.open .options {
  display: block;
}

.dropdown-custom .option {
  padding: 10px;
  transition: background-color 0.3s ease;
}

.dropdown-custom .option:hover {
  background-color: #f8d9ff94 !important;
  border-radius: 15px;
  color: var(--cor-letra);
}

.form-control {
  font-size: 14px;
  border-radius: 6px;
  color: var(--cor-letra);
}

.form-control:focus {
  background-color: #ffddf439 !important;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid rgb(0, 0, 0) !important;
}

textarea.form-control {
  overflow-y: auto;
  font-size: 14px;
  color: #000000;
  resize: none;
}

/**  Botaõ Cadastro e Login **/
.btn-cl {
  position: relative;
  background: transparent;
  padding: 0px;
  border: none;
  cursor: pointer;
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  background: linear-gradient(to right,
      hsl(308, 64%, 13%) 0%,
      hsl(302, 61%, 23%) 8%,
      hsl(302, 61%, 23%) 92%,
      hsl(308, 64%, 13%) 100%);
}

.front {
  display: block;
  position: relative;
  border-radius: 8px;
  background: var(--cor-1);
  padding: 10px 20px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.btn-cl:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.btn-cl:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.btn-cl:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.btn-cl:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 991px) {
  .form-area {
    padding: 30px 15px !important;
  }

  .single-form {
    flex-direction: column;
    display: flex;
  }

  .left,
  .right {
    width: 100%;
    padding: 30px 20px;
    text-align: left;
  }

  .left h2,
  .left span {
    font-size: 26px;
    text-align: center;
  }

  #orcamentoForm {
    padding: 0px;
    margin: 0 auto;
    width: 100%;
  }

  .continue-button {
    display: flex;
    justify-content: center;
  }

  .continue-button button {
    max-width: 250px;
  }
}






















/* PÁGINA MISSÃO, VISÃO E VALORES */
.mvv {
  margin-top: 5%;
}

.siar .button-geral {
  display: none !important;
}

.wrapper-conteudo {
  max-width: 1200px;
  margin: 0 auto;
}

.area-conteudo {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.conteudo-principal {
  flex: 1 1 700px;
  min-width: 300px;
}

.barra-lateral {
  flex: 0 0 280px;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  height: fit-content;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.barra-lateral h4 {
  font-size: 25px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--cor-1);
  padding-bottom: 8px;
  font-weight: 700;
}

.barra-lateral ul {
  list-style: none;
  padding-left: 0;
}

.barra-lateral ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  transition: color 0.3s ease;
}

.barra-lateral ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
}

.barra-lateral ul li:hover {
  color: var(--cor-1);
}

.cartao-secao {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cartao-secao:hover {
  transform: translateY(-8px);
}

.cartao-secao h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--cor-1);
  display: inline-block;
  padding-bottom: 6px;
}

.cartao-secao ul {
  padding-left: 20px;
  margin-top: 15px;
}

.cartao-secao ul li {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .area-conteudo {
    flex-direction: column;
  }

  .barra-lateral {
    display: none;
  }

  .siar .button-geral {
  display: block !important;
   display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: auto;
}

.siar a{
  text-decoration: none;
}
}









/* MENU TELAS GRANDES*/
header.menu-principal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: -1px;
  padding: 0 80px 0 80px;
  z-index: 1000;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

#menuprincipal.shadow {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;
}

.container-menu {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 3px 20px;
}

.logo-site img {
  width: 120px;
}

.logo-menu-responsivo {
  display: none;
  width: 70px !important;
  margin-bottom: 5px;
}

nav.links-navegacao ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin-top: 10%;
}

nav.links-navegacao li a {
  position: relative;
  text-decoration: none;
  color: #22001B;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.5s ease;
}


/* animação links*/
.link-menu:not(.link-dropdown)::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #22001B;
  transition: width 0.5s ease;
  width: 0;
}

.link-menu:not(.link-dropdown):hover::after {
  width: 100%;
}

.link-dropdown::after {
  content: none !important;
}

/* dropdown serviços*/
.dropdown {
  position: relative;
}

.link-dropdown {
  padding: 10px 0px;
  display: inline-block;
  position: relative;
  margin: -20px -5px 0 0;
}

.dropdown .submenu {
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: -10px;
  margin-top: -3px;
  background-color: #ffffff;
  padding: 10px 0;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  border-radius: 15px;
  width: 240px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  padding: 5px 17px;
  transition: all 0.2s ease-out;
}

.submenu li:hover {
  background-color: rgba(178, 38, 188, 0.197);
}

.submenu li a {
  text-decoration: none;
  font-size: 10px;
  display: block;
}

/* botão contato */
.btn-contato {
  position: relative;
  margin: 0;
  padding: 8px 30px;
  border: 2px solid var(--cor-1);
  border-radius: 15px;
  font-size: 15px;
  overflow: hidden;
  cursor: pointer;
  line-height: 1.5;
  background-color: #ffffff;
  color: var(--cor-1);
  transition: transform 0.3s ease-out;
}

.btn-contato:active {
  transform: scale(1.02);
}

.btn-contato .original {
  background: var(--cor-1);
  color: #ffffff;
  font-size: 15px;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}

.btn-contato:hover .original {
  transform: translateY(100%);

}

.btn-contato .btn-contato-letras {
  display: inline-flex;
}

.btn-contato span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}

.btn-contato span:nth-child(2n) {
  transform: translateY(15px);
}

.btn-contato:hover span {
  opacity: 1;
  transform: translateY(0);
}

.btn-contato:hover span:nth-child(2) {
  transition-delay: 0.1s;
}

.btn-contato:hover span:nth-child(3) {
  transition-delay: 0.2s;
}

.btn-contato:hover span:nth-child(4) {
  transition-delay: 0.3s;
}

.btn-contato:hover span:nth-child(5) {
  transition-delay: 0.4s;
}

.btn-contato:hover span:nth-child(6) {
  transition-delay: 0.5s;
}

.btn-contato:hover span:nth-child(7) {
  transition-delay: 0.6s;
}

/* ícone hamburger*/
.menu-mobile {
  display: none;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.menu__icon {
  width: 32px;
  height: 32px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s;
}

.menu__icon span {
  width: 100%;
  height: 0.25rem;
  border-radius: 0.125rem;
  background: linear-gradient(90deg, #762075, #3e0432);
  box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
  transition: width .4s, transform .4s;
}

.menu__icon :nth-child(1) {
  width: 75%;
}

.menu__icon :nth-child(2) {
  width: 50%;
}

.menu__icon:hover {
  transform: rotate(-90deg);
}

.menu__icon:hover span {
  width: 4px;
  transform: translatex(10px);
}

/* FIM MENU TELAS GRANDES*/

/* MENU LATERAL TELAS MENORES */
.menu-lateral {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.3s ease;
  z-index: 10000;
  overflow: auto;
}

.menu-lateral.ativo {
  left: 0;
}

.menu-lateral ul {
  list-style: none;
  padding: 0;
}

.menu-lateral li {
  margin: 15px 10px;
}

.menu-lateral li a {
  text-decoration: none;
  color: #22001B;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.menu-lateral li a:hover {
  color: #762075;
}

/* fundo escuro quando abrir menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.214);
  display: none;
  z-index: 1000;
}

.menu-overlay.ativo {
  display: block;
}

/* accordion */
.accordion-button {
  font-size: 14px !important;
  background-color: transparent !important;
  padding: 20px 10px 10px 0px !important;
  box-shadow: none !important;
  margin: -13px 0 -10px 0 !important;
  font-weight: 500;
}

.accordion-button:hover {
  color: #762075;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: inherit;
  box-shadow: none;
}

.accordion-body {
  font-size: 13px;
  text-align: left;
  padding: 10px 0 3px 0;
}

.accordion-body a {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #762075 !important;
}

.accordion-item {
  border: none;
  margin-left: -19px !important;
}

.accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.links-suporte-accordion {
  margin-left: -9px !important;
}

.links-suporte-accordion a {
  font-size: 14px !important;
  font-weight: 450 !important;
  color: rgb(0, 0, 0) !important;
  transition: all 0.3s ease;
}

.links-suporte-accordion a:hover {
  color: #762075 !important;
}

/* botaõ fechar menu */
.btn-menu-lateral {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: 15px;
  margin-bottom: -20px;
}

.btn-menu-lateral.learn-more {
  width: 140px;
  height: auto;
}

.btn-menu-lateral.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #762075, #3e0432);
  border-radius: 20px;
}

.btn-menu-lateral.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn-menu-lateral.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 8px;
  width: 18px;
  height: 2px;
  background: none;
}

.btn-menu-lateral.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.btn-menu-lateral.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 9px 0;
  margin: 0 0 0 18px;
  color: #762075;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.btn-menu-lateral:hover .circle {
  width: 260px;
}

.btn-menu-lateral:active .circle {
  transform: scale(1.02);
}

.btn-menu-lateral:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(12px, 0);
}

.btn-menu-lateral:hover .button-text {
  color: #fff;
}

.btn-menu-lateral:active .circle {
  background-color: #762075;
}

/* redes sociais menu lateral */
.redes-menu-lateral {
  margin-top: 100%;
  height: auto;
}


.icones-redes-menu-lateral {
  display: inline-flex;
  list-style: none;
  height: auto;
  width: 100%;
  font-family: "Poppins", sans-serif;
  margin: 0;
  justify-content: center;
  gap: 20px;
}

.icones-redes-menu-lateral .icon {
  position: relative;
  background: linear-gradient(90deg, #762075, #3e0432);
  color: #ffffff;
  border-radius: 50%;
  margin: 0px 5px 0 5px;
  width: 40px;
  height: 40px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icones-redes-menu-lateral .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icones-redes-menu-lateral .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icones-redes-menu-lateral .icon:hover .tooltip {
  top: -40px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icones-redes-menu-lateral .icon:hover span,
.icones-redes-menu-lateral .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.icones-redes-menu-lateral .facebook:hover,
.icones-redes-menu-lateral .facebook:hover .tooltip,
.icones-redes-menu-lateral .facebook:hover .tooltip::before {
  background: linear-gradient(90deg, #762075, #3e0432);
  color: #fff;
}

.icones-redes-menu-lateral .twitter:hover,
.icones-redes-menu-lateral .twitter:hover .tooltip,
.icones-redes-menu-lateral .twitter:hover .tooltip::before {
  background: linear-gradient(90deg, #762075, #3e0432);
  color: #fff;
}

.icones-redes-menu-lateral .instagram:hover,
.icones-redes-menu-lateral .instagram:hover .tooltip,
.icones-redes-menu-lateral .instagram:hover .tooltip::before {
  background: linear-gradient(90deg, #762075, #3e0432);
  color: #fff;
}

.icones-redes-menu-lateral .icon:active {
  transform: scale(1.02);
}

/* responsividade menu */
@media (max-width: 768px) {

  nav.links-navegacao,
  .btn-contato,
  .logo-menu {
    display: none;
  }

  .menu-mobile,
  .logo-menu-responsivo {
    display: block;
  }
}

/* FIM MENU */

/* RÓDAPE */
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 80px 80px 0 80px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-top: 8%;
}

.container-rodape {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.wrapper .footer-widget {
  width: calc(25% - 70px);
  margin: 0 15px 50px;
}

.wrapper .footer-widget .subtitulo-rodape {
  display: inline-flex;
  flex-direction: column;
  justify-content: left;
  padding: 0 0 0 10px;
}

.wrapper .footer-widget:nth-child(1) {
  width: calc(30% - 30px);
  margin-right: 15px;
}

.wrapper .footer-widget .subtitulo-rodape a {
  color: #22001B;
  margin-left: -9px;
}

.wrapper .footer-widget .logo-rodape {
  margin-bottom: 30px;
  max-width: 150px;
}

.wrapper .footer-widget .logo-rodape-lrb {
  margin-bottom: 30px;
  vertical-align: middle;
  max-width: 150px;
  display: none;
}

.wrapper .descricao-rodape {
  padding-right: 15px;
}

.wrapper .footer-widget p {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}

.wrapper .footer-widget .icone-redes-sociais {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin-left: -40px !important;
}

.wrapper .footer-widget .icone-redes-sociais li {
  list-style: none !important;
}

.wrapper .footer-widget .icone-redes-sociais li a {
  width: 33px;
  height: 33px;
  margin-right: 10px;
  color: white;
  padding: 5px;
  background-color: #22001B;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .icone-redes-sociais li a:hover {
  transform: scale(1.1);
  background-color: #762075;
}

.footer-widget .icone-redes-sociais li a svg[aria-label="Facebook"] {
  transform: translateX(-3px) scaleX(1.5);
}

.wrapper .footer-widget h6 {
  margin: 10px 0 25px 0;
  font-size: 25px;
  font-weight: 700;
}

.wrapper .footer-widget .links li {
  list-style: none;
}

.wrapper .footer-widget .links li a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 32px;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .links li a:hover {
  color: #762075;
}

.copyright-wrapper {
  padding: 20px 0 10px 0;
  border-top: 1px solid rgb(88, 89, 120, 0.4);
}

.copyright-wrapper p {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.9;
}

#emailcopiado {
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
}

#emailcopiado:hover {
  color: #762075;
}

.criatividade {
  font-size: 12px;
  color: var(--cor-1) !important;
  font-weight: 600 !important;
}

/* responsividade*/
@media(max-width: 1470px) {
  header.menu-principal {
    padding: 0 100px;
  }
}

@media(max-width: 1300px) {
  header.menu-principal {
    padding: 0;
  }
}

@media(max-width: 992px) {
  .container-rodape {
    max-width: 960px;
  }

  header.menu-principal {
    padding: 0;
  }

  footer {
    padding: 20px 0;
  }

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: calc(40% - 40px);
  }
}

@media(max-width: 768px) {
  .container-rodape {
    max-width: 720px;
  }

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: 100%;
    margin: 0 10px 50px;
  }
}

/* FIM RÓDAPE*/
/* FIM DAS CONFIGURAÇÕES GERAIS*/







.aeffect-container {
  width: 100%;
  max-width: 1200px;
  margin: 8% auto auto auto;
  background: white;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
}

/* Abas (Tabs) */
.aeffect-tabs {
  display: flex;
  margin-bottom: 2rem;
  user-select: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #762075 #ffffff;
}

.aeffect-tabs::-webkit-scrollbar {
  height: 6px;
}

.aeffect-tabs::-webkit-scrollbar-thumb {
  background-color: #762075;
  border-radius: 3px;
}

.aeffect-tab {
  flex: none;
  padding: 15px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  white-space: nowrap;
  user-select: none;
  font-size: 1rem;

}

.aeffect-tab:hover {
  background: #ede6f0c5;
}

.aeffect-tab.active {
  font-weight: 600;
  box-shadow: inset 0 -4px 0 #762075;
}

/* Conteúdo das abas */
.aeffect-tab-conteudo {
  display: none;
  animation: aeffect-fadeIn 0.5s ease forwards;
}

.aeffect-tab-conteudo.active {
  display: block;
}

/* Títulos dentro do conteúdo */
.aeffect-titulo-principal {
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 30px;
}

.aeffect-subtitulo {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-left: 5px solid var(--cor-1);
  padding-left: 0.8rem;
  outline: none;
  font-size: 18px;
}

.aeffect-lista,
.aeffect-lista-ordenada {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.aeffect-lista li,
.aeffect-lista-ordenada li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  outline: none;
}


/* Animação fadeIn */
@keyframes aeffect-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */

@media (max-width: 900px) {
  .aeffect-container {
    padding: 2rem 2rem;
  }
}

@media (max-width: 600px) {
  .aeffect-container {
    padding: 1.8rem 1.5rem;
    margin: 2rem 1rem 4rem 1rem;
  }

  .aeffect-tab {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }

  .aeffect-titulo-principal {
    font-size: 1.5rem;
  }

  .aeffect-subtitulo {
    font-size: 1.1rem;
  }

  .aeffect-btn-voltar {
    max-width: 120px;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 400px) {
  .aeffect-tab {
    font-size: 0.8rem;
    padding: 0.7rem 0.8rem;
  }

  .aeffect-titulo-principal {
    font-size: 1.3rem;
  }

  .aeffect-subtitulo {
    font-size: 1rem;
  }
}




.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}