@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

:root {
    --fonte-padrao: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
    overflow-x: hidden;
}

.logo_container {
    margin-left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero_img{
    height: fit-content;
}

.hero_img img {
    border-radius: 10px;
    margin-top: 90px;
    /* width: 40vw; */
    width: 550px;
}

.logo_container legend {
    color: #443b7a;
    font-family: var(--fonte-padrao);
    font-size: 2em;
}

.logo_container span {
    font-weight: 700;
}

body {
    background-image: linear-gradient(#C1E1F5, #F8FAFC);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* overflow-y: scroll; */
    /* height: 100vh; */
    overflow-x: hidden;
    width: 100vw;
    /* border-radius: 12px 12px 0 0; */
    box-shadow: 1px 1px 15px #0009;
}

/* .content { */
    /* background-image: linear-gradient(#C1E1F5, #F8FAFC); */
    /* position: fixed; */
    /* top: 0px; */
    /* width: 100vw; */
    /* margin-top: 40px; */
    /* overflow-y: auto; */
    /* border-radius: 12px 12px 0 0; */
    /* box-shadow: 1px 1px 15px #0009; */
    /* height: 100vh; */
    /* scroll-behavior: smooth; */
/* } */

/* .content::-webkit-scrollbar {
    visibility: hidden;
    width: 0;
} */

#barra_scroll {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    overflow-y: scroll;
}

#barra_scroll div {
    height: 2650px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-bottom: 80px;
    background-image: linear-gradient(#C1E1F5, #F8FAFC);
}

header {
    height: fit-content;
    min-height: 700px;
    /* height: 1000px; */
    /* padding: 50px 0; */
    /* min-height: 100vh; */
    /* background-image: linear-gradient(#C1E1F5, #F8FAFC); */
}

nav {
    background-color: #fff;
    display: flex;
    height: 80px;
    flex-direction: row;
    align-items: center;
    box-shadow: 1px 0 30px #0009;
    top: 0;
    left: 0;
    position: fixed;
    /* overflow: hidden; */
    /* z-index: -1; */
    /* position: fixed; */
    width: 100vw;
    /* border-radius: 12px 12px 0 0; */
}

.logo_container {
    width: 50%;
}

.ul_nav {
    display: flex;
    flex-direction: row;
    width: 50%;
    justify-content: space-evenly;
}

.li_nav {
    list-style-type: none;
}

.link_nav {
    text-decoration: none;
    font-family: var(--fonte-padrao);
    color: #333333;
    font-size: 1.3em;
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 5px;
}

.link_nav:hover {
    border-bottom: 2px solid #333;
}

.contact_info {
    letter-spacing: 3px;
}

.link_nav.active {
    border-bottom: 2px solid #333;
}

h1 {
    font-family: var(--fonte-padrao);
    font-weight: 400;
    font-size: 3.1em;
}

.txt_h1 {
    font-size: 1.8em;
    font-family: var(--fonte-padrao);
    color: #333333;
}

.btn_view_my_work {
    background-color: #63B3ED;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 1.3em;
    font-family: var(--fonte-padrao);
    font-weight: 300;
    max-width: fit-content;
}


.section {
    /* height: 90vh; */
    height: fit-content;
    /* height: calc(100vh - 80px); */
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 100vw;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100vw;
}

.article_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    min-height: 50%;
}

.about_content {
    background-color: #fff;
    width: 100%;
    height: 70vh;
    min-height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.contact_content {
    background-color: #fff;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about_content .article_content {
    width: 33%;
    height: 40%;
}

#projects{
    scroll-margin-top: -100px;
}

.projects_container {
    background-color: #fff;
    height: 80vh;
    min-height: fit-content;
    /* height: fit-content; */
    width: 100%;
    /* padding: 80px; */
    padding: 80px 0 80px 0;
    overflow-y: hidden;
    /* scroll-padding-top: 200px; */
}

li {
    list-style-type: none;
}

h2 {
    font-family: var(--fonte-padrao);
    font-weight: 400;
    font-size: 3em;
}

.txt {
    font-size: 1.2em;
    font-weight: 500;
    font-family: var(--fonte-padrao);
    color: #333333;
}

.quality_list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.quality_list li {
    font-family: var(--fonte-padrao);
    font-size: 1.3em;
}

.projects_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* height: 60vh; */
    margin-top: 20px;
    /* margin-bottom: 80px; */
}

