@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lato');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

:root {
    --white: #fff;
    --dark1: #3f344e;
    --dark2: #593a5a;
    --dark3: #615681;
    --dark4: #8998b1;
    --dark5: #cbd2da;
    --dark6: #372f46;
    --cyan1: #70b9ea;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark2);
}

::-webkit-scrollbar-thumb {
    background: var(--dark4);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark5);
}

body {
    background-color: var(--dark1);
    width: 100%;
    margin: 0 auto;
    padding: 0;
    height: 100vh;
    font-family: 'Lato';
}

header {
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    z-index: 1;
    flex-wrap: wrap;
    padding: 30px 0 0 0;
    background-color: var(--dark6);
    min-height: 50px;
    box-shadow: 0px 3px 15px var(--dark1);
}

.box-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}


nav {
    display: flex;
    gap: 25px; /* espaçamento entre os links */
}


.menu-btn {
    display: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2;
}


.nav-links {
    text-decoration: none;
    position: relative;
    color: var(--white);
    display: inline-block;
    justify-content: center;
    text-decoration: none;
}

.nav-links:before {
    color: var(--dark4);
    content: "";
    position: absolute;
    bottom: -7px;
    height: 2px;
    width: 0;
    background: #ffffff;
    border-radius: 50px;
    transition: width 0.3s ease;    
}

.nav-links:hover:before {
    width: 100%;
}
a {
    color: var(--white);
}

a:hover {
    color: var(--dark4);
}

.formulario-contato {
    max-width: 500px;
}

.box-btn-action {
    display: flex;
    gap: 1rem;
}

:is(button,.link-action) {
    padding: .6rem;
    font-size: .9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: .4s;
}

.btn-action {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-action:hover {
    background-color: var(--dark3);
    border: 1px solid var(--dark3);
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 2rem;
    flex-wrap: wrap;
}

section {
    padding: 6rem 1rem;
    width: 100%;
    box-sizing: border-box;

}

.first-section {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    max-height: 650px;
}

h1 {
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 8px;
}

strong {
    color: var(--cyan1);
    flex-wrap: wrap;
}

.strong-title {
    color: var(--cyan1);
    flex-wrap: wrap;
}

.first-section p {
    color: var(--white);
}

.link-action {
    text-decoration: none;
    width: 200px;
    text-align: center;
}

.box-img-main {
    max-width: 350px;
    padding: 1rem;
}

.img-profile {
    border-radius: 30px;
    width: 100%;
    animation: flutuar 5s ease-in-out infinite;
}


.section-maior {
    width: 100%;
    background-color: var(--dark2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section-maior ul {
    display: flex;
    gap: 2rem;
}


.section-maior ul li{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--dark4);
    letter-spacing: 2px;
    font-weight: bold;
}

.section-maior ul li:hover {
    color: var(--dark5);
    transition: .4s;
    cursor: default;
}

.title {
    color: var(--dark5);
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 32px;
    cursor: default;
}

.third-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 1rem;
    width: 100%;
    box-sizing: border-box;
}


.third-section > div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
}

#about-more {
    display: flex;
    padding: 8px 15px 8px 15px;
    border-radius: 5px;
    justify-content: right;
    align-items: right;
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

:is(#about-more) {
    border-radius: 6px;
    cursor: pointer;
    transition: .4s;
}
#about-more:hover {
    background-color: var(--dark3);
    border: 1px solid var(--dark3);
    color: var(--dark4);
}


.third-section > div img {
    width: 200px;
    border-radius: 20px;
    animation: flutuar 5s ease-in-out infinite;
}

.third-section > div p{
    max-width: 600px;
    color: var(--white);
    text-align: justify;
    line-height: 1.4rem;
}

:is(.img-profile, .img-how-am-i) {
    box-shadow: 5px 5px 1px var(--cyan1);
}

section#my-projects {
    width: 100%;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.projects {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
}

.project1,
.project2 {
    display: flex;
    background-color: var(--dark1);
    width: 600px;
    height: 300px;
    flex-direction: row;
    justify-content: center;
    padding-left: 20px;
    gap: 6rem;
}

