@font-face {
  font-family: Comfortaa-Light;
  src: url(/fonts/Comfortaa-Light.ttf);
}

@font-face {
  font-family: Comfortaa-Bold;
  src: url(/fonts/Comfortaa-Bold.ttf);
}

* {
  box-sizing: border-box;
  font-family: 'Comfortaa-light';
  font-weight: 100;
}

html {
  scroll-behavior: smooth;
}

.body {
  color: #dddddd;
  margin: 0px;
  background-color: #1a1d2c;
  background-image: url(/img/bkmodelo.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.bold {
  font-weight: 800;
}

/* NAVIBAR */
#navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.navibar {
  background-image: linear-gradient(to top, rgba(0,0,0,0), rgb(21, 21, 31));
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
}

.navbar-itens {
  font-size: 0.5vw;
  transition: all 0.5s;
}

.navbar-itens a:link,
.navbar-itens a:visited {
  color: #dddddd;
  font-family: Comfortaa-Bold;
}

.logo-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  /* height: 200px; */
}
.logo-navbar img {
  width: 9vw;
  transition: all 0.5s;
}

.navbar-itens a {
  /* height: 100%; */
  padding-left: 15px;
  padding-right: 15px;
  /* transition: all, 0.5s; */
  /* font-weight: bold; */
}
.navbar-itens a:hover {
  transition: all, 0.8s;
  /* font-weight: bold; */
  color: gold;
}

/* HEADER */
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 85vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(/img/background-site.png);
  background-color: #21253a;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, bottom 50px;
  color: #ffffff;
  box-shadow: #000000 0px 3px 5px;
}

.textoheader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 80% 40%;
  padding-left: 15%;
}

.textoheader h1 {
  font-size: 2.5vw;
  color: #dddddd;
  font-weight: 300;
  font-style: normal;
  width: 350px;
  line-height: 110%;
  margin: 10px 0 10px 0;
}

.textoheader h2 {
  margin: 2px 0px 2px 0px;
  font-size: 1vw;
}

.logosvg img {
  width: 13rem;
}

.insta {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 300px;
  height: 25px;
  color: #dddddd;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.9vw;
}

.insta img {
  width: 30px;
  padding-right: 5px;
}

.font-amarelo {
  color: #e6c200;
}

.imgheader {
  display: flex;
  flex-direction: column;
  justify-content: right;
  width: 50%;
  height: 100%;
}

.imgheader img {
  height: fit-content;
}

/* Botões */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: linear-gradient(
    to right,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  width: 150px;
  height: 40px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  color: #000000;
  box-shadow: #2c2c2c 1px 1px 5px;
}

.shadow {
  transition: all 0.5s;
}

.shadow:hover {
  transition: all 0.5s;
  box-shadow: #2c2c2c 1px 1px 15px;
}

.buttonHeader {
  margin: 15px 0px 15px 0px;
}

/* GOLD LINE */
.gold-line {
  border-bottom: solid 1px #aa771c;
}

.gold-line-right {
  border-right: solid 1px #aa771c;
}

a {
  text-decoration: none;
}

/* CONTAINER */
.container {
  padding: 50px 0px 50px 0px;
}

/* SOBRE */
.rolar {
  scroll-margin-block-start: 60px;
}
.sobre {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  box-shadow: 0px -0px 15px #0f121f inset;
  background-color: #1a1d2c;
}

.container-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

/* SOBRE TEXTO */
.sobre .texto-sobre {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  font-size: 0.7vw;
  text-align: justify;
  margin: 3%;
}

.title {
  margin-right: 8%;
}

.titulos {
  font-style: italic;
  font-family: Comfortaa-Bold;
  font-size: 2.5vh;
}

.sub-titulo{
  font-family: Comfortaa-Bold;
  /* font-size: 100%; */
}

.sobre .texto-sobre h1 {
  /* font-size: 1.5vw; */
  font-style: italic;
}
.sobre .texto-sobre h2 {
  /* font-size: 0.9vw; */
}

.sobre .texto-sobre .sobre-texto {
  width: 95%;
  text-indent: 5px;
}

.testimonial {
  font-style: italic;
  font-weight: 600;
  background-color: #737685;
  border-radius: 5px;
  padding: 10px;
  color: #dddddd;
  /* backdrop-filter: blur(5px); */
}

/* IMG SOBRE */
.sobre .img-sobre {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  /* height: 100%; */
  margin: 3%;
  /* opacity: 90%; */
}

