:root {
  --darkSlateGray: #2c2e2ff8;
  --SteelBlue: #408696;
  --White: #ffffff;
  --Green: #008000;
  --CadetBlue: #7fb6b2;
  --DarkCyan: #2f7e88;
  --WhiteSmoke: #f8f8f8;
  --DarkSlateGray-2: #2f3d4c;
  --Gray: #808080;
  --DarkSlateGrey-3: #0e474f;
}
body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: Calibri;
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
img,
span,
div {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.whatsapp {
  top: 89%;
  right: 10px;
  position: fixed;
  background: var(--Green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 100%;
  opacity: 0.3;
  z-index: 8;
  transition: 0.5ms ease-in-out;
  will-change: opacity, transform;
}
.whatsapp:hover {
  opacity: 0.9;
}
.whatsapp img {
  width: 35px;
}
.whatsapp p {
  display: none;
}
input,
textarea,
label {
  user-select: text;
  -webkit-user-select: text;
}
::-webkit-scrollbar {
  width: 10px;
  transition: 0.3s ease-in-out;
}
::-webkit-scrollbar-track {
  background: gray;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: white;
  background-clip: content-box;
  border: 3px solid transparent;
}
::-webkit-scrollbar-thumb:hover {
  background: #c9c9c9;
  background-clip: content-box;
  border: 3px solid transparent;
}
.home {
  height: 100svh;
  overflow: hidden;
  position: relative;
  background-color: var(--SteelBlue);
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(64, 134, 150, 1) 0%,
    rgb(64, 134, 150, 0.7) 50%,
    rgba(14, 71, 79, 0.4) 70%,
    transparent 100%
  );
  z-index: 2;
}
.home img {
  transform: scaleX(-1);
  position: relative;
  z-index: 1;
}
.imagem-inicio {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center;
}
/*menu nav*/
.menu-navegacao {
  display: flex;
  height: 90px;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  right: 80px;
  z-index: 8;
}
#logo-inicio {
  transform: scaleX(1);
  max-height: 50px;
}
#nav-itens {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
#nav-itens .opcao-menu,
.servico-nav {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  font-size: 1.3rem;
  padding: 5px;
  color: var(--White);
}
.opcao-menu {
  padding: 50px 0;
  position: relative;
  cursor: pointer;
  will-change:transform;
}
.opcao-menu:hover,
.servico-nav:hover {
  transform: scale(0.95);
}
.opcao-menu::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--White);
  margin: 5px 0 0 0;
  transition: width 0.4s ease;
}
nav .opcao-menu:hover::after {
  width: 90%;
}
.container-select {
  padding: 10px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}
.container-select:hover .opcao-servicos {
  opacity: 1;
  transform: translatey(40px);
}
.container-select:hover .seta {
  transform: rotate(180deg);
}
.servico-nav:hover .seta {
  transform: rotate(180deg);
}
.opcao-servicos {
  width: 250px;
  inset: 0;
  height: 250px;
  padding: 20px 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: 0;
  transition: 0.5s ease-in-out;
  transform: translateY(60px);
  will-change: transforme, opacity;
  list-style: none;
  overflow-y: auto;
  overflow-x: hidden;
  cursor: pointer;
}
.servicos-opcao {
  width: fit-content;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--White);
  cursor: pointer;
}
.opcao-servicos li {
  transition: 0.3s ease-in-out;
  width: 100%;
  padding: 5px 0px 5px 10px;
}
li:hover {
  transform: scale(0.95);
  background-color: rgba(255, 255, 255, 0.2);
}
.seta {
  transition: 1s ease-in-out;
  width: 15px;
}
.opcao-servicos::-webkit-scrollbar {
  width: 4px;
}
.opcao-servicos::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.opcao-servicos::-webkit-scrollbar-thumb {
  background: var(--White);
  border-radius: 10px;
}

