
@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');   


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    list-style-type: none;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0; 
    font-family: sans-serif;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.background-image {
    background-image: url("/images/cpd.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0.4);
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

header, .presentation-container {
    position: static; 
}

.presentation-container { 
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    overflow: hidden; 
    width: 100%; 
    height: auto; 
    gap: 20px; 
    padding: 0 20px; 
    max-width: 1200px; 
}

.presentation-texto {
    text-align: center;
    width: 50%; 
    color: white;
}

.presentation-texto h1 {
    font-family: "Gowun Batang", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFD700;
    font-size: 6rem;
    letter-spacing: 5px;
}

.foto {
    margin-top: 200px;
    opacity: 0;
    transform: translateX(300px); 
    /*
    transition: opacity 1s ease, transform 1s ease;
    */
    width: 400px;
    height: 500px;
    max-width: 50%;
    z-index: 10;
}

.foto img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.presentation-container.show .presentation-texto { 
    opacity: 1;
    transform: translateX(0); 
    animation: slideIn 8s ease forwards; 
}

.presentation-container.show .foto { 
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 8s ease forwards;
}

.formacao.show .faculdade-foto img { 
    animation: slideIn 8s ease forwards; 
}

.projetos.show .projetos-web#projeto1 {
    animation: slideIn 8s ease forwards; 
}

.projetos.show .projetos-web#projeto2 {
    animation: slideInFromBottom 8s ease forwards;
}

.projetos.show .projetos-web#projeto3 {
    animation: slideInFromRight 8s ease forwards;
}

.quemsoueu.show .imagem-quemsoueu { 
    height: auto;
    align-items: center;
    animation: slideIn 8s ease forwards; 
}
.quemsoueu.show .texto-quemsoueu { 
    opacity: 1;
    transform: translateX(0); /* Ou qualquer outro movimento desejado */
    animation: slideInFromRight 8s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-300px); 
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(300px); 
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
      opacity: 0;
      transform: translateY(300px); 
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/*
.presentation-texto { 
    animation: slideIn 8s ease forwards; 
}

.foto {
    animation: slideInFromRight 8s ease forwards; 
}
*/
header {
    background-color: transparent;
    color: white;
    position: fixed; 
    top: 0; 
    right: 0;
    width: auto;
    z-index: 100; 
    padding: 10px 20px; 
    width: 100%;
}

#menu-icon {
    display: none;
}


nav {
    background-color: rgba(0, 0, 0, 0.8); 
    color: white;
    position: fixed; 
    top: 0; 
    right: 0;
    width: auto;
    z-index: 100; 
    padding: 10px 20px; 
    border: 1px solid #1564C0;
    border-radius: 10px; 
    padding: 10px 10px 10px 10px;
    margin-top: 20px;
    margin-right: 100px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 50px; 
}

nav li {
    margin-left: 30px; 
}

nav li a:hover {
    color: #1564C0;
    cursor: pointer;
}

nav a {
    text-decoration: none;
    color: white;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

header nav ul li a {
    border-radius: 5px;
    transition: all .3s ease;
    padding: 5px;
}

header nav ul li a.actived {
    background-color: #fff;
    color: #1564C0;
}

/*menu responsivo */
/* parte do código para o menu*/
/* Estilos gerais para o menu hambúrguer */
.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block; /* Mostra o menu quando ativo */
}
/* fim da parte do código para menu*/
 /*menu responsivo fim*/


.quemsoueu {
    position: relative;
    display: flex; 
    align-items: stretch;
    padding: 5% 10%; 
    gap: 30px;
    height: auto; 
    overflow: hidden;
}

.imagem-quemsoueu, .texto-quemsoueu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


.imagem-quemsoueu img { 
    border: 10px solid #1564C0;
    border-radius: 50px; 
    object-fit: cover;
    width: 100%;
    height: auto;
}

.texto-quemsoueu {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    border: 10px solid #1564C0;
    border-radius: 50px;
    padding: 20px;
    gap: 5px;
    height: auto;
}

.texto-quemsoueu h3 {
    font-family: "Gowun Batang", serif;
    font-weight: 800;
    font-style: normal;
    color: #1A2E8A;
    font-size: 2.5rem;
    letter-spacing: 5px;
}

.texto-quemsoueu p {
    color: #474C62;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.formacao {
    position: relative;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    gap: 30px;
    height: auto; 
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    margin: 10% 10%;
}

.faculdade {

    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    border-bottom: 3px solid #1A2E8A;
    padding-bottom: 20px;

}

.graduacao {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 50px;
    gap: 20px;
}

.faculdade-foto {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}

.faculdade-foto img {
    max-width: 100%; 
    height: auto; 
    object-fit: contain;
    border-radius: 20px;
    border: 3px solid #1564C0;
    /*
    animation: slideIn 8s ease forwards;
    */
}

.faculdade-texto {

    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}

