/*--RESET CSS--*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

/*--------------*/

html {
    scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.container-1 {
  overflow-x: hidden;
  max-width: 1400px;
  margin: auto;
}

.container {
    overflow-x: hidden;
    max-width: 1100px;
    margin: auto;
}

.img{
        max-width:100%;
        width:100%;
        pointer-events: none;
}

h3 {
    text-align: center;
    margin-top: 106px;
    margin-bottom: 34px;
    font-size: 26px;
    color: black;
    font-weight: 400;
}


header {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100; /*--Essa função joga o item para frente de qualquer outro elemento na página--*/
    transition: all 0.3s ease-in-out; /* Transição suave para o tamanho do header */
}

.nav {
    max-width: 1100px;
    margin: auto;
}

nav{
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo img{
    display: block;
    background: none;
    width: 60px;
    opacity: 1; /* Opacidade padrão (sem hover) */transition: opacity 0.3s ease; /* Adiciona uma transição suave */
}

.logo img:hover {
  opacity: 0.3; /* Opacidade padrão (sem hover) */
}

.nav-list {
    padding-right: 0px;
    list-style: none;
    display: flex;
    cursor: pointer;
    background-color: none;
}

.nav-list li a{
    margin-left: 10px;
    background-color: none;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 400;
    color: black;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #FFA54C;
}


/*--CONFIGURAÇÃO SESSÃO 01--------------------------*/


.section-01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%; /* Para ocupar toda a largura disponível */
  max-width: 100%; /* Limita a largura máxima do container */
  margin: 0 auto; /* Centraliza horizontalmente na página */
}

.section-01 img {
  width: 100%; /* Faz com que as imagens ocupem toda a largura do container */
}

.img-intro {
    margin-top: 40px;
}

.introducao, .contexto, .design {
  text-align: left;
  width: 600px; /* Ocupa toda a largura do container */
  margin-top: 90px;
  margin-left: 150px;
  margin-bottom: 90px;
  line-height: 22px; 
}

.introducao h2 {
  margin-bottom: 30px;
font-weight: 500;
}

.introducao p span{
 font-weight: 500;
}

.intro-principal {
  margin-bottom: 50px;
}

.h5-case {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.img02 {
    display: none
}

.juxtapose {
    margin-bottom: -23px;
    width: 100%;
}


/*--CONFIGURAÇÃO SESSÃO 02 – PROJETOS--------------------------*/


.section-02 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.grupo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 7px; /* Espaçamento entre os cards */
}

.card{
    text-align: left;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.card:hover {
  transform: translateY(-10px); /* Valor de deslocamento vertical */
}

.card h6 {
    margin-top: 15px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;;
    text-decoration: none;
    color: black;
}

.card h4 {
    margin-top: 2px;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
    color: black;
}


/*--EFEITO EASE IN OUT – CARDS----------*/


.elemento2 {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);   

  }
}
.logo {
    cursor: pointer;
}

.elemento3 {
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);   

  }
}
.logo {
    cursor: pointer;
}


/*--CONFIGURAÇÃO SESSÃO 04 – CONTATOS-------------------------*/


.section-06 {
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contato-email-footer{
    font-size: 56px;
    font-weight: 500;
    color: black;
    margin-bottom: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: 0.3s ease;
}

.contato-email-footer:hover{
    color: #FFA54C;
}

.whatsapp-button a {
    color: black;
    text-decoration: none;
    font-size: 26px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: 0.3s ease;
}

.span-whatsapp {
    font-weight: 600;
}

.whatsapp-button a:hover {
    color: #FFA54C;
}

/*--CONFIGURAÇÃO FOOTER--*/

.footer {
    margin-top: 100px;
    margin-bottom: 25px;
}

hr {
  border: none; /* Remove as bordas padrão */
  border-top: 2px solid #e7e7e7; /* Cria uma borda superior de 1px sólida */
}

.bloco-info-footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 25px;
    font-size: 16px;
    color: black;
}

.destaque-nome {
    font-weight: 600;
}

.footer ul {
    list-style: none;
    display: flex;
}