.opcao-servicos::-webkit-scrollbar-thumb:hover {
  background: var(--darkSlateGray);
}
/*Inicio Menu responsivo*/
.menu-responsivo {
  overflow: hidden;
  display: flex;
  background: none;
  border: none;
  width: fit-content;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container-barras {
  display: flex;
  height: 30px;
  width: 30px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-responsivo {
  display: none;
}
.barras {
  width: 25px;
  height: 3px;
  transition: 0.3s;
  border-radius: 10px;
  background: var(--White);
}
#bar-2 {
  margin: 5px 0;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--WhiteSmoke);
  display: block;
  cursor: none;
  transition: 0.3s;
}

.sidenav a:hover {
  color: var(--darkSlateGray);
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  color: var(--WhiteSmoke);
  background: none;
  border: none;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.sidenav .closebtn:hover {
  color: var(--darkSlateGray);
}

#main {
  transition: margin-left 0.5s;
  padding: 20px;
}

/*slogan*/
.container {
  position: absolute;
  top: 0;
  display: flex;
  padding: 0 80px;
  align-items: center;
  width: 100vw;
  height: 100svh;
  z-index: 5;
}
.slogan {
  display: flex;
  flex-direction: column;
  color: var(--White);
}
.slogan h1 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 3px;
  margin: 0;
}
.slogan h2 {
  text-align: center;
  margin: 0 0 30px 0;
  font-weight: 500;
  font-size: 1.5rem;
}
.slogan a {
  color: var(--White);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}
.slogan a .seta {
  animation: mover 0.9s ease-in-out infinite;
  will-change: transform;
}
/*servicos*/
.servicos {
  height: auto;
  padding: 0 80px;
  background-color: var(--WhiteSmoke);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cards-wrapper {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.services {
  text-align: justify;
  background: var(--White);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
  box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  opacity: 1;
  will-change: transform;
}
.services:hover {
  transform: scale(1.02);
}
.textos-servicos {
  text-align: center;
  color: var(--Gray);
  width: 100%;
  padding: 20px 120px;
}
.textos-servicos p {
  font-size: 1.2rem;
}
.titulo-servicos {
  text-align: center;
  color: var(--SteelBlue);
  padding: 50px 0 0 0;
  letter-spacing: 3px;
  font-size: 2rem;
  margin: 0;
}
.services a {
  text-decoration: none;
  width: fit-content;
  font-size: 1rem;
  border-radius: 20px;
  background: var(--SteelBlue);
  font-weight: 700;
  transition: 0.3s ease-in-out;
  color: var(--White);
  padding: 10px 20px;
}
.detalhes{
  will-change: transform;
}
.detalhes:hover {
  background: var(--darkSlateGray);
  transform: scale(0.95);
}

.textos-card {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--Gray);
  padding: 20px;
}
.textos-card h3 {
  font-size: 1.2rem;
  height: 20%;
  margin: 0;
  color: var(--DarkSlateGray-2);
}
.imagens-servicos {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0px 0;
  object-fit: cover;
}
.imagens-card {
  width: 100%;
  height: 150px;
}

.divisão {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px;
  position: relative;
  letter-spacing: 3px;
}
.divisão::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 100%;
  top: 50%;
  background: var(--darkSlateGray);
}
.divisão::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  right: 100%;
  top: 50%;
  background: var(--darkSlateGray);
}
/* Conteudo seçao sobre*/
.sobre {
  height: auto;
  width: 100vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 80px 0 0 0;
  gap: 70px;
  background: var(--White);
  overflow-x: hidden;
}
.conteudo-sobre {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.perfil {
  width: 100%;
  height: 300px;
  border-radius: 10px 10px 0 0;
  opacity: 1;
  object-fit: cover;
  object-position: 0 -40px;
}

.container-sobre {
  display: flex;
  flex-direction: column;
  background-color: var(--White);
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 50%;
}
.container-sobre-textos {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  color: var(--Gray);
}

.titulo-sobre {
  font-size: 2rem;
  letter-spacing: 3px;
  margin: 0;
  color: var(--SteelBlue);
}
.container-sobre-textos p {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.3;
}
.container-missao {
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.texts {
  height: 70%;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: var(--WhiteSmoke);
  font-size: 0.8rem;
  transition: 0.5s ease-in-out;
  will-change:transform;
}
.texts:hover {
  transform: scale(1.01);
}
.texts p {
  text-align: justify;
}
.card-sobre {
  display: flex;
  flex-direction: column;
  background-color: var(--WhiteSmoke);
  box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.3);
  width: 30%;
  height: fit-content;
  padding-bottom: 20px;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  will-change:transform;
}
.card-sobre:hover {
  transform: scale(1.01);
}
.textos {
  padding: 0 20px;
  color: var(--DarkSlateGray-2);
}
.textos h3 {
  color: var(--darkSlateGray);
  font-size: 1.4rem;
}
/*portifólio*/
.portifolio {
  background: var(--WhiteSmoke);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}

.grid-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 80px;
}

