html {
  scroll-behavior: smooth;
  width: 100%;
  font-family: 'Open Sans Light';
}

body {
 
  font-family: 'Open Sans';
}


/* NAV _______________________________________________*/


.nav-logo {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10%;
    width: 50px;
    height: auto;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;

}

#antes{
      width: 100%;
    z-index: 10;
    position: fixed;
    transition: all 0.5s 
ease-in-out;
}

#depois{
      width: 100%;
    z-index: 10;
    position: fixed;
    transition: all 0.40s 
ease-in-out;
    background-color: #f5f5f5;
    opacity: 0.99;
}


/* CAROUSEL _______________________________________________*/

.button-color{
  background-color: #d0672f;
  border-color: #d0672f;
  color: #fff;
}

.button-color:hover{
  color: #fff;
  background-color: #b85723;
  border-color: #b85723;
  
}

.swiper-slide img {
  max-width: 100%; /* Define um tamanho máximo para a imagem */
  height: auto;     /* Mantém a proporção original da imagem */
  
}

.title-label{
    font-size: 3rem;
    color: white;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-blue-royal), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, .3));
}

.white-title-label{
  color: #ffffff; /* cor clara para melhor contraste */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* sombra forte para destacar sobre qualquer fundo */
  font-weight: 600; /* reforça a espessura do texto */
  letter-spacing: 0.5px; /* melhora a legibilidade */
  line-height: 1.2; /* dá mais respiro entre as linhas */
}

.sub-title{
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}



/* BODY _______________________________________________*/

.whatsapp {
  position: fixed;
  z-index: 99999;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  display: block;


}

.rightbyte {
  background-image: url('../img/right.png');
  background-repeat: no-repeat, repeat;

 }

.rightbyteoverlay {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  position: absolute;
  z-index: -999;


}

.paralax {

  background-image: url('../img/parallax2.png');
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;


}

.text-color {
  text-decoration: #2c2c2b;
}

.alinhar{
    text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  line-height: 1.6; /* melhora a leitura */
  word-spacing: 0.02em; /* evita espaçamento exagerado */
}

.body-title-format {
  color: #262626;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.body-text-format {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #3d3d3d;

  &.small {
    font-size: 14px;
  }
}

.card1 {
  display: block;
  position: relative;
  max-width: 450px;
  box-shadow: 7px 7px 5px #6cb8d4;
  border: solid #6cb8d4 1px;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;

  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: #d0672f;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
  }

  &:hover:before {
    transform: scale(21);
  }
}

.card1:hover {
  .body-text-format {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
  }

  .body-title-format {
    transition: all 0.3s ease-out;
    color: #ffffff;
  }
}



.services-effect {
  color: #18272F;
  position: relative;
  text-decoration: none;

}

.services-effect::before {

  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #d0672f;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;

}

.services-effect:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}


.img-governancati {
  border-radius: 10px;
  height: 85%;
  width: 90%;
  display: block;

}

.img-gestaoti {
  border-radius: 10px;
  height: 100%;
  z-index: 999;
  display: block;

}

.alignrow{
  align-items: center;
}

.contact {
  padding: 150px;
}

/* FOOTER _______________________________________________*/


:target {
  scroll-margin-top: .8em;
}
.bg-footer {
  background-color: #161f69;
  color: #fff;
  padding: 8px;
  box-sizing: border-box;
}

.copyright {
  background-color: #161f69;
  color: #fff;
  padding: 5px;
}

.copyright-text{
  margin-bottom: 1px;
  color: #c1c4cf;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: inherit;
  white-space: normal;
}

.align-text{
  text-align: justify;
  letter-spacing: -.05rem;
}


.footer-icons {
  width: 40px;
  height: 40px;
  top: 10%;
}

.icons.teste {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  top: 10%;

}

.icons.teste li {
  margin: 0 10px;
}

.icons.teste a {
  text-decoration: none;
}

.text-footer{
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: inherit;
  white-space: nowrap;
}

.text-footer-sm{
  color: #c1c4cf;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: inherit;
  white-space: nowrap;
}

.infos{
  list-style: none;
  display: inline-block;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .text-start,
  .text-end {
    text-align: center;
  }
}


.btn-effect {

  border: none;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.btn-effect:hover {

  transform: translateY(-7px);

}

