@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Josefin+Slab:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Muli:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400&display=swap");

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css");

* {
  margin: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box; 
  list-style: none;
  text-decoration: none;
}

:root {
  --font-primary: "Baloo Da 2", serif;
  --font-secundary: "Josefin Slab", serif;
  --font-action: "Muli", serif;
}

html{
  scroll-behavior: smooth;
}

body {
  background-color: rgb(75, 82, 87)!important;
}

#pt, #en {
  width: 24px;
  height: auto;
  margin: 0;
  padding:0;
  border:0;
  box-sizing:border-box;
}

#es {
  width: 24px;
  height: 17px;
  margin: 0;
  padding:0;
  border:0;
  box-sizing:border-box;
}

.hamburguer {
  width: 2rem;
  height: 2rem;
  position: fixed;
  z-index: 100;
  right: 2rem;
  top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
}

.show-menu .hamburguer {
  right: 16rem;
  transition: all 1s;
}

.line {
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
  box-shadow: 0.1rem 0.1rem 1px #000;
  transition: transform 1s;
  cursor: pointer;
}

.show-menu #line1 {
  transform: rotate(45deg) translate(0.3rem, 0.45rem);
  background-color: rgb(0, 0, 0);
}
.show-menu #line2 {
  opacity: 0;
  visibility: hidden;
}
.show-menu #line3 {
  transform: rotate(-45deg) translate(0.3rem, -0.45rem);
  background-color: rgb(0, 0, 0);
}

.hamburguer span {
  position: absolute;
  left: 3rem;
  height: 2rem;
  width: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(128, 128, 128);
  color: #fff;
  font-family: var(--font-action);
  opacity: 0;
}

.hamburguer span::before {
  content: "";
  position: absolute;
  border-right: .5rem solid rgb(128, 128, 128);
  border-top: .5rem solid transparent;
  border-bottom: .5rem solid transparent;
  border-left: .5rem solid transparent;
  left: -1rem;
}

.show-menu .hamburguer:hover span {
  opacity: 1;
}

header {
  text-align: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  animation: zoom 25s;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  animation: zoom 25s;
}

@keyframes zoom {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.banner {
  position: relative;
  top: 30%;
}

.banner h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-family: var(--font-primary);
  font-weight: 300;
  text-shadow: 0.3rem 0.4rem 2px rgba(0, 0, 0, 0.4);
  line-height: 3rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: moveBanner 1s 0.5s forwards;
}

.banner p {
  font-family: var(--font-secundary);
  color: #fff;
  font-size: 2rem;
  text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
  opacity: 0;
  animation: moveBanner 1s 0.7s forwards;
}

.banner button {
  font-family: var(--font-action);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  background: #62787e;
  background: -webkit-linear-gradient(to right, #62787e, #949393);
  background: linear-gradient(to left, #62787e, #949393);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  animation: moveBanner 1.5s 0.9s forwards;
  margin-top: 15px;
}

.banner button:hover {
  background: #7c99a1;
  background: -webkit-linear-gradient(to right, #7c99a1, #dfdede);
  background: linear-gradient(to left, #7c99a1, #a8a6a6);
  border: 1px;
}

@keyframes moveBanner {
  0% {
    transform: translateY(10rem) rotateY(-30deg);
  }
  100% {
    transform: translateY(0) rotateY(0);
    opacity: 1;
  }
}

.sidebar {
  width: 20rem;
  height: 100vh;
  background-color: rgb(228, 227, 227);
  position: fixed;
  top: 0;
  right: -20rem;
  transition: all 1s;
  opacity: 0.8;
  z-index: 80;
}

.show-menu .sidebar {
  right: 0;
}

.menu {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
}

.menu-item {
  text-align: center;
  margin-bottom: 0.5rem;
}

.menu-link {
  font-family: var(--font-action);
  font-size: 2rem;
  color: rgb(0, 0, 0);
  text-shadow: .2rem .1rem 1px rgba(255, 255, 255, 0.4);
  transition: color 0.4s;
}

.menu-link:hover {
  color: rgb(168, 168, 168);
  font-size: 2.1rem;
}

.social-media {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.social-media i {
  background-color: #979797;
  color: rgba(255, 255, 255, 1);
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 1s;
}

.social-media i:hover {
  background-color: rgb(151, 151, 151);
  font-size: 1.8rem;
}

.sessao-header h1 {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: #4b4b4b;
  border-bottom: solid 3px #757475;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

#quem-sou-eu {
  width: 95%;
  height: 90%;
  border-radius: 5%;
}

.sessao-conhecimentos {
  padding: 50px 0;
}

#tecnologiasCarousel {
  margin-top: 20px;
}

#conhecimentosCarousel .col-4 {
  text-align: center;
}

#conhecimentosCarousel i {
  font-size: 3em;
  margin-bottom: 10px;
  color: #3498db; /* Cor do ícone, ajuste conforme necessário */
}

#conhecimentosCarousel h3 {
  font-size: 1.2em;
  font-weight: bold;
  color: #333; /* Cor do texto, ajuste conforme necessário */
}

.projetos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-evenly;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.card {
  cursor: pointer;
  width: 18rem;
  height: 25rem;
  position: relative;
}

.card-img-wrapper {
  width: 100%;
  height: 100%;
  background-color: #262626;
  border-radius: 0.5rem;
}

.card-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.card:hover .card-img-wrapper img {
  opacity: 0.5;
}

.card-info {
  position: absolute;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  padding: 2rem;
  text-shadow: 0.3rem 0.2rem 0.3rem rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}

.card-info h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 500;
  color: #eee;
}