.footer li a{
    list-style: none;
    color: black;
    margin-left: 38px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer li a:hover {
    font-weight: 600;
    color: #FFA54C;
}



@media screen and (max-width: 1400px) {
  .img02 {
  display: block
}    

 .juxtapose {
  display: none;
}
}

/*--CONFIGURAÇÃO MOBILE 1150PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 1150PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 1150PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 1150PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 1150PX--------------------------------*/


@media screen and (max-width: 1150px) {
    
.container {
    max-width: 1100px;
    margin: auto;
}
    

.nav {
    max-width: 1100px;
    margin: auto;
}

nav{
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo img{
    display: block;
    background: none;
    width: 60px;
    opacity: 1; /* Opacidade padrão (sem hover) */transition: opacity 0.3s ease; /* Adiciona uma transição suave */
    position: relative;
    left: 7vh;
}

.logo img:hover {
  opacity: 0.3; /* Opacidade padrão (sem hover) */
}

.nav-list {
    padding-left: 0px;
    list-style: none;
    display: flex;
    cursor: pointer;
    background-color: none;
    position: relative;
    right: 7vh;

}

.nav-list li a{
    margin-left: 10px;
    background-color: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    color: black;
    transition: color 0.3s ease;
}


/*--CONFIGURAÇÃO SESSÃO 01-----------------------------------------------*/


.introducao, .contexto, .design {
  margin-left: 100px; 
}

.introducao h2 {
  margin-bottom: 30px;
}

.introducao p span{
 font-weight: 600;
}

.intro-principal {
  margin-bottom: 50px;
}

.h5-case {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
    
/*--CONFIGURAÇÃO SESSÃO 02-----------------------------------------------*/   
    
    
    .h3 {
    text-align: center;
    }

    .grupo-cards {
    grid-gap: 15px;
    }

    .card img {
    max-width: 225px;
    }

    
/*--CONFIGURAÇÃO SESSÃO 03-----------------------------------------------*/


.section-03 {
    margin-top: 60px;
    display: flex;
    justify-content:space-around;
}


.imagem-perfil img {
    display: none;
}
    
.imagem-perfil-2 {
    display:block;
    margin-right: 7vh;
}

    
.sobre {
    max-width: 390px;
    position: relative;
    right: 7vh;
}

.texto-sobre {
    margin-top: 25px;
    font-size: 16px;
    color: black;
    font-weight: 400;
    line-height: 22px;

}

.btn-entre-em-contato-2 {
    border: 1px solid black;
    border-radius: 0;
    padding: 10px 45px 10px 45px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: 0.3s ease;
    margin-top: 35px;
}

.btn-entre-em-contato-2:hover {
    background-color: black;
    color: white;
}
    

/*--CONFIGURAÇÃO SESSÃO 04-----------------------------------------------*/
    
    
.contato-email-footer{
    font-size: 50px;
}
    
/*--FOOTER-----------------------------------------------*/

    .bloco-info-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    margin-top: 35px;
    }
    
    .bloco-info-footer ul {
    margin-top: 25px;}
    
    .footer li a {
    margin: 8px;
    }
}

/*--CONFIGURAÇÃO MOBILE 960PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 960PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 960PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 960PX--------------------------------*/
/*--CONFIGURAÇÃO MOBILE 960PX--------------------------------*/



@media screen and (max-width: 960px){

.email-header {display: ;}
    
.introducao, .contexto, .design {
  text-align: left;
  width: 350px; /* Ocupa toda a largura do container */
  margin-top: 90px;
  margin-left: 30px;
  margin-bottom: 90px;
  line-height: 22px; 
}
    
    
   .card img {
    max-width: 205px;
    }
    
    .grupo-cards {
    margin-left: 1vh;
    margin-right: 1vh;
    grid-gap: 4px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    }

.section-03 {
    margin-top: 80px;
    display:flex;
    flex-direction: column;
    align-items:center;
    margin-left: 2vh;
    margin-right: 2vh;
}

.sobre {
    max-width: 415px;
    right: 0vh;
    justify-content:center;
    align-items: center;
}

.imagem-perfil-2 img {
    display:block;
    margin-right: none;
    margin-left: 12vh;
    width: 300px;
    margin-bottom: 35px;
}
    
h2 {
    font-size: 26px;
    color: black;
    font-weight: 400;
}


.texto-sobre {
    margin-top: 25px;
    font-size: 16px;
    color: black;
    font-weight: 400;
    line-height: 22px;
    width: 300px;

}

.btn-entre-em-contato-2 {
    border: 1px solid black;
    border-radius: 0;
    padding: 10px 78px 10px 78px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: 0.3s ease;
    margin-top: 35px;
}

.btn-entre-em-contato-2:hover {
    background-color: black;
    color: white;
}
    
.section-06 {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-06 h2 {
    margin-top: 32px;
    margin-left: 0px;
    margin-bottom: 12px;
}

    .contato-email-footer{
    font-size: 28px;
    }
    
    .whatsapp-button a {
    text-align: center;
    max-width: 300px;
    font-size: 34px;}


/*--CONFIGURAÇÃO FOOTER--*/

  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .bloco-info-footer {
    text-align: center;
    margin-top: -70px;
    display: flex;
    flex-direction: column;
  }

  .bloco-info-footer p {
    max-width: 300px;
    margin-top: 40px;
    margin-bottom: -15px;
    order: 2;
  }

  .bloco-info-footer ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
    margin-bottom: 25px;
  }

  .bloco-info-footer li {
    font-size: 24px;
    padding: 10px;

  }
}



/*--FIM DO CÓDIGO----------------*/
/*--FIM DO CÓDIGO----------------*/
/*--FIM DO CÓDIGO----------------*/
/*--FIM DO CÓDIGO----------------*/
/*--FIM DO CÓDIGO----------------*/