@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;1,9..40,100;1,9..40,200;1,9..40,300;1,9..40,400&family=Encode+Sans+Semi+Expanded:wght@100;200;300;400;500;600;700;800&family=Kumbh+Sans:wght@400;700&family=Lexend:wght@100;200;300;400;500;600&family=Righteous&display=swap');

/*Reset Site*/
:root {
    --color-primary: #0D6EFF;
    --color-secundary: #9B9B9B;
    --color-light: #fff;
    --color-dark: #000;
}

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: Lexend;
    text-decoration: none;
    color: var(--color-light);
}

.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #282828;
}

.blur-container {
    position: relative;
    height: 100%;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.349);
    backdrop-filter: blur(5px);
    /* Ajuste o valor do desfoque conforme necessário */
    z-index: 999;
    display: none;
}

/* scrollbar */
body::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #1F2026;
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
}

/*Primeira parte*/
.background {
    background: url(../img/fundo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(37, 35, 35, 0.23);
    backdrop-filter: blur(100px);
    z-index: 99999;
}

/*MENU MOBILE*/
.mobile-menu div {
    width: 32px;
    height: 1px;
    background-color: var(--color-light);
    margin: 8px;
    transition: .4s
}

#menu.active .mobile-menu .line1 {
    transform: rotate(-45deg) translate(-8px, 8px)
}

#menu.active .mobile-menu .line2 {
    opacity: 0
}

#menu.active .mobile-menu .line3 {
    transform: rotate(45deg) translate(-5px, -5px)
}

/*-----------------------------------------*/

nav {
    display: flex;
    padding: 24px 30px;
    justify-content: space-around;
    align-items: center;
}

nav .logo img {
    width: 100px;
}

#nav-list {
    display: flex;
    gap: 6rem;
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav ul a {
    color: #9B9B9B;
    font-family: DM Sans;
    font-size: 13.762px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all .3s ease-in-out;
}

.custom-underline {
    position: relative;
}

.custom-underline::after {
    content: "";
    position: absolute;
    bottom: -5px;
    /* Ajuste conforme desejado */
    left: 0;
    width: 100%;
    height: 2px;
    /* Ajuste a altura da linha conforme desejado */
    background-color: var(--color-light);
    /* Cor da linha */
    opacity: 0;
    /* Inicialmente, a linha é invisível */
    transition: opacity 0.3s ease;
    /* Adiciona uma transição suave */
}

.custom-underline:hover::after {
    opacity: 1;
    /* Quando passar o mouse, a linha aparece */
}


nav ul a:hover {
    color: var(--color-light);
}

/* Informações */

.informacoes {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding-top: 150px;
}

.logo-imagen img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.inf-text {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.inf-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.25em;
    color: var(--color-light)FFF;
}

.redes {
    width: 400px;
    height: 70px;
    background: #4d4d4d60;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 23px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 150px;
}

.redes a {
    transition: transform 500ms;
}

.redes a:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.fa-redes-icon {
    display: flex;
    padding-top: 20px;
    font-size: 30px;
    transition: all .3s ease-in-out;
}

.fa-redes-icon:hover {
    color: var(--color-primary);
}

.fa-instagram {
    font-size: 30px;
}


/*Sobre*/

.titulo {
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
}

.titulo h1 {
    color: var(--color-light);
    text-align: center;
    font-family: DM Sans;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 5px;
}

.titulo h2 {
    color: var(--color-light);
    font-family: DM Sans;
    font-size: 25.274px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.sobre {
    width: 100%;
    background-color: #282828;
}

.sobre-conteudo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 60px;
}

.sobre-conteudo img {
    width: 300px;
    border-radius: 4px;
}

.conteudo-sobre {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 40px;
}

.conteudo-sobre h1 {
    margin-bottom: 5%;
}

.conteudo-sobre h3 {
    margin-bottom: 5%;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.25em;
    color: var(--color-light)FFF;
}

.conteudo-sobre p {
    width: 571px;
    color: var(--color-light);
    text-align: justify;
    font-family: Lexend;
    font-size: 15px;
    font-style: normal;
    font-weight: 200;
    line-height: 24px;
}


/*Conhecimentos*/
.conhecimentos {
    background: #1A1A1D;
    width: 100%;
}


.conteudo-conhecimentos {
    width: 60%;
    height: 253.867px;
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}
.linguagem {
    width: 80px;
    cursor: pointer;
}


.js {
    border-radius: 20px
}