.back-project1,
.back-project2 {
    display: flex;
    width: 250px;
    height: 300px;
    justify-content: center;
    align-items: center;
    filter: invert(70%);
}

.img-project1,
.img-project2 {
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: left;
    align-items: left;
}

    .text-project1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 2px 20px 10px 2px;  
}

p#projects {
    display: flex;
    color: var(--dark5);
    font-family: 'Lato';
    text-align: left;
    font-size: 15px;
    line-height: 17px;
}

hr#linha-horizontal {
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.699); 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.project3 {
    background-color: white;
}
.project4 {
    background-color: white;
}


@keyframes autoRun {
    from {
        left: 100%;
    }
    to {
        left: -100px;
    }
}

section#how-can-i-help-you{
    padding: 6em 2em;
    width: 100%;
}

.container-help-you {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 4rem;
}

.left-you,
.middle-you,
.right-you {
    display: flex;
    width: 570px;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.05);
    gap: 1rem;
    padding-bottom: 2rem;
}

section#contact {
    background-color: var(--dark2);
}

.contatos-titulo {
    color: var(--dark5);
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 32px;
    cursor: default;
}

.formulario-contato {
    width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
   

}

.campo-form {
    width:100%;
    padding: 1rem 0rem 1rem ;
    text-indent: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
}

.campo-form:focus {
    border-color: var(--dark4);
    box-shadow: 0 0 10px var(--dark3);
}

.grupo-form {
    margin-bottom: 1.5rem;
}

.botao-form {
    color: #e2e8f0;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.5 ease;
}

.botao-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.linha-vertical {
    width: 3px; 
    height: 130px;
    background-color: rgba(255, 255, 255, 0.699);
    position: absolute; 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

a > img {
    padding-top: 23px;
    filter:invert();
    size: 1.8;
    transition: 0.2s;
}
a > img:hover{
    size: 2.2;
}

@keyframes flutuar {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

    .img-logo, .box-img-header{
        display: none;
}



    f

.formulario-contato {
    max-width: 500px;
}

.box-btn-action {
    display: flex;
    gap: 1rem;
}

:is(button,.link-action) {
    padding: .6rem;
    font-size: .9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: .4s;
}

.btn-action {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-action:hover {
    background-color: var(--dark3);
    border: 1px solid var(--dark3);
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 2rem;
    flex-wrap: wrap;
}

section {
    padding: 6rem 1rem;
    width: 100%;
    box-sizing: border-box;

}

.first-section {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    min-height: 650px;
}

.first-section > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 300px
}

h1 {
    font-size: 4rem;
    color: var(--white);
    letter-spacing: 8px;
}

strong {
    color: var(--cyan1);
    flex-wrap: wrap;
}

.strong-title {
    color: var(--cyan1);
    flex-wrap: wrap;
}

.first-section p {
    color: var(--white);
}

.link-action {
    text-decoration: none;
    width: 200px;
    text-align: center;
}

.box-img-main {
    max-width: 350px;
    padding: 1rem;
}

.img-profile {
    border-radius: 30px;
    width: 100%;
    animation: flutuar 5s ease-in-out infinite;
}


.title {
    color: var(--dark5);
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 32px;
    cursor: default;
}

.third-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 1rem;
    width: 100%;
    box-sizing: border-box;
}


.third-section > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 920px;
}

.third-section > div img {
    width: 200px;
    border-radius: 20px;
    animation: flutuar 5s ease-in-out infinite;
}

.third-section > div p{
    max-width: 600px;
    color: var(--white);
    text-align: justify;
    line-height: 1.4rem;
}

:is(.img-profile, .img-how-am-i) {
    box-shadow: 5px 5px 1px var(--cyan1);
}


section#my-projects {
    display: flex;
    width: 100%;
    height: 800px;
    justify-content: center;
}

.projects {
    display: flex;
    gap: 5rem;
    flex-direction: row;
}
.projects:hover {
    display: flex;
}

.project1 {
    display: flex;
    background-color: var(--dark1);
    width: 600px;
    height: 300px;
    flex-direction: row;
    justify-content: center;
    padding-left: 20px;
    gap: 6rem;
}