.card-info h3 {
  font-family: var(--font-action);
  font-weight: bolder;
  color: #ff4081;
  margin-bottom: 1.5rem;
  width: 220px;
}

.card-info p {
  font-family: var(--font-secundary);
  color: #eee;
  font-weight: 400;
  font-size: 22px;
  width: 90%;
  margin-bottom: 2rem;
}

.btn {
  font-family: var(--font-action);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  background: #62787e;
  background: -webkit-linear-gradient(to right, #62787e, #949393);
  background: linear-gradient(to left, #62787e, #949393);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  animation: moveBanner 1.5s 0.9s forwards;
  box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4);
}

.btn:hover {
  background: #7c99a1;
  background: -webkit-linear-gradient(to right, #7c99a1, #dfdede);
  background: linear-gradient(to left, #7c99a1, #a8a6a6);
  border: 1px;
}
.card-info button {
  width: 8rem;
  height: 2.5rem;
}

.card:hover .card-info {
  bottom: 2rem;
  opacity: 1;
  visibility: visible;
}

.sessao-contato{
    /* margin-top: 85%; */
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato-wrapper{

  width: 60%;
  height: 30rem;
  display: flex;
  box-shadow: 0 2rem 3rem rgba(0,0,0,0.5);
}

.contato-left {
  width: 55%;
  background: url("../img/mensagem-illustration.jpg");
  background-size: cover;
}

.contato-right{
  background-color: rgba(241, 234, 230, 0.27);
  width: 65%;
  padding: 3rem 3rem 3rem 3rem;
}

.sessao-contato h1 {
  width: 100%;
  text-align: center;
  margin-top: -5%;
  margin-bottom: 5%;
  font-family: var(--font-primary);
  color: #272727;
  font-size: 3rem;
  font-weight: lighter;
}

.sessao-contato form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-group{
  position: relative;
  top: -15px;
}

.form{
  position: relative;
  top: -20px;
}

.field{
  border: none;
  background: transparent;
  outline: none;
  width: 20rem;
  height: 3rem;
  font-size: 1.5rem;
  font-family: var(--font-secundary);
  border-bottom: 1px dashed rgb(134, 132, 132);
  margin: 2rem 0;
}

.field-label{
  top: 1.5rem;
  position: absolute;
  left: 0;
  font-family: var(--font-secundary);
  resize: none;
}


.field-label-mensagem{
  top: 1rem;
  position: absolute;
  left: 0;
  font-family: var(--font-secundary);
  resize: none;
}

.btn-enviar {
  position: relative;
  top: -20px;
  width: 35%;
  height: 2rem;
  font-family: var(--font-action);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  background: #62787e;
  background: -webkit-linear-gradient(to right, #62787e, #949393);
  background: linear-gradient(to left, #62787e, #949393);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4);
}

.btn-enviar:hover {
  background: #7c99a1;
  background: -webkit-linear-gradient(to right, #7c99a1, #dfdede);
  background: linear-gradient(to left, #7c99a1, #a8a6a6);
  border: 1px;
}

.sessao-orcamento{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orcamento-wrapper{
  z-index: 1;
  width: 60%;
  height: 80%;
  background-color: #ffffff99;
  border-radius: 10px;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
  position: relative;
}

.sessao-orcamento h1{
  position: absolute;
  top: -2.5rem;
  left: 2rem;
  background: #62787e;
  background: -webkit-linear-gradient(to right, #62787e, #949393);
  background: linear-gradient(to left, #62787e, #949393);
  padding: 0 3rem;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: lighter;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.sessao-orcamento form {
  margin: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 2rem;
  row-gap: 2rem;
}

.sessao-orcamento label {
  font-family: var(--font-secundary);
  font-size: 1.5rem;
  font-weight: bold;
}

.sessao-orcamento input[type="number"]{
  font-family: var(--font-secundary);
  font-size: 1.3rem;
  width: 4rem;
  outline: none;
  border: none;
  padding: 0.3rem;
  /*border-radius: 5px;*/
}

.btn-orcamento{
  text-transform: uppercase;
  padding: 1rem;
  cursor: pointer;
  grid-column: 2;
  margin-top: 3rem;
}

footer {
  width: 100%;
  height: 7rem;
  background-color: #14181b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content{
  width: auto;
  display: flex;
  justify-content: space-between;
}

.footer-content p{
  font-family: var(--font-secundary);
  color: #7a7a7a;
  font-size: 1.5rem;
}

.social-list-resume {
  padding-right: 10%;
}

.social-list-resume a {
  margin: 0 1rem;
  background-color: #979797;
  color: rgba(255, 255, 255, 1);
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 1s;
}

.social-list-resume a:hover {
  background-color: rgb(151, 151, 151);
  font-size: 1.8rem;
}

.social-list-resume ul {
  display: flex;
}

.social-list a {
  margin: 0 2rem;
  background-color: #979797;
  color: rgba(255, 255, 255, 1);
  height: 2.5rem;
  width: 2.5rem;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 1s;
}

.social-list a:hover {
  background-color: rgb(151, 151, 151);
  font-size: 1.8rem;
}

.social-list ul {
  display: flex;
}

#link-topo {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  width: 3rem;
  height: 3rem;
  background: #62787e;
  background: -webkit-linear-gradient(to right, #62787e, #949393);
  background: linear-gradient(to left, #62787e, #949393);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: .5rem;
  box-shadow: 0 0.1rem 0.6rem #00000009;
}

#link-topo:hover {
  background: #7c99a1;
  background: -webkit-linear-gradient(to right, #7c99a1, #dfdede);
  background: linear-gradient(to left, #7c99a1, #a8a6a6);
  border: 1px;
}

a {
  list-style: none;
}

.center-both {
  display: flex;
  justify-content: center;
  align-items: center;
}

h1, h3{
  color: #ffffff;
  font-size: 3.5rem;
  font-family: var(--font-primary);
  font-weight: 300;
  text-shadow: 0.3rem 0.4rem 2px rgba(0, 0, 0, 0.4);
  line-height: 3rem;
  margin-bottom: 2rem;
}

p {
  color: #ffffff;
}

@media (max-width: 767px) {
  footer {
    height: auto;
    flex-direction: column;
    padding: 1rem; /* Adicionei um espaçamento interno */
  }

  .footer-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem; /* Adicionei um espaçamento superior */
  }

  .social-list a {
    margin: 0.5rem;
  }

  #home {
    margin-bottom: 40%;
  }
}

/* Adicionando regras de mídia para ajustar a responsividade */
@media (max-width: 768px) {
  footer {
    height: auto;
    flex-direction: column;
    padding: 1rem; /* Adicionei um espaçamento interno */
  }

  .footer-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem; /* Adicionei um espaçamento superior */
  }

  .social-list a {
    margin: 0.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  footer {
    height: auto;
    flex-direction: column;
    padding: 1rem; /* Adicionei um espaçamento interno */
  }

  .footer-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem; /* Adicionei um espaçamento superior */
  }

  .social-list a {
    margin: 0.5rem;
  }

  .banner {
    position: relative;
    top: 0;
  }
}


@media (max-width: 1024px) and (max-width: 1148px) {
  footer {
    height: auto;
    flex-direction: column;
    padding: 1rem; /* Adicionei um espaçamento interno */
  }

  .footer-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem; /* Adicionei um espaçamento superior */
  }

  .social-list a {
    margin: 0.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  footer {
    height: auto;
    flex-direction: column;
    padding: 1rem; /* Adicionei um espaçamento interno */
  }

  .footer-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1rem; /* Adicionei um espaçamento superior */
  }

  .social-list a {
    margin: 0.5rem;
  }
}