.imagens-portfolio {
  width: 100%;
  height: 350px;
  transition: 0.3s ease-in-out;
  object-fit: cover;
  will-change:transform;
}
.imagens-portfolio:hover {
  transform: scale(1.02);
}

.texto-portfolio {
  text-align: center;
  font-size: 1.2rem;
  color: var(--Gray);
  padding: 20px 120px;
}
.titulo-portfolio {
  letter-spacing: 3px;
  font-size: 2rem;
  color: var(--SteelBlue);
}

/*Secao contatos*/

.contato {
  height: auto;
  padding: 30px 0;
  display: flex;
  background: var(--White);
  justify-content: center;
  gap: 18%;
}
.icones-contato {
  width: 35px;
}
.forms_contato {
  display: flex;
  width: 30%;
  gap: 5px;
  flex-direction: column;
}
.forms_contato input {
  height: 2.5rem;
  padding: 0 10px;
  background: var(--WhiteSmoke);
  border: none;
}
#mensagem {
  padding: 10px 0 0 10px;
  background: var(--WhiteSmoke);
  border: none;
}
.label-oculto {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.info-elementos {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  gap: 10px;
}
.info-elementos p {
  color: var(--Gray);
  margin: 20px 0;
}
#numero-telefone {
  margin: 0 0 0 0;
}
.informacoes-redes .info-elementos .icones-contato:hover {
  opacity: 0.9;
  transform: scale(1.03);
  will-change: opacity, transform;
}
.titulos-contato {
  margin: 20px 0;
  font-size: 1.8rem;
}

#btn-enviar {
  background: var(--darkSlateGray);
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  will-change:transform;
  color: var(--White);
  padding: 10px;
}
#btn-enviar:hover {
  background: var(--Gray);
  transform: scale(0.99);
  color: var(--White);
  padding: 10px;
}
select {
  height: 1.5rem;
}
footer {
  text-align: center;
  padding: 20px 0;
  width: 100vw;
  background: var(--darkSlateGray);
}
.copy {
  font-weight: 500;
  color: var(--WhiteSmoke);
}
.copy a {
  color: var(--WhiteSmoke);
  font-weight: 700;
}
#youtube {
  width: 40px;
}
/*Tela de Carregamento*/
.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to right,
    rgb(64, 134, 150) 0%,
    rgb(110, 171, 187) 45%,
    rgb(182, 170, 160) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
     will-change: opacity;
}
.loader img {
  width: 200px;
  animation: pulse 1.6s ease-in-out infinite;
   will-change: opacity, transform;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}