.project_container {
    display: flex;
    width: 45%;
    height: 190px;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    box-shadow: 1px 3px 10px #0004;
    /* padding: 2.5%; */
    padding: 16.295px;
    /* gap: 10%; */
}

.btn_details {
    background-color: #fff;
    border: 2px solid #000;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 1.1em;
    cursor: pointer;
    transition: .1s;
}

.btn_details:hover {
    transform: scale(1.05);
}

.project_name {
    font-family: var(--fonte-padrao);
    font-size: 1.5em;
    font-weight: 500;
}

.project_description {
    font-family: var(--fonte-padrao);
    font-size: 1.1em;
    font-weight: 500;
    width: 80%;
}

.project_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    padding: 10px;
    /* gap: 10px; */
}

.project_img {
    height: 11vw;
    background-color: brown;
    border-radius: 10px;
    border: 2px solid rgb(175, 173, 173);
}

.contact_info {
    font-family: var(--fonte-padrao);
    font-weight: 500;
    font-size: 1.4em;
}

.contact_container {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.contact_infos_container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.social_medias_links {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.social_medias_links img{
    height: 50px;
}

.form_email {
    display: flex;
    flex-direction: column;
    height: 85%;
    width: 30%;
    border-radius: 20px;
    padding: 20px;
    justify-content: space-around;
    box-shadow: 1px 3px 10px #0004;
}

.input_txt {
    width: 100%;
    border: 2px solid #e0caca;
    padding: 10px;
    font-family: var(--fonte-padrao);
    border-radius: 12px;
    font-size: 1.1em;
}

.btn_submit {
    font-family: var(--fonte-padrao);
    background-color: #fff;
    width: 100%;
    padding: 8px;
    border: 2px solid #000;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
}

footer {
    height: 50px;
}

/* #hidden_content { */
    /* background-color: #c1e1f5; */
    /* background-color: transparent; */
    /* background-image: inherit;
    width: 90vw;
    height: 80px;
    position: fixed;
} */

#container {
    width: 100%;
    min-height: 100vh;
    background-color: transparent;
    overflow-x: hidden;
    /* overflow-y: scroll; */
    overflow-y: hidden;
}

.card_soft_skills {
    box-shadow: 3px 3px 5px #000;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: .2s;
}

.card_soft_skills:hover {
    transform: scale(1.05);
}

.soft_skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nome {
    font-weight: 700;
}

.lista_tecnologias {
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
    width: 80%;
    right: 112px;
    box-shadow: 3px 3px 10px #000;
    font-family: var(--fonte-padrao);
    /* border: 2px solid #f00; */
}

.lista_tecnologias#frontend {
    border-radius: 0 10px 10px 10px;
    display: flex;
}

.lista_tecnologias#backend {
    border-radius: 10px;
    /* display: none; */
}

.lista_tecnologias#database {
    border-radius: 10px 0 10px 10px;
}

.lista_tecnologias li {
    flex: 1;
}

.off {
    display: none;
}

.tecnologies {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 50px;
    align-items: center;
}


.menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100vh;
    background: #333;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    /* Ocupa a tela inteira, mas está fora da vista */
}

.hamburger-icon {
    position: fixed;
    top: 40px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
}