.faculdade-texto h2 {
    font-family: "Gowun Batang", serif;
    font-weight: 800;
    font-style: normal;
    color: #1A2E8A;
    font-size: 2.5rem;
    letter-spacing: 3px;
}

.faculdade-texto p {
    color: #474C62;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 1.5rem;
    align-items: center;
}

.cursos-extra {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding-top: 2px;  
    align-items: center;
}

.curso-titulo {
    padding-bottom: 1px;
}

.curso {

    width: 100%;
    height: auto;
    display: flex;
    padding: 0;
    gap: 10px;
}

.curso-titulo h2 {
    font-family: "Gowun Batang", serif;
    font-weight: 800;
    font-style: normal;
    color: #1A2E8A;
    font-size: 2.5rem;
    letter-spacing: 3px;
}


.alura, .preditiva {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
}

.curso-imagem {
    display: flex;
    justify-content: center;
    width: 50%;
}


.alura img {
    max-width: 70%; 
    height: auto; 
    object-fit: contain; 
    margin-right: 0;  
}

.preditiva img {
    max-width: 90%; 
    height: auto; 
    object-fit: contain;   
}

.curso-texto {

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    gap: 10px;

}

.curso-texto h3 {

    font-family: "Gowun Batang", serif;
    font-weight: 800;
    font-style: normal;
    color: #1A2E8A;
    font-size: 1.5rem;
}

.curso-texto span {

    color: #1A2E8A;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-align: center;
    
}

.preditiva ul {
    color: #1A2E8A;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 0.9rem;
    text-align: left !important;

  }

  .alura ul {
    color: #1A2E8A;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 1.2rem;
    text-align: left !important;

  }  

  .projetos {
    position: relative;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    gap: 100px;
    height: auto; 
    overflow: hidden;
    margin: 10% 10%; 
    background-color: rgba(255, 255, 255, 0.8);
  }

  .projetos-titulo {
    position: relative;
    height: auto;
    text-align: center;
    justify-content: center;
    padding: 20px 20px;
    
  }

  .projetos-titulo h2 {
    font-family: "Gowun Batang", serif;
    font-weight: 800;
    font-style: normal;
    color: #1A2E8A;
    font-size: 2.5rem;
    letter-spacing: 3px;
    
  }

  .projetos-titulo span {
    color: #474C62;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 100%;
  }

  .projetos-freela {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    gap: 10px;  
  }

  .projetos-web {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* teste
    padding: 0;
    border: 10px solid #1564C0;
    border-radius: 50px;
    */
    /* inicio de teste 2*/
    padding: 90px;
    background-image: url(/images/smart.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    width: 100%;
    max-width: 400px;
    height: 700px;

  }

  .projetos-web h4 {
    font-family: "Gowun Batang", serif;
    font-weight: 800;
    font-style: normal;
    color: #CFD6E6;
    font-size: 1.6rem;
    margin-bottom: 5px;
    padding-top: 20%;
  }


  .projetos-web p {
    color: #CFD6E6;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-align: center;
    font-size: 0.8rem;
  }

  .projetos-web a {
    color: #CFD6E6;
  }


  .projetos-imagem {
    padding: 10px 0;
  }

  .projetos-imagem img {

    max-width: 80%; 
    height: auto; 
    object-fit: contain;
    /* teste */
    padding: 10px 0; 

  }

.footer {
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: rgba(208, 214, 231, 0.8);
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.footer-container {
    max-width: 1200px; /* Defina a largura máxima do contêiner */
    margin: 0 auto; /* Centralize o contêiner */
    width: 100%; 
}

.footer-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer h3 {

    font-family: "Gowun Batang", serif;
    font-weight: 900;
    font-style: normal;
    color: #1A2E8A;
    font-size: 1.8rem;


}

.contatos {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 50px;
    justify-content: space-evenly;
}
  .redes {
    display: flex;
    justify-content: space-evenly;
    padding: 0 0px;
    gap: 50px;
  }
  
  #linkedin, #insta, #git {
    margin: 0;
    padding: 0;
  }
  
  .redes i {
    font-size: 4rem;
  }

  #linkedin i {
    color: #0A66C2;
  }

  #insta i {
    color: #e95950;

  }

  #git i {

    color: #000000;
  }

.curriculo {
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
    
    
}


.curriculo h6 {
    color: #1A2E8A;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 1.6rem;
}

.curriculo i {
    color: #C1090B;
    font-size: 5rem;
}

.telefones {
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-right: 50px;


}

.telefones h6 {
    color: #1A2E8A;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 1.3rem;
    margin: 0;
    padding-bottom: 5px;
}

.telefones ul {
    font-size: 2rem;
    list-style: none; 
    padding: 0;
    margin: 0;
    gap: 20px;
}

.telefones i {
    color: #1A2E8A;  
}

.telefones ul li {
    margin-bottom: 20px; 
    font-size: 1rem;
    gap: 10px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #1564C0;
  }