.result {
    display: flex;
    width: 825.556px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 50px;
}


.result h3 {
    text-align: center;
    color: var(--color-light);
    text-align: center;
    font-family: Encode Sans Semi Expanded;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.313px;
}

.result .text {
    width: 100%;
    text-align: center;
}

/*Projetos*/
.Projetos {
    width: 100%;
    background-color: #282828;
}

.content-projeto {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 60px 0 60px 0;
    margin: 0 60px;
}

.card {
    padding: 10px 20px;
    border: 2px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border-radius: 9px;
}

.card h1 {
    font-size: 24px;
    font-weight: 200;
}

.card img {
    width: 250px;
    border-radius: 5px;
}

.card a {
    background-color: var(--color-primary);
    padding: 9px 25px;
    border-radius: 9px;
}

.card a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.link-repositorio a {
    margin-top: 30px;
    padding: 15px 20px;
    border: 2px solid var(--color-primary);
    border-radius: 9px;
    transition: all .3s ease-in-out;
}

.link-repositorio a:hover {
    background-color: var(--color-primary);
}

/* Servicos */

.servicos {
    background-color: #1A1A1D;
}

.content-servico {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 40px
}

.content-servico .card-website {
    width: 250px;
    text-align: start;
    background: rgb(2, 30, 71);
    background: linear-gradient(90deg, rgba(2, 30, 71, 1) 0%, rgba(7, 48, 109, 1) 100%);
    cursor: pointer;
}

.card-website {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 9px;
}

.card-website a {
    padding: 10px 5px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all .5s ease-in-out;
}

.card-website a:hover {
    border-radius: 20px;
    text-decoration: underline;
}

.link-contratar {
    margin-top: 50px;
}

.link-contratar #btnContato {
    padding: 15px 20px;
    border: 2px solid var(--color-primary);
    border-radius: 9px;
    transition: all .3s ease-in-out;
    background-color: transparent;
    cursor: pointer;
}

.link-contratar #btnContato:hover {
    background-color: var(--color-primary);
}

/* Footer */

footer {
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    align-items: center;
}

footer .footer-content .redes-footer {
    display: flex;
    font-size: 12px;
    gap: 1rem;
    margin-left: 100px;
}

footer .footer-content .redes-footer a i {
    font-size: 24px;
}

footer .footer-content img {
    width: 100px;
}


/* Entrar em contato */

.entrarEmContato {
    display: none;
    width: 30%;
    height: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    text-align: center;
    border-radius: 15px;
}

.entrarEmContato #closeContato {
    position: absolute;
    right: 15px;
    top: 10px;
    color: var(--color-dark);
    cursor: pointer;
}

.entrarEmContato h1 {
    padding-top: 40px;
    color: var(--color-dark);
    padding-bottom: 10px;
    font-size: 30px;
}

.form {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 70%;
    margin: 0 auto;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 40px
}

.form input,
textarea {
    padding: 10px;
    border-radius: 9px;
    border: 2px solid var(--color-secundary);
    outline: none;
    resize: none;
    color: var(--color-dark);
}

.form input:focus {
    border: 2px solid var(--color-primary);
}

.form textarea:focus {
    border: 2px solid var(--color-primary);
}

#submit {
    padding: 10px 40px;
    border: none;
    background-color: var(--color-primary);
    border-radius: 5px;
    cursor: pointer;
    margin-top: 40px;
}

.outro {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icons {
    display: flex;
    gap: 0.5em;
}

.content-linha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.linha,
.linha-or {
    color: var(--color-dark);
    width: 33.5%;
    height: 2px;
    background-color: var(--color-secundary);
}

.or {
    color: var(--color-secundary);
}

.icons {
    display: flex;
    justify-content: center;
}

.icons .fa-brands {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.icons .fa-whatsapp {
    border: 2px solid #24cc63;
    color: #24cc63;
    transition: all 0.3s ease-in-out;
}

.icons .fa-linkedin {
    border: 2px solid #0a66c2;
    color: #0a66c2;
    transition: all 0.3s ease-in-out;
}

.icons .fa-linkedin:hover {
    background: #0a66c2;
    color: var(--color-light);
}

/* Notify */

.notify {
    border-radius: 5px;
    position: fixed;
    padding: 5px 10px;
    font-size: 14px;
    top: 10%;
    right: 20px;
    z-index: 99999;
    display: none;
}

.error {
    color: red;
    display: none;
    font-weight: 300;
    font-size: 14px;
}