*{
    box-sizing:border-box;
    padding:0;
    margin:0;
}

:root{
    /* background da página */
    --background-gradient-from: #fff;
    --background-gradient-to: #f1f5f9;

    /* hover navbar item */
    --color-hover-navbar: #f1f4f8;

    /* navbar, titles/content text cards Portfolio and Skills, copyright footer */
    --text-color-1: #374151;

    /* page all, title h1 and paragraph Hero */
    --color-text-2: #111827;

    /* Title span Hero */
    --title-span-from: #3b82f6;
    --title-span-to: #1e3a8a;

    /* text button left hero */
    --button-left-hero-text: #374151;

    /* paragraph portfolio, skills and contact */
    --text-color-3: #1f2937;

    /* background card portfolio */
    --background-card-portfolio: #fdfcfd;

    /* border cards portfolio, skills and contact */
    --border-cards: #cdd8e4;

    /* border cards hover portfolio and skills */
    --border-cards-hover: #81acf3;

    /* background article image portflio */
    --background-article-image: #d4d9df;
    
    /* tags portfolio */
    --tags-portfolio: #bfdbfe;
    
    /* text-tags-portfolio */
    --text-tags-portfolio: #1e3a8a;

    /* text button more portfolio/skills */
    --text-button-more: #5f6f8a;

     /* backgorund button more portfolio/skills */
    --background-button-more: #ffffff;

    /* background card skills */
    --background-card-skills: #fcfcfd;

    /* svg Access linkedin/github */
    --svg-article-card-skills: #7d8594;

    /* span Access linkedin/github */
    --span-article-card-skills: #6b7280;

    /* background section contact */
    --background-contact: #ffffff;

    /* background contact form */
    --background-contact-form: #ffffff;

    /* label and text input form contact */
    --label-input-form: #4b5563;

    /* background inputs form contact */
    --background-input-form: #fff;

    /* border inputs form contact */
    --border-inputs-form: #cbd5e1;

    /* copyright footer */
    --copyright-footer: #e9eef3;

    /* color dividing line */
    --color-dividing-line: #e5e7eb;

    /* footer navbar mobile */
    --footer-navbar: #f2f6fa;

}

body.dark{
    /* background da página */
    --background-gradient-from: #0E141A;
    --background-gradient-to: #17212B;

    /* hover navbar item */
    --color-hover-navbar: #1e2b38;
    
    /* navbar, titles/content text cards Portfolio and Skills, copyright footer */
    --text-color-1: #f9fafb;

    /* page all, title h1 and paragraph Hero */
    --color-text-2: #f9fafb;

    /* Title span Hero */
    --title-span-from: #bfdbfe;
    --title-span-to: #3b82f6;

    /* text button left hero */
    --button-left-hero-text: #374151;

    /* paragraph portfolio, skills and contact */
    --text-color-3: #f9fafb;

    /* background card portfolio */
    --background-card-portfolio: #17212b;

    /* border cards portfolio, skills and contact */
    --border-cards: #364c63;

    /* border cards hover portfolio and skills */
    --border-cards-hover: #1e3a8a;

    /* background article image portflio */
    --background-article-image: rgb(54 76 99 / .4);

    /* tags portfolio */
    --tags-portfolio: #1e3a8a;

    /* text-tags-portfolio */
    --text-tags-portfolio: #d1d5db;

    /* text button more portfolio/skills */
    --text-button-more: #dbdee0;

    /* backgorund button more portfolio/skills */
    --background-button-more: #17212b;

    /* background card skills */
    --background-card-skills: #1e2b38;

    /* svg Access linkedin/github */
    --svg-article-card-skills: #dbdee0;

    /* span Access linkedin/github */
    --span-article-card-skills: #dbdee0;

    /* background section contact */
    --background-contact: #1e2b38;

    /* background contact form */
    --background-contact-form: #17212b;

    /* label and text input form contact */
    --label-input-form: #f9fafb;

    /* background inputs form contact */
    --background-input-form: #131c24;

    /* border inputs form contact */
    --border-inputs-form: #334155;

    /* copyright footer */
    --copyright-footer: #040608;

    /* color dividing line */
    --color-dividing-line: #1f2937;

    /* footer navbar mobile */
    --footer-navbar: #162029;
}