@keyframes mover {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*celulares modo retrato*/
@media ((min-width: 0px) and (max-width:666px)) {
  * {
    cursor: none;
  }
  .menu-navegacao {
    width: 100%;
    justify-content: space-between;
    right: 0;
  }
  #logo-inicio {
    height: 40px;
  }
  #nav-itens {
    display: none;
  }
  .menu-responsivo {
    display: flex;
    margin-right: 20px;
  }
  .menu-itens {
    right: 12px;
  }
  .container {
    padding: 0;
    z-index: 5;
  }
  .slogan h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .slogan h2 {
    font-size: 1rem;
    margin: 0 0 20px 0;
  }
  .slogan a {
    font-size: 1rem;
  }
  .titulo-servicos,
  .titulo-portfolio,
  .titulo-sobre {
    font-size: 1.5rem;
    text-align: start;
  }
  /*seção serviços*/
  .servicos {
    padding: 0;
  }
  .textos-servicos p {
    padding: 0 80px;
  }
  .textos-servicos p {
    font-size: 0.8rem;
    text-align: justify;
  }
  .titulo-servicos {
    padding: 40px 80px 0;
  }
  .textos-card .detalhes {
    font-size: 0.8rem;
    border-radius: 10px;
    text-align: center;
  }
  .divisão {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 20px;
    letter-spacing: 2px;
  }
  .cards-wrapper {
    grid-template-columns: 1fr;
    padding: 0 80px;
  }
  .textos-card p {
    font-size: 0.8rem;
  }
  .textos-card h3 {
    font-size: 1rem;
  }
  .sobre {
    padding: 80 0 0 0;
    gap: 0;
  }
  .conteudo-sobre {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .card-sobre {
    width: 60%;
  }
  .card-sobre .textos h3 {
    font-size: 1.2rem;
  }
  .card-sobre .textos p {
    font-size: 0.8rem;
  }
  .perfil {
    height: 200px;
    object-position: 0 -20px;
  }
  .container-sobre-textos p {
    font-size: 0.8rem;
  }
  .container-missao {
    grid-template-columns: 1fr;
  }
  .texts {
    height: 76%;
  }
  .texts h3 {
    font-size: 1rem;
  }
  .texts p {
    font-size: 0.8rem;
  }
  .grid-fotos {
    grid-template-columns: 1fr;
    padding: 40px 80px;
  }

  .imagens-portfolio {
    height: 200px;
  }

  .texto-portfolio {
    text-align: justify;
    font-size: 0.8rem;
    padding: 20px 80px;
  }
  /*seção contatos*/
  .contato {
    padding: 30px 50px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .icones-contato {
    width: 30px;
  }
  .forms_contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
  .info-elementos {
    font-size: 1rem;
    gap: 10px;
  }
  .titulos-contato {
    font-size: 1.5rem;
  }
  footer {
    padding: 20px 0;
  }
  .copy {
    font-size: 0.7rem;
  }
  #youtube {
    width: 36px;
  }
  #btn-enviar {
    cursor: none;
  }
}
/*celulares modo paisagem*/
@media ((min-width: 0px) and (max-width:666px)) {
  .menu-navegacao {
    width: 100%;
    justify-content: space-between;
    right: 0;
  }
  #logo-inicio {
    height: 40px;
  }
  #nav-itens {
    display: none;
  }
  .menu-responsivo {
    display: flex;
    margin-right: 20px;
  }
  .menu-itens {
    right: 12px;
  }
  .container {
    padding: 0;
    z-index: 5;
  }
  .slogan h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .slogan h2 {
    font-size: 1rem;
    margin: 0 0 20px 0;
  }
  .slogan a {
    font-size: 1rem;
  }
  .titulo-servicos,
  .titulo-portfolio,
  .titulo-sobre {
    font-size: 1.5rem;
    text-align: start;
  }
  /*seção serviços*/
  .servicos {
    padding: 0;
  }
  .textos-servicos p {
    padding: 0 80px;
  }
  .textos-servicos p {
    font-size: 0.8rem;
    text-align: justify;
  }
  .titulo-servicos {
    padding: 40px 80px 0;
  }
  .textos-card .detalhes {
    font-size: 0.8rem;
    border-radius: 10px;
    text-align: center;
  }
  .divisão {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 20px;
    letter-spacing: 2px;
  }
  .cards-wrapper {
    grid-template-columns: 1fr;
    padding: 0 80px;
  }
  .textos-card p {
    font-size: 0.8rem;
  }
  .textos-card h3 {
    font-size: 1rem;
  }
  .sobre {
    padding: 80 0 0 0;
    gap: 0;
  }
  .conteudo-sobre {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .card-sobre {
    width: 60%;
  }
  .card-sobre .textos h3 {
    font-size: 1.2rem;
  }
  .card-sobre .textos p {
    font-size: 0.8rem;
  }
  .perfil {
    height: 200px;
    object-position: 0 -20px;
  }
  .container-sobre-textos p {
    font-size: 0.8rem;
  }
  .container-missao {
    grid-template-columns: 1fr;
  }
  .texts {
    height: 76%;
  }
  .texts h3 {
    font-size: 1rem;
  }
  .texts p {
    font-size: 0.8rem;
  }
  .grid-fotos {
    grid-template-columns: 1fr;
    padding: 40px 80px;
  }

  .imagens-portfolio {
    height: 200px;
  }

  .texto-portfolio {
    text-align: justify;
    font-size: 0.8rem;
    padding: 20px 80px;
  }
  /*seção contatos*/
  .contato {
    padding: 30px 50px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .icones-contato {
    width: 30px;
  }
  .forms_contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
  .info-elementos {
    font-size: 1rem;
    gap: 10px;
  }
  .titulos-contato {
    font-size: 1.5rem;
  }
  footer {
    padding: 20px 0;
  }
  .copy {
    font-size: 0.7rem;
  }
  #youtube {
    width: 36px;
  }
}