.img-project1 {
    display: flex;
    justify-content: left;
    align-items: left;
    width: 199px;
    height: 220px;
}

.text-project1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 250px;
    padding: 20px 90px 0px 20px;   
}

hr#linha-horizontal {
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.699); 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
.project2 {
    display: flex;
    background-color: var(--dark1);
    width: 600px;
    height: 300px;
    flex-direction: row;
    justify-content: center;
    padding-left: 20px;
    gap: 6rem;
}

.img-project2 {
    display: flex;
    justify-content: left;
    align-items: left;
    width: 199px;
    height: 220px;
}

hr#linha-horizontal {
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.699); 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

hr#linha-horizontal {
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.699); 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

hr#linha-horizontal {
    width: 100%; 
    background-color: rgba(255, 255, 255, 0.699); 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    
}

@keyframes autoRun {
    from {
        left: 100%;
    }
    to {
        left: -100px;
    }
}

section#how-can-i-help-you{
    padding: 6em 2em;
    width: 100%;
}

.container-help-you {
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: top;
    border-radius: 12rem;
}

.left-you {
    display: flex;
    width: 570px;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: top;
    background-color: rgba(255, 255, 255, 0.05);
    gap: 1rem;
}

.left-you ul {
    padding: 2rem;
    margin: 0px;
}

.left-you li {
    color: var(--dark5);
    line-height: 2.2rem;
    font-family: 'Outfit';
    letter-spacing: 0.1rem;
}

hr#linha-horizontal {
    width: 90%; 
    background-color: rgba(255, 255, 255, 0.699); 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.middle-you {
    display: flex;
    width: 570px;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: top;
    background-color: rgba(255, 255, 255, 0.05);
    gap: 1rem;
}

.middle-you ul {
    padding: 2rem;
    margin: 0px;    
}

.middle-you li {
    color: var(--dark5);
    line-height: 2.2rem;
    font-family: 'Outfit';
    letter-spacing: 0.1rem;
}

.right-you {
    display: flex;
    width: 570px;
    flex-direction: column;
    text-align: left;
    align-items: center;
    justify-content: top;
    background-color: rgba(255, 255, 255, 0.05);
    gap: 1rem;
}

.right-you ul {
    padding: 2rem;
    margin: 0px;
}

.right-you li {
    color: var(--dark5);
    line-height: 2.2rem;
    font-family: 'Outfit';
    letter-spacing: 0.1rem;
}

.icons-you {
    padding: 2rem;
    letter-spacing: 1rem;
}

section#contact {
    background-color: var(--dark2);
}

.contatos-titulo {
    color: var(--dark5);
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 32px;
    cursor: default;
}

.formulario-contato {
    width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
   

}

.campo-form {
    width:100%;
    padding: 1rem 0rem 1rem ;
    text-indent: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #c9dbec;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
}

.campo-form:focus {
    border-color: var(--dark4);
    box-shadow: 0 0 10px var(--dark3);
}

.grupo-form {
    margin-bottom: 1.5rem;
}

.botao-form {
    color: #e2e8f0;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.5 ease;
}

.botao-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.linha-vertical {
    width: 3px; 
    height: 130px;
    background-color: rgba(255, 255, 255, 0.699);
    position: absolute; 
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

h3 {
    color: var(--dark5);
    padding-top: 20px;
    text-align: center;
    cursor:default;
    font-weight: bold;
}
h3:hover {
    cursor: default;
}

a > img {
    scale: 1.8;
    transition: 0.2s;
    filter:invert();
    padding-top: 23px;
}
a > img:hover{
    scale: 2.2;
}

@keyframes flutuar {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

footer {
    display: block;
    text-align: center;
    justify-content: center;
    padding-top: 6em;
    padding-bottom: 120px;
}

#a_footer{
    color: var(--dark5);
    padding-bottom: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 200px;
}
.footer-container-redes {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 0%;
    padding: 0%;
}

.footer-left {
    height: 200px;
    align-items: center;
}

.footer-img-left {
    display: flex;
    justify-content:center;
    gap: 1.8rem;
}

.footer-img-right {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
}

p#footer { 
    color: var(--dark5);
}

/*Resposividade Mobile (767px)*/