.hamburger-icon span,
.hamburger-icon span::before,
.hamburger-icon span::after {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.hamburger-icon span::before,
.hamburger-icon span::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger-icon span::before {
    top: -8px;
}

.hamburger-icon span::after {
    bottom: 8px;
}


/* Esconde o checkbox padrão */
.menu-toggle {
    display: none;
}

/* Quando o checkbox está marcado (menu aberto) */
.menu-toggle:checked~.menu {
    transform: translateX(0);
    /* Traz o menu para a tela */
}

/* Animação do ícone para X */
.menu-toggle:checked~.hamburger-icon span {
    background: transparent;
    /* Linha do meio some */
}

.menu-toggle:checked~.hamburger-icon span::before {
    transform: rotate(45deg) translate(5px, 8px);
    /* Linha superior gira */
}

.menu-toggle:checked~.hamburger-icon span::after {
    transform: rotate(-45deg) translate(5px, -8px);
    /* Linha inferior gira */
}

.hamburger-icon {
    display: none;
}

/*

#menu-toggle {
    display: none;
}

Estilo do botão hambúrguer 
.hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #f00;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

Cria as outras duas linhas
.hamburger::before, .hamburger::after { 
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f00;
    transition: transform 0.3s ease;
} 

.hamburger::before {
    top: -8px; /* Posição da linha de cima 
}

.hamburger::after {
    bottom: -8px; /* Posição da linha de baixo 
}*/

 /* Estilo do Menu (inicialmente oculto)  */
.menu {
    display: none;  
    /* Oculta o menu  */
    /* Posicionamento e estilo do menu  */
    position: fixed;
    top: 80px;
    left: 50.5%;
    width: 45%;
    height: fit-content;
    background: rgb(255, 255, 255);
    /* padding-top: 100px; */
    padding: 30px 0;
    text-align: center;
    border-radius: 10px;
    /* display: flex; */
    justify-content: space-around;
}

.menu ul {
    list-style: none;
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.menu li {
    margin: 20px 0;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 24px;
    font-family: var(--fonte-padrao);
}

 /* Efeito ao clicar (quando o input está checked)  */
#menu-toggle:checked ~ .menu {
    display: block;  
    /* Mostra o menu  */
}

#menu-toggle:checked ~ label .hamburger {
    background-color: transparent;  
    /* Linha do meio some  */
}

#menu-toggle:checked ~ label .hamburger::before {
    transform: translateY(8px) rotate(45deg);  
    /* Linha de cima vira diagonal  */
}

#menu-toggle:checked ~ label .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);  
    /* Linha de baixo vira diagonal  */
}

 /* Responsividade (exibe o hambúrguer em telas pequenas)  */
/* @media (max-width: 768px) { */
/* .hamburger { */
/* display: block; */
/* Exibe o botão em telas menores */
/* } */
/* Oculta o menu normal em telas pequenas e mostra o hambúrguer */
/* } */

/* Opcional: Estilo para menus em telas maiores (sem hambúrguer) */
/* @media (min-width: 769px) { */
/* .hamburger { */

/* display: none; */
/* Oculta o botão em telas grandes */
/* } */
/* .menu { */
/* display: block;  */
/* Mostra o menu normalmente */
/* position: static;
        height: auto;
        background: none;
        padding-top: 0;
        width: auto;
    }
} */

.open_project_card{
    position: fixed;
    width: 80vw;
    background-color: #fff;
    height: 70vh;
    left: 10vw;
    top: 15vh;
    box-shadow: 1px 3px 10px #0004;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    padding: 25px;
    gap: 20px;
}

.div_project_open_card{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 61%;
    justify-content: space-between;
}

.open_project_card figure{
    display: flex;
    gap: 20px;
    height: 39%;
    background-color: #EFF6FF;
    border-radius: 5px;
}

.open_project_img{
    /* width: 35%; */
    height: 100%;
    border-radius: 5px;
}

.titulo_card_open{
    color: #1E3A8A;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--fonte-padrao);
}

.description_project_open_card{
    font-family: var(--fonte-padrao);
    text-align: justify;
    font-size: 1.1em;
}

.lista_destaques_project{
    list-style-type: circle;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item_destaque_project{
    font-size: 1.05em;
    font-family: var(--fonte-padrao);
    text-align: justify;
    /* color: #374151; */
}

.tecnologias_project_open_card{
    display: flex;
    align-items: center;
    gap: 15px;
    /* background-color: #c2c2c2; */
    width: fit-content;
}

.tech_open_card{
    background-color: #c2c2c2;
    border-radius: 5px;
    padding: 5px;
}

.tecnologias_project_open_card :nth-child(1){
    font-weight: 600;
}

.tecnologias_project_open_card li{
    font-family: var(--fonte-padrao);
}

.btn_code_blue, .btn_code_white{
    text-decoration: none;
    font-family: var(--fonte-padrao);
    width: fit-content;
    padding: 8px;
    border-radius: 6px;
}

.btn_code_blue{
    color: #FFF;
    background-color: #3860ce;
}

.btn_code_white{
    color: #3860ce;
    background-color: #FFF;
    border: 1px solid #3860ce;
}

div.div_actions_card_open{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.btn_code_container{
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.btn_fechar_card{
    width: fit-content;
    font-size: 2.8em;
    background-color: transparent;
    color: #6d6d6d;
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 22px;
}

.card_fantasma{
    visibility: hidden;
    order: 2;
}