/*celulares modo paisagem*/
@media ((min-width: 0) and (min-height:0px) and (max-height:488px)) {
  * {
    cursor: none;
  }
  .menu-navegacao {
    width: 100%;
    justify-content: space-between;
    right: 0;
  }
  #logo-inicio {
    height: 40px;
  }
  #nav-itens {
    display: none;
  }
  .menu-responsivo {
    display: flex;
    margin-right: 20px;
  }
  .menu-itens {
    right: 12px;
  }
  .container {
    padding: 0;
    justify-content: center;
    z-index: 5;
  }
  .slogan h1 {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }
  .slogan h2 {
    font-size: 1rem;
    margin: 0 0 20px 0;
  }
  .slogan a {
    font-size: 1.2rem;
  }
  .titulo-servicos,
  .titulo-portfolio,
  .titulo-sobre {
    font-size: 1.5rem;
    text-align: start;
  }
  /*seção serviços*/
  .servicos {
    padding: 40px;
  }
  .services > p {
    font-size: 0.8rem;
  }
  .textos-servicos p {
    padding: 0 80px;
  }
  .textos-servicos p {
    font-size: 0.8rem;
    text-align: justify;
  }
  .titulo-servicos {
    padding: 40px 80px 0;
  }
  .textos-card .detalhes {
    font-size: 0.8rem;
    border-radius: 10px;
    text-align: center;
  }
  .textos-card p {
    font-size: 0.6rem;
  }
  .divisão {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 20px;
    letter-spacing: 2px;
  }
  .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 80px;
  }
  .textos-card p {
    font-size: 0.8rem;
  }
  .textos-card h3 {
    font-size: 1rem;
  }
  .sobre {
    padding: 80 0 0 0;
    gap: 0;
  }
  .conteudo-sobre {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .card-sobre {
    width: 30%;
  }
  .card-sobre .textos h3 {
    font-size: 1.2rem;
  }
  .card-sobre .textos p {
    font-size: 0.8rem;
  }
  .perfil {
    height: 200px;
    object-position: 0 -20px;
  }
  .container-sobre-textos p {
    font-size: 0.8rem;
  }
  .container-missao {
    grid-template-columns: 1fr;
  }
  .texts {
    height: 76%;
  }
  .texts h3 {
    font-size: 1rem;
  }
  .texts p {
    font-size: 0.8rem;
  }
  .grid-fotos {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 80px;
  }

  .imagens-portfolio {
    height: 200px;
  }

  .texto-portfolio {
    text-align: justify;
    font-size: 0.8rem;
    padding: 20px 80px;
  }

  /*seção contatos*/
  .container-contato {
    display: flex;
    justify-content: space-between;
  }
  .contato {
    padding: 30px 50px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .icones-contato {
    width: 30px;
  }
  .forms_contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
  .info-elementos {
    font-size: 1rem;
    gap: 10px;
  }
  .titulos-contato {
    font-size: 1.5rem;
  }
  footer {
    padding: 20px 0;
  }
  .copy {
    font-size: 0.7rem;
  }
  #youtube {
    width: 36px;
  }
  #btn-enviar {
    cursor: none;
  }
}