.sobre .img-sobre img {
  width: 20vw;
  height: auto;
  border-radius: 5px;
  box-shadow: 1px 2px 5px #0f121f;
}

/* VIDEOS */
.container-videos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 85%;
  /* text-align: center; */
}


.container-videos p{
  text-align: center;
}

.videos-container{
  display: flex;
  align-items: center;
  justify-content: cener;
  flex-direction: column;
}

.videos-container p{
font-size: 3vw;
}

video{
  width: 60vw;
  border-radius: 10px;
  box-shadow: #2c2c2c 0px 1px 5px;
}

.videohorizontais {
  /* width: 700px; */
  height: auto;
  border-radius: 10px;
  box-shadow: #2c2c2c 0px 1px 5px;
  transition: all 0.5s;
}

video:hover {
  transition: all 0.5s;
  box-shadow: #2c2c2c 0px 1px 15px;
}

.container-titulo {
  /* display: flex;
  justify-content: center;
  align-items: center;
  text-align: left; */
  width: 100%;
}

.videos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background-color: #e7dede;
  color: #0f121f;
  box-shadow: 0px -0px 15px #0f121f inset;
  padding: 15px 0px 15px 0px;
}

/* PROCEDIMENTOS */
.container-procedimentos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 85%;
}

.procedimentos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px -0px 15px #0f121f inset;
}

.procedimentos .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 17vw;
  display: flex;
  flex-direction: column;
  margin: 15px;
  background-color: rgba(255, 248, 248, 40%);
  backdrop-filter: blur(5px);
  color: #ffffff;
  padding: 1px;
  box-shadow: #2c2c2c 2px 1px 5px;
  border-radius: 10px;
  /* opacity: 60%; */
  transition: 0.5s;
  z-index: -15;
}

.card:hover {
  opacity: 100%;
  transition: 1s;
}

.cardtext {
  font-size: 0.6vw;
  text-align: justify;
}

.saiba-mais {
  display: flex;
  justify-content: end;
  width: 100%;
}

.auxiliar .cardfocusimg {
  background-color: #aa771c;
}

.cardimg img {
  width: 100%;
  box-shadow: #2c2c2c 1px 1px 5px;
  border-radius: 10px 10px 0px 0px;
  overflow: auto;
}

.procedimentos .cards .card .cardtitle {
  padding: 0px 15px 0px 15px;
}

.procedimentos .cards .card .cardtitle h2 {
  font-family: Comfortaa-Bold;
  font-size: 0.7vw;
  padding: 10px 0px 10px 0px;
  text-align: center;
}

.procedimentos .cards .card .carddescription ul li {
  padding-bottom: 3px;
}

.procedimentos .cards .card .carddescription {
  font-size: 0.vw;
  padding: 0px 20px 0px 30px;
}

.procedimentos .cards .card .carddescription p {
  text-indent: 7%;
}

.procedimentos .cards .card .carddescription h3 {
  margin: 0px;
}

/* EXPERIENCIA */
.experiencia {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e7dede;
  color: #0f121f;
  box-shadow: 0px -0px 15px #0f121f inset;
  width: 100%;
}

.container-experiencia {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 85%;
}

.experiencia a {
  text-decoration: none;
  color: black;
  font-family: Comfortaa-Bold;
  transition: 1s;
}

.experiencia .experiencia-sessao .imagem-experiencia img:hover {
  transition: 0.5s;
  box-shadow: #2c2c2c 1px 1px 15px;
}

.experiencia .experiencia-sessao {
  display: flex;
  justify-content: center;
  align-items: center;
}

.experiencia .experiencia-sessao .imagem-experiencia img {
  width: 15vw;
  /* height: auto; */
  box-shadow: #2c2c2c 1px 1px 5px;
  border-radius: 5px;
}

.imagem-experiencia-mobile img {
  display: none;
}

.experiencia .texto-experiencia {
  width: 60%;
  text-align: justify;
  align-content: center;
  font-size: 0.8vw;
}

.texto-experiencia {
  padding: 25px;
  /* line-height: 30px; */
}

/* FORMULARIO */
.formulario {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* flex-wrap: wrap; */
  /* padding: 5%; */
  background-color: #1a1d2c;
}

.container-formulario {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}