html,body{
    padding:0;
    margin:0;
    font-family: 'Lexend', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    background: linear-gradient(170deg, var(--background-gradient-from), var(--background-gradient-to));
    scroll-behavior: smooth;
}

a{
    color:inherit;
    text-decoration:none;
}    


/* Navbar */

.navbar{
    z-index: 999;
    position: relative;
    width: 100%;
    padding: 1.563rem 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar .content{
    max-width: 1536px;
    margin: auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    color: var(--text-color-1);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing:-0.02em;
    text-decoration: none;
}

.navbar .menu-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-list li{
    list-style: none;
}

.menu-list li a{
    color: var(--text-color-1);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem 0.5rem 1rem;
    border-radius: 5px;
}

.menu-list li a:hover{
    background-color: var(--color-hover-navbar); 
}

.icon{
    display: none;
    color: var(--text-color-1);
    font-size: 1.25rem;
    cursor: pointer;
}

.menu-list .cancel-btn{
    position: absolute;
    top: 1.563rem;
    right: 1.875rem;
    width: 1.125rem;
    height: 1.125rem;
}

.icon.menu-btn{
    width: 1.125rem;
    height: 1.125rem;
}


/* Content */

main {
    /* 100vh - (navbar + footer) */
    min-height: calc(100vh - 14.375rem);
}

.page{
    color: var(--color-text-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Hero */

#hero{
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.container{
    width: 100%;
    max-width: 1536px;
    padding: 0 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title{
    color: var(--color-text-2);
    margin-top: 5rem;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

.title span{
    font-weight: 700;
    background: linear-gradient(to top right, var(--title-span-from) 0%, var(--title-span-to) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bg ease 5s infinite;
}

@keyframes bg {
    0% { background-size: 200% 200%; background-position: left center }
    50% { background-size: 200% 200%; background-position: right center; }
    100% { background-size: 200% 200%; background-position: left center; }
}

.title .digitacao{
    margin-left: -0.5rem;
    animation: digitacao 1s step-start infinite;
}

@keyframes digitacao {
    0% { opacity: 1; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.paragraph-hero{
    width: 60%;
    margin-top: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 300;
    text-align: center;
    color: var(--color-text-2);
    letter-spacing: 0.02em;
}

.italic-bold{
    font-weight: 700;
    font-style: italic;
}

.container-buttons-hero{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    margin-top: 2.5rem;
    margin-bottom: 5rem;
}

.button-left-hero{
    tab-size: 4;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
    font-family: inherit;
    font-size: 100%;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    background-color: #cdd8e4;
    padding: 0.5rem 1rem;
    color: var(--button-left-hero-text);
}

.button-left-hero:hover{
    transform: scale(1.02);
    transition: all ease 100ms;
}

.button-right-hero{
    tab-size: 4;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
    font-family: inherit;
    font-size: 100%;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    background-color: #cdd8e4;
    padding: 0.5rem 1rem;
    color: #ffffff;
    background-image: linear-gradient(to top right, #3b82f6 0%, #1e3a8a 100%);
    animation: bg ease 5s infinite;
}

.button-right-hero:hover{
    transform: scale(1.02);
    transition: all ease 100ms;
}


/* Portfolio */

#portfolio{
    display: flex;
    width: 100%;
    justify-content: center;
    color: var(--text-color-3);
}

.container-portfolio{
    width: 100%;
    max-width: 1536px;
    padding: 0 5rem;
    position: relative;
}

.dividing-line{
    height: 1px;
    width: 100%;
    border-radius: 9999px;
    background-color: var(--color-dividing-line);
}

.subtitle-portfolio{
    margin-bottom: 1rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    font-family: Lexend,sans-serif;
    font-size: 2rem;
    line-height: 2.25rem;
    font-weight: 300;
    justify-content: center;
}

.grid-portfolio{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4,minmax(0,1fr));
    
}

.item-grid-portfolio{
    margin-left: auto;
    margin-right: auto;
}

.item-grid-portfolio article{
    position: relative;
    border-style: solid;
    border-radius: 1rem;
    border-width: 1.5px;
    border-color: var(--border-cards);
    background-color: var(--background-card-portfolio);
    font-family: Lexend,sans-serif;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    max-width: 276px;
    padding: 0.25rem;
    transition: 0.1s;
}

.item-grid-portfolio article:hover{
    border-color: var(--border-cards-hover); 
}

.article-image-portfolio{
    display: flex;
    height: 11rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
    background-color: var(--background-article-image);
}

.article-image-portfolio img{
    max-width: 100%;
    margin-bottom: -0.75rem;
    display: inline-block;
    height: 100%;
    object-fit: cover;
}

.article-content-portfolio{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.75rem 1.5rem 1rem 1.5rem;
}

.article-content-title-portfolio{
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.article-content-title-portfolio h2{
    margin: 0;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-color-1);
}

.article-content-tags-portfolio{
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.article-content-tags-portfolio span{
    margin-right: 0.25rem;
    border-radius: 9999px;
    background-color: var(--tags-portfolio);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 300;
    text-transform: capitalize;
    color: var(--text-tags-portfolio);
}

.article-content-paragraph-portfolio{
    margin-bottom: 1.5rem;
}

.article-content-portfolio p{
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-size: 0.9rem;
    line-height: 1.4rem;
    font-weight: 300;
    color: var(--text-color-1);
}

.article-content-more{
    display: flex;
    width: 100%;
    font-size: 0.875rem;
    align-items: center;
    justify-content:end;
    color: #3b82f6;
}

.container-button-portfolio{
    margin-top: 3.5rem;
    margin-bottom: 4rem;
    display: flex;
    width: 100%;
    justify-content: center;
}

.container-button-portfolio a{
    color: var(--text-button-more);
    font-weight: 400;
    border-radius: 9999px;
    background-color: var(--background-button-more);
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: 0.2s;
}

.container-button-portfolio a:hover{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
}


/* Skills */

#skills{
    display: flex;
    width: 100%;
    color: var(--text-color-3);
    background-color: transparent;
    justify-content: center;
}

.container-skills{
    width: 100%;
    max-width: 1536px;
    padding: 0 5rem;
}

.subtitle-skills{
    margin-top: 4rem;
    font-family: Lexend,sans-serif;
    font-weight: 300;
    font-size: 2rem;
    line-height: 2.25rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
}

.paragraph-content{
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 250;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    text-align: start;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-color-3);
    text-align: center;
}

.grid-skills{
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.item-grid-skills{
    display: flex;
    justify-content: center;
}

.item-grid-skills article{
    box-sizing: border-box;
    border-style: solid;
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    max-width: 36rem;
    border-radius: 1rem;
    border-width: 1.5px;
    border-color: var(--border-cards);
    background-color: var(--background-card-skills);
    flex-direction: row;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    transition: 0.1s;
}

.item-grid-skills article:hover{
    border-color: var(--border-cards-hover);
}

.article-image-skills{
    min-height: 100%;
    margin: 4px;
    height: auto;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
    border-top-right-radius: 0;
    width: 14rem;
    background-size: cover;
    background-position: center;
}

.article-content-skills{
    height: 240px;
    flex: 1 1 0%;
    overflow: hidden;
    padding: 1rem 1.5rem;
    text-align: left;
    margin-top: 0;
}

.article-content-title-skills{
    margin-bottom: 1.2rem;
}

.article-content-title-skills h2{
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
    color: var(--text-color-1);
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 400;
}

.article-content-paragraph-skills{
    margin-bottom: 2.5rem;
    height: 5rem;
}

.article-content-paragraph-skills p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    width: 100%;
    font-weight: 300;
    color: var(--text-color-1);
    font-size: 0.9rem;
    line-height: 1.5rem;
}

.article-content-exp{
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.article-content-exp svg{
    display: block;
    stroke: var(--svg-article-card-skills);
}

.article-content-exp span{
    font-size: 0.9rem;
    line-height: 1rem;
    color: var(--span-article-card-skills);
    margin-left: 0.3rem;
}

.container-button-skills{
    margin-top: 2.5rem;
    display: flex;
    width: 100%;
    justify-content: center;
}

.container-button-skills a{
    margin-bottom: 4.5rem;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-weight: 300;
    padding: 0.5rem 1rem;
    color: var(--text-button-more);
    background-color: var(--background-button-more);
    transition: 0.2s;
}

.container-button-skills a:hover{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
}


/* Contact */

#contact{
    display: flex;
    width: 100%;
    justify-content: center;
    background-color: var(--background-contact);
    text-align: center;
    color: var(--text-color-3);
}

.container-contact{
    width: 100%;
    max-width: 1536px;
    padding-right: 10rem;
    padding-left: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-contact h2{
    margin-top: 5rem;
    font-family: Lexend,sans-serif;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 300;
}

.container-contact p{
    margin-bottom: 3rem;
    margin-top: 0.5rem;
    text-align: center;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 200;
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 80rem;
    color: var(--text-color-3);
}

.container-contact-form{
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    margin-bottom: 6rem;
}

.contact-form{
    border: solid;
    border-radius: 1rem;
    border-width: 1.5px;
    border-color: var(--border-cards);
    background-color: var(--background-contact-form);
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.contact-form form{
    display: flex;
    flex-direction: column;
}

.label-contact{
    margin-bottom: 0.5rem;
    display: flex;
    width: 100%;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 300;
    color: var(--label-input-form);
}

.input-contact{
    box-sizing: border-box;
    border-style: solid;
    margin: 0;
    appearance: none;
    background-color: var(--background-input-form);
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    border-radius: 0.25rem;
    border-width: 1px;
    border-color: var(--border-inputs-form);
    padding: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-weight: 300;
    color: var(--label-input-form);
}

.input-contact:focus-within{
    outline-color:#00ADEF;
}

.input-contact-textarea{
    height: 120px;
    max-height: 300px;
    box-sizing: border-box;
    border-style: solid;
    margin: 0;
    appearance: none;
    background-color: var(--background-input-form);
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    border-radius: .25rem;
    border-width: 1px;
    border-color: var(--border-inputs-form);
    padding: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-weight: 300;
    color: var(--label-input-form);
    resize: vertical;
}

.input-contact-textarea:focus-within{
    outline-color:#00ADEF;
}

.span-required{
    font-size: 0.85rem;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
    color: red;
    display: none;
}

.response.show-response{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 2rem 1rem;
    color: var(--text-color-3);
    font-size: 0.85rem;
    background-color: rgba(83, 80, 248, 0.1);
    transition: padding 0.5s;
}

.container-button-contact{
    width: 100%;
}

.contact-button{
    width: 50%;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-weight: inherit;
    margin: 0;
    margin-top: 1rem;
    text-transform: none;
    cursor: pointer;
    background-image: none;
    border-radius: 0.25rem;
    background-color: rgb(82 130 255 / 1);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(255 255 255 / 1);
    transition: 0.2s;
}

.contact-button:hover{
    opacity: 0.9;
}

footer{
    display: block;
    width: 100%;
    background-color: transparent;
}

.container-footer{
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.social-links{
    display: flex;
    width: 12%;
    justify-content:space-around;
}

.social-links span{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

.social-links a{
    color: #9ca3af;
}

.social-links svg{
    display: block;
    height: 1.5rem;
    width: 1.5rem;
}

.copyright{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--copyright-footer);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 300;
    color: var(--text-color-1);
}

.footer-navbar{
    display: none;
}

/* Darkmode */

#darkmode {
    width: 0;
    height: 0;
    opacity: 0;
}

.label-toggle {
    display: block;
    height: 22px;
    width: 45px;
    position: relative;
    cursor: pointer;
    top: 2px;
    left: 23%;
}

span.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f3f3f3;
    border-radius: 9999px;
}

span.slide:before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    background: #fff;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/svg/sun.svg');
    border-radius: 9999px;
    top: 0.125rem;
    left: 2px;
    transition: 0.2s;
    box-shadow: rgba(0, 0, 0, 0.21) 0px 0px 7px 1px;
}
  
  
#darkmode:checked + span.slide:before {
    content: '';
    transform: translatex(23px);
    background: #272727;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/svg/moon.svg');
}

/* Responsive */

@media (max-width: 1280px) {

    .grid-portfolio{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .container{
        padding: 0 3rem;
    }

    .container-skills{
        padding: 0 3rem;
    }

    .container-portfolio{
        padding: 0 3rem;
    }

    .container-contact-form{
        width: 80%;
    }

    .container-contact{
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .label-toggle{
        left: 16%;
    }
}

@media (max-width: 1024px) {

    .container{
        padding: 0 1.5rem;
    }

    .title{
        font-size: 2.5rem;
    }

    .container-skills{
        padding: 0 1.5rem;
    }
    
    .grid-skills{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }

    .item-grid-skills{
        justify-content: center;
    }

    .container-portfolio{
        padding: 0 1.5rem;
    }

    .container-contact-form{
        width: 90%;
        
    }

    .container-contact{
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .social-links{
        width: 20%;
    }

    .label-toggle{
        left: 0;
    }
}

@media (max-width: 768px) {

    /* Navbar */
    body.disabled{
        overflow: hidden;
    }
    .icon{
        display: block;
    }
    .icon.hide{
        display: none;
    }
    .navbar .content{
        padding: 0 2rem;
    }
    .navbar .menu-list{
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        height: calc(100vh - 9.7rem);
        width: 100%;
        padding: 2.5rem 0;
        text-align: center;
        background: linear-gradient(170deg, var(--background-gradient-from), var(--background-gradient-to));
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .footer-navbar {
        display: block;
        position: fixed;
        bottom: 0;
        left: -100%;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        background-color: var(--footer-navbar);
    }

    .footer-navbar.show{
        left: 0%;
    }

    .navbar.show .menu-list{
        left: 0%;
    }
    .navbar .menu-list li{
        margin-top: 2.813rem;
    }
    .navbar .menu-list li a{
        margin-left: -100%;
        font-size: 1.125rem;
        /* transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); */
    }
    .navbar.show .menu-list li a{
        margin-left: 0px;
    }
    /* end Navbar */

    .container{
        padding: 0 1.5rem;
    }

    .title{
        font-size: 2rem;
        margin-top: 4rem;
    }

    .paragraph-hero{
        width: 70%;
    }

    .container-buttons-hero{
        flex-direction: column;
    }

    .grid-portfolio{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .item-grid-skills article{
        position: relative;
        margin-bottom: 1rem;
        display: flex;
        max-width: 36rem;
        flex-direction: column;
        border-radius: 1rem;
        border-width: 1.5px;
    }

    .article-image-skills{
        height: 10rem;
        min-height: 100%;
        width: auto;
        border-top-left-radius: 0.75rem;
        border-top-right-radius: 0.75rem;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        /* box-shadow: inset 0 -190px 50px -100px #FCFCFD; */
        background-position: center;
        
    }

    .container-contact-form{
        width: 100%;
    }

    .social-links{
        width: 30%;
    }

}

@media (max-width: 640px) {
    .container{
        padding: 0 2rem;
    }

    .title{
        font-size: 1.8rem;
    }

    .paragraph-hero{
        width: 90%;
    }

    .container-skills{
        padding: 0 2rem;
    }

    .grid-portfolio{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }

    .container-portfolio{
        padding: 0 2rem;
    }

    .social-links{
        width: 40%;
    }

    .contact-button{
        width: 100%;
    }
}