/*Tablets*/
@media ((min-width: 666px) and (max-width:999px) and (min-height:489px)) {
  .menu-navegacao {
    width: 100%;
    justify-content: space-between;
    right: 0;
  }
  #logo-inicio {
    height: 40px;
  }
  #nav-itens {
    display: none;
  }
  .menu-responsivo {
    display: flex;
    margin-right: 20px;
  }
  .menu-itens {
    right: 12px;
  }
  .container {
    padding: 0;
    z-index: 5;
  }
  .slogan h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .slogan h2 {
    font-size: 1rem;
    margin: 0 0 20px 0;
  }
  .slogan a {
    font-size: 1rem;
  }
  .titulo-servicos,
  .titulo-portfolio,
  .titulo-sobre {
    font-size: 1.5rem;
    text-align: start;
  }
  /*seção serviços*/
  .servicos {
    padding: 0;
  }
  .textos-servicos p {
    padding: 0 80px;
  }
  .textos-servicos p {
    font-size: 0.8rem;
    text-align: justify;
  }
  .titulo-servicos {
    padding: 40px 80px 0;
  }
  .textos-card .detalhes {
    font-size: 0.8rem;
    border-radius: 10px;
    text-align: center;
  }
  .divisão {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 20px;
    letter-spacing: 2px;
  }
  .cards-wrapper {
    grid-template-columns: 1fr;
    padding: 0 80px;
  }
  .textos-card p {
    font-size: 0.8rem;
  }
  .textos-card h3 {
    font-size: 1rem;
  }
  .sobre {
    padding: 80 0 0 0;
    gap: 0;
  }
  .conteudo-sobre {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .card-sobre {
    width: 60%;
  }
  .card-sobre .textos h3 {
    font-size: 1.2rem;
  }
  .card-sobre .textos p {
    font-size: 0.8rem;
  }
  .perfil {
    height: 200px;
    object-position: 0 -20px;
  }
  .container-sobre-textos p {
    font-size: 0.8rem;
  }
  .container-missao {
    grid-template-columns: 1fr;
  }
  .texts {
    height: 76%;
  }
  .texts h3 {
    font-size: 1rem;
  }
  .texts p {
    font-size: 0.8rem;
  }
  .grid-fotos {
    grid-template-columns: 1fr;
    padding: 40px 80px;
  }

  .imagens-portfolio {
    height: 200px;
  }

  .texto-portfolio {
    text-align: justify;
    font-size: 0.8rem;
    padding: 20px 80px;
  }
  /*seção contatos*/
  .contato {
    padding: 30px 50px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .icones-contato {
    width: 30px;
  }
  .forms_contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
  .info-elementos {
    font-size: 1rem;
    gap: 10px;
  }
  .titulos-contato {
    font-size: 1.5rem;
  }
  footer {
    padding: 20px 0;
  }
  .copy {
    font-size: 0.7rem;
  }
  #youtube {
    width: 36px;
  }
}