@media (max-width: 767px)
{
   
html, body {
    overflow-x: hidden;
}
    header {
        width: 100%;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--dark6);
        box-shadow: 0px 3px 15px var(--dark1);
    }

    .box-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: 80%;
        flex-wrap: nowrap;
        gap: 1.5rem;
    }
    
  nav {
        display: flex;
    }
    .menu-btn {
        display: block;
        padding-right: 15%;
    }


    nav.show {
        display: flex !important;
    }

    nav {
        position: fixed;
        top: 60px;
        right: 0;
        background: var(--dark6);
        flex-direction: column;
        width: 70%;
        padding: 20px;
        gap: 1.5rem;
        border-left: 2px solid var(--dark4);
        box-shadow: -4px 0 10px rgba(0,0,0,0.4);
        display: none;
    }

    nav.show {
        display: flex !important;
    }

    
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
    .first-section {
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .first-section > div {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .first-section h1,
    .first-section p {

    justify-content: center;
    align-items: center;
}
    
    h1 {
        display: inline;
        height: 100%;
        font-size: 2.3rem;
        justify-items: center;
        text-align: center;
        
    }
    p {
    font-size: 14px;
    letter-spacing: 1.7px;
    }
    
    
    .box-img-main {
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    padding: 1rem;
    }

    
    .img-profile {
        border-radius: 30px;
        width: 40%;
        max-width: 280px;
        object-fit: cover;
        animation: flutuar 5s ease-in-out infinite;
    }

   .section-maior ul {
    display: flex;
    gap: 1rem;
   }

    section#my-projects {
        padding: 40px 0;
        height: auto;
    }

    .projects {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .project1,
    .project2 {
        width: 100%;
        max-width: 350px;
        height: auto;
        flex-direction: column;
        gap: 1.5rem;
        padding: 20px;
    }

    .back-project1,
    .back-project2 {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    img#project1,
    img#project2 {
        width: 200px;
        height: 200px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .text-project1 {
        padding: 0;
        width: 100%;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    p#projects {
        text-align: center;
        line-height: 18px;
    }

    section#how-can-i-help-you {
        padding: 3em 1em;
        text-align: center;
    }

    .container-help-you {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        height: auto;
        width: 100%;
        padding: 0rem 1rem;
    }

    .left-you,
    .middle-you,
    .right-you {
        width: 100%;
        max-width: 246px;
        padding: 1.5rem;
        gap: 0.6rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.07);
        box-shadow: 0px 4px 18px rgba(0,0,0,0.2);
        margin: 0 auto;
    }

    .left-you ul,
    .middle-you ul,
    .right-you ul {
        font-size: 0.9rem;
        padding: 0;
        align-items: center;
    }

    .icons-you {
        padding: 1rem 0;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    section#contact {
        padding: 3em 1.5em; 
        overflow-x: hidden;
    }

    .contatos-titulo {
        font-size: 1.6rem;
        text-align: center;
        padding-bottom: 24px;
        gap: 1rem;
    }

    .formulario-contato {
        width: 100%;
        max-width: 270px;
        padding: 1.5rem;
        margin: 0 auto;
        border-radius: 14px;
    }

    .campo-form {
        max-width: 240px;
        padding: 0.9rem;
        font-size: 0.95rem;
        text-indent: 6px;
        border-radius: 6px;
    }

    textarea.campo-form {
        max-width: 240px;
        font-size: 0.95rem;
        line-height: 1.3rem;
    }

    .grupo-form {
        margin-bottom: 1.2rem;
    }

    .botao-form {
        padding: 0.9rem;
        font-size: 1rem;
        border-radius: 6px;
    }

    footer {
        padding-top: 4em;
        padding-bottom: 3em;
        text-align: center;
        overflow-x: hidden; 
    }

    #a_footer {
        font-size: 1.5rem;
        padding-bottom: 30px;
    }

    .footer-container-redes {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .footer-left,
    .footer-right {
        height: auto;
        width: 100%;
        max-width: 250px;
        padding: 1.5rem;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        margin: 0 auto;
    }

    .footer-left h3,
    .footer-right h3 {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .footer-img-left,
    .footer-img-right {
        gap: 3rem;
        padding-bottom: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-img-left img,
    .footer-img-right img {
        width: 34px;
        height: 34px;
    }

    p#footer {
        font-size: 0.9rem;
        margin-top: 2rem;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3rem;
    }

    .linha-vertical {
    display: none;
    }
}
@media (min-width: 768px) and (max-width:1023px) {

    html, body {
    overflow-x: hidden;
}
    
    header {
        width: 100%;
        padding: 15px 0;
        display: flex;
        justify-content: center; 
        align-items: center;
        background-color: var(--dark6);
        box-shadow: 0px 3px 15px var(--dark1);
    }
    
    nav {
        width: 100%;
        display: flex;
        justify-content: center; 
    }


    .first-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .first-section > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .first-section h1 {
        padding-top: 4rem;
        font-size: 2.4rem;
        text-align: center;
    }

    .first-section p {
        font-size: 1.1rem;
        max-width: 500px;
        line-height: 1.6rem;
        text-align: center;
    }

    .box-img-main {
        width: 100%;
        display: flex;
        justify-content: center; 
        padding: 0;
    }

    .img-profile {
        width: 52%;
        max-width: 320px;
        border-radius: 30px;
    }
    section#my-projects {
        padding: 40px 0;
        height: auto;
    }

    .projects {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .project1,
    .project2 {
        width: 100%;
        max-width: 350px;
        height: auto;
        flex-direction: column;
        gap: 1.5rem;
        padding: 20px;
    }

    .back-project1,
    .back-project2 {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    img#project1,
    img#project2 {
        width: 200px;
        height: 200px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .text-project1 {
        padding: 0;
        width: 100%;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    p#projects {
        text-align: center;
        line-height: 18px;
    }

    section#how-can-i-help-you {
        padding: 3em 1em;
        text-align: center;
    }

    .container-help-you {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        height: auto;
        width: 100%;
        padding: 0rem 1rem;
    }

    .left-you,
    .middle-you,
    .right-you {
        width: 100%;
        max-width: 546px;
        padding: 1.5rem;
        gap: 0.6rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.07);
        box-shadow: 0px 4px 18px rgba(0,0,0,0.2);
        margin: 0 auto;
    }

    .left-you ul,
    .middle-you ul,
    .right-you ul {
        font-size: 1rem;
        padding: 0;
        align-items: center;
    }

    .icons-you {
        padding: 1rem 0;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    section#contact {
        padding: 3em 1.5em; 
        overflow-x: hidden;
    }

    .contatos-titulo {
        font-size: 1.6rem;
        text-align: center;
        padding-bottom: 24px;
        gap: 1rem;
    }

    .formulario-contato {
        width: 100%;
        max-width: 470px;
        padding: 1.5rem;
        margin: 0 auto;
        border-radius: 14px;
    }

    .campo-form {
        max-width: 440px;
        padding: 0.9rem;
        font-size: 0.95rem;
        text-indent: 6px;
        border-radius: 6px;
    }

    textarea.campo-form {
        max-width: 440px;
        font-size: 0.95rem;
        line-height: 1.3rem;
    }

    .grupo-form {
        margin-bottom: 1.2rem;
    }

    .botao-form {
        padding: 0.9rem;
        font-size: 1rem;
        border-radius: 6px;
    }

    footer {
        padding-top: 4em;
        padding-bottom: 3em;
        text-align: center;
        overflow-x: hidden; 
    }

    #a_footer {
        font-size: 1.5rem;
        padding-bottom: 30px;
    }

    .footer-container-redes {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .footer-left,
    .footer-right {
        height: auto;
        width: 100%;
        max-width: 250px;
        padding: 1.5rem;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        margin: 0 auto;
    }

    .footer-left h3,
    .footer-right h3 {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .footer-img-left,
    .footer-img-right {
        gap: 3rem;
        padding-bottom: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-img-left img,
    .footer-img-right img {
        width: 34px;
        height: 34px;
    }

    p#footer {
        font-size: 0.9rem;
        margin-top: 2rem;
        padding-bottom: 150px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3rem;
    }

    .linha-vertical {
    display: none;
    }
}

