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

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

html {
    scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

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: white;
    transition: color 0.3s ease;
}

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


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


.section-01 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 50px;
}

.section-01 h1 {
    font-weight: 400;
    font-size: 28px;
    color: white;
}

.br {display: none;}


.bolinha{
    color: #FFA54C;
}

.by {
    font-family: "Volkhov", serif;
    font-weight:400;
    font-style: italic;
}

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

}

.btn-entre-em-contato:hover {
    background-color: white;
    color: #131313;
}


/*--EFEITO EASE IN OUT - SESSÃO O1-------------------*/

.elemento {
  animation: fadeIn 0.5s ease-in-out;
}

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

  }
}

/*--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: white;
}

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


/*--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 03 – SOBRE-------------------------*/

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

.sobre {
    max-width: 415px;
}

h2 {
    font-size: 26px;
    color: white;
    font-weight: 400;
}

.imagem-perfil-2 {
    display: none;
}

.span-designer{
    font-style: italic;
    font-size: 18px;
    margin-left: 5px;
}

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

}

.btn-entre-em-contato-2 {
    border: 1px solid white;
    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;
    color: white;
}

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

/*--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: white;
    margin-bottom: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: 0.3s ease;
}

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

.whatsapp-button a {
    color: white;
    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 #2B2B2B; /* 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: white;
}

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

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

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

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


/*--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: white;
    transition: color 0.3s ease;
}


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

    
 .section-01 {
    position: relative;
    left: 7vh;
}

    
.btn-entre-em-contato {
    position: relative;
    right: 15vh;
}
    

    
/*--CONFIGURAÇÃO SESSÃO 02-----------------------------------------------*/   
    
    
    .h5 {
    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;
    font-weight: 400;
    line-height: 22px;
}

.btn-entre-em-contato-2 {
    border: 1px solid;
    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: white;
    color: #131313;
}
    

/*--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) {

/*--CONFIGURAÇÃO SESSÃO 02---------------------------------------------*/ 
    
    .card img {
    max-width: 250px;
    }
    
    .grupo-cards {
    grid-gap: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
        
    }

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

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

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

} 
}


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

@media screen and (max-width: 870px){
    
    
    .section-03 {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    margin-left: 7vh;
}
    
    .card img {
    max-width: auto;
    }
    
    .grupo-cards {
    grid-gap: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
        
    }
    
    .imagem-perfil-2 img {
    display:block;
    margin-right:45px;
    width: 300px;
}
}



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

@media screen and (max-width: 790px){
    
/*--HEADER-------------------------*/

.email-header{
    display: none;
}

/*--SESSÃO 01-------------------------*/    


.section-01 {
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 50px;
    left: 0vh;
}
    
.section-01 h1 {
    font-weight: 400;
    font-size: 28px;
    width: 50%;
    text-align: center;
    margin-bottom: 30px;

}

.br {display: block;}

.bolinha{
    color: #FFA54C;
}

.by {
    font-family: "Volkhov", serif;
    font-weight:400;
    font-style: italic;
}

.btn-entre-em-contato {
    border-radius: 0;
    padding: 10px 45px 10px 45px;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    transition: 0.3s ease;
    right: 0vh;
} 
}


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


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

   
   .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;
    font-weight: 400;
}


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

.btn-entre-em-contato-2 {
    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;
}
    
.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----------------*/