/*Tablets em modo retrato*/
@media (min-width: 741px) and (max-width: 1024px) and (min-height: 1023px) {
  .menu-navegacao {
    width: 100%;
    justify-content: space-between;
    right: 0;
  }
  #logo-inicio {
    height: 40px;
  }
  /* .home .imagem-inicio {
    height: 100svh;
  } */
  #nav-itens {
    display: none;
  }
  .menu-responsivo {
    display: flex;
    margin-right: 20px;
  }
  .menu-itens {
    right: 12px;
  }
  .container {
    padding: 0 0 50px 50px;
    z-index: 5;
  }
  .slogan h1 {
    font-size: 2rem;
  }
  .slogan h2 {
    font-size: 1rem;
    margin: 0 0 20px 0;
  }
  .slogan a {
    font-size: 1rem;
    cursor: none;
  }
  .titulo-servicos,
  .titulo-portfolio,
  .titulo-sobre {
    font-size: 1.5rem;
    text-align: start;
  }
  /*seção serviços*/
  .servicos {
    padding: 0;
  }
  .textos-servicos p {
    padding: 0 80px;
  }
  .textos-servicos p {
    font-size: 0.8rem;
    text-align: justify;
  }
  .titulo-servicos {
    padding: 40px 80px 0;
  }
  .textos-card .detalhes {
    font-size: 0.8rem;
    border-radius: 10px;
    text-align: center;
  }
  .divisão {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px 20px;
    letter-spacing: 2px;
  }
  .cards-wrapper {
    grid-template-columns: repeat(2, 300px);
    padding: 0 80px;
  }
  .textos-card p {
    font-size: 0.8rem;
  }
  .textos-card h3 {
    font-size: 1rem;
  }
  .sobre {
    padding: 80 0 0 0;
    gap: 0;
  }
  .conteudo-sobre {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .card-sobre {
    width: 50%;
  }
  .card-sobre .textos h3 {
    font-size: 1.2rem;
  }
  .card-sobre .textos p {
    font-size: 0.8rem;
  }
  .perfil {
    height: 200px;
    object-position: 0 -20px;
  }
  .container-sobre-textos p {
    font-size: 0.8rem;
  }
  .container-missao {
    grid-template-columns: 1fr;
  }
  .texts {
    height: 76%;
  }
  .texts h3 {
    font-size: 1rem;
  }
  .texts p {
    font-size: 0.8rem;
  }
  .grid-fotos {
    grid-template-columns: 1fr;
    padding: 40px 80px;
  }

  .imagens-portfolio {
    height: 300px;
  }

  .texto-portfolio {
    text-align: justify;
    font-size: 0.8rem;
    padding: 20px 80px;
  }
  /*seção contatos*/
  .contato {
    padding: 30px 50px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .icones-contato {
    width: 30px;
  }
  .forms_contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
  .info-elementos {
    font-size: 1rem;
    gap: 10px;
  }
  .titulos-contato {
    font-size: 1.5rem;
  }
  footer {
    padding: 20px 0;
  }
  .copy {
    font-size: 0.7rem;
  }
  #youtube {
    width: 36px;
  }
  .whatsapp {
    cursor: none;
  }
}

/*notebooks*/
@media ((min-width: 0) and (min-width:999px) and (min-height:1025px)) {
  /* .home .imagem-inicio {
    height: 100svh;
  } */
}

@media ((min-width: 1025px) and (max-width:1300px)) {
  * {
    cursor: none;
  }
  #nav-itens a {
    cursor: none;
    font-size: 1rem;
  }
  #logo-inicio {
    height: 50px;
  }
  .servicos-opcao {
    cursor: none;
  }
  .slogan h1 {
    font-size: 3rem;
    letter-spacing: 3px;
  }
  .slogan h2 {
    font-size: 1.2rem;
    margin: 0 0 20px 0;
  }
  .slogan a {
    font-size: 1.2rem;
  }
  .titulo-portfolio,
  .titulo-servicos,
  .titulo-sobre,
  .titulos-contato {
    font-size: 2rem;
  }
  .divisão {
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 20px;
    letter-spacing: 3px;
  }
  .textos-servicos p {
    font-size: 1rem;
  }
  .textos-card p {
    font-size: 0.8rem;
  }
  .textos-card h3 {
    font-size: 1rem;
  }
  .sobre {
    padding: 40px 0 0 0;
    gap: 20px;
  }
  .container-sobre-textos p {
    font-size: 0.9rem;
  }
  .texts h3 {
    font-size: 1rem;
  }
  .texts p {
    font-size: 0.7rem;
    padding-bottom: 20px;
  }
  .texto-portfolio {
    font-size: 1rem;
  }
  #btn-enviar {
    cursor: none;
  }
  .info-elementos {
    font-size: 1.2rem;
    gap: 10px;
  }
  .icones-contato {
    width: 30px;
  }
  #youtube {
    width: 35px;
  }
}
@media (min-width: 1301px) and (max-width: 2090px) {
  /* .home .imagem-inicio {
    width: 100%;
  } */
}
@media (min-width: 2091px) {
  /* .home .imagem-inicio {
    width: 100%;
  } */

  .cards-wrapper {
    max-width: 1600px;
  }
  .container-sobre {
    max-width: 1070px;
  }
  .card-sobre {
    max-width: 550px;
  }
  .texto-portfolio {
    max-width: 1680px;
  }
  .divisão {
    max-width: 1600px;
  }
  .forms_contato {
    max-width: 640px;
  }
  .container-contato {
    max-width: 260px;
  }
}