.formRight {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* height: 500px; */
  color: #ffffff;
  margin: 1%;
  padding: 5%;
  font-size: 70%;
  font-weight: 500;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contato {
  text-align: center;
  width: 95%;
}

form button {
  margin-top: 5%;
  /* margin-right: 15%; */
  align-self: last baseline;
}

#SProce {
  margin-top: 15px;
  margin-bottom: 15px;
  align-self: baseline;
  /* margin-left: 35px; */
  border: 1px solid rgb(150, 150, 150);
  border-radius: 5px;
  background-color: #e7dede;
  font-family: Comfortaa-Light;
}

#LProce {
  text-align: left;
}

textarea::placeholder{
  color: #000000;
  
}



textarea {
  width: 100%;
  height: 100px;
  background-color: #e7dede;
  border: 1px solid rgb(150, 150, 150);
  border-radius: 5px;
}

input::placeholder{
  color: #000000;
  
}


input {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 5px;
  background-color: #e7dede;
  border: 1px solid rgb(150, 150, 150);
  border-radius: 5px;
  
    
}


.formleft {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-content: center;
  width: 100%;
  color: #ffffff;
  margin: 1%;
  padding: 1%;
}

.formRight.contato {
  justify-items: center;
  background-color: #000000;
}

.formleft .logorodape img {
  height: 13vw;
  width: auto;
}

.RedesSociais {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 60%;
  height: 100px;
}

.RedesSociais img {
  width: 40px;
  height: auto;
}

.email a {
  text-decoration: none;
  color: #e7dede;
}

/* RODAPÉ */
.rodape {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #000000;
}

.rodape a {
  font-size: 10px;
}

.rodape a {
  text-decoration: none;
  color: #e7dede;
}


/* RETORNO FOEMULARIO - ARQUIVO ENVIA.PHP*/
.retform {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  height: 70vh;
  text-align: center;
  /* background-color: rgba(255, 248, 248, 10%); */
  /* backdrop-filter: blur(5px); */
  padding: 5px;
  /* box-shadow: #222222 0px 2px 10px; */
}

.retform h1 {
  font-size: 2vw;
  width: 100%;
  line-height: 20px;
}

.retform p {
  font-size: 1vw;
}

.logoretform img {
  width: 65%;
  margin-bottom: 15px;
}

.logoretform {
  width: 100%;
}

.bodyretform {
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background-color: #0f121f;
}


/* AUXILIAR */
.auxiliar {
   background-color: #1a1d2c;
}

/* DETALHES - AUXILAR*/
.auxiliar-detalhes h3 {
text-align: left;
}

.auxiliar-detalhes P {
  /* line-height: 205%; */
  width: 100%;
}

.auxiliar-detalhes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* margin-top: 100px; */
  background-color: #e7dede;
  color: #0f121f;
  /* box-shadow: #222222 2px 2px 10px inset; */
  font-size: 0.9vw;
}

.auxiliar-detalhes-texto {

  width: 100%;
  /* height: auto; */
  text-align: justify;
  text-indent: 10px;
  /* line-height: 30px; */
}
.auxiliar-detalhes-texto-booton {
  width: 100%;
  height: auto;
  /* text-align: justify; */
  text-indent: 10px;
  /* line-height: 30px; */
  margin-bottom: 7px;
}

.auxiliar-detalhes-vd {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
}

.auxiliar-detalhes-vd video {
  width: 100%;
  /* height: 350px; */
  margin: 0px 15px 0px 15px;
}

.auxiliar-detalhes-img img {
  width: 15vw;
  height: auto;
  margin: 0px 15px 0px 15px;
  border-radius: 5px;
  box-shadow: #222222 1px 1px 7px;
}


.auxiliar-detalhes-img-mobile{
display: flex;
align-items: center;
justify-items: center;
flex-direction: column;

}

.auxiliar-detalhes-img-mobile img{
  display: none;
  width: 95%;
  /* height: auto; */
  /* margin: 0px 25px 0px 25px; */
  border-radius: 5px;
  box-shadow: #222222 1px 1px 7px;
}


.container-texto ul{
/* padding-left: 10%; */
padding-bottom: 10px;
}

.container-texto ul li {
  font-size: 80%;
  margin-bottom: 7px;

}

.container-texto {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  width: 100%;
  margin-bottom: 10px;
}

.container-auxilar {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 60%;
}

.video-auxiliar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 55px 0px 15px 0px;
}

.video-auxiliar video {
  width: 90%;
  border-radius: 5px;
}
