* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Paytone one', sans-serif;
    font-family: 'Anton', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --main-font-family: 'Poppins', sans-serif;
    --big-tittles-font-family: 'Paytone one', sans-serif;
    --secunday-font-family: 'Roboto', sans-serif;
    --h2-font-family: 'Anton', sans-serif;
    --bg-color: #ffffff;
    --text-color: #000;
    --main-color: #fa0336;
    --secundary-color: #3a3a3a;
    --third-color: #003366;
    --big-font: 4rem;
    --titles-center-font: 3rem;
    --h2-font: 2.8rem;
    --h3-font: 2.1rem;
    --h4-font: 1.7rem;
    --p-font: 1.1rem;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}


/*-------------------------Header---------------------------*/

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-color);
    padding: 15px 18%;
    padding-left: 10%;
    padding-right: 10%;
    transition: .3s;
}

/*--Header-Scroll--*/

header.sticky {
    background: var(--bg-color);
    padding: 13px 18%;
    padding-left: 10%;
    padding-right: 10%;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 50%);
}


.logo img {
    max-width: 100%;
    width: 200px;
    height: auto;
}

/*--Top-bar-Navlist--*/

.navlist {
    display: flex;
}

.navlist li {
    position: relative;
}

.navlist a {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--text-color);
    letter-spacing: 1px;
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    font-weight: 800;
    transition: ease .50s;
}

.navlist a:hover {
    color: var(--main-color);
    transform: scale(1.1);

}

#menu-icon {
    font-size: 35px;
    color: var(--text-color);
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.top-btn {
    display: inline-block;
    padding: 9px 30px;
    margin-left: -150px;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    color: var(--text-color);
    letter-spacing: 1px;
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    font-weight: 800;
    transition: ease .50s;

}

.top-btn:hover {
    transform: scale(1.1);
    background: var(--main-color);
    border: 2px solid var(--bg-color);
    color: var(--bg-color);

}

/*-----------------------Home-Inicio--------------------------*/


section {
    padding: 100px 14.2%;
}

.home {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background: url(../img/fundo-branco-principal.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 4rem;
}

.home-text h3 {
    margin: 150px 0px 10px;
    font-size: var(--h4-font);
    font-family: var(--secunday-font-family);
    line-height: 0.5;
    font-weight: 500;

}

.home-text h1 {
    margin: 10px 0px 15px;
    font-size: var(--big-font);
    font-family: var(--big-tittles-font-family);
    line-height: 1;
    font-weight: 800;
}

.home-text h2 {
    margin: 10px 0px 15px;
    font-size: var(--h3-font);
    font-family: var(--secunday-font-family);
    line-height: 1;
    font-weight: 500;
}

.home-text h2 span {
    margin: 10px 0px 15px;
    color: var(--main-color);
    font-size: var(--h3-font);
    font-family: var(--secunday-font-family);
    line-height: 1;
    font-weight: 700;
}

.social-media a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: #0000ee;
    color: var(--bg-color);
    margin-right: 22px;
    margin-bottom: 30px;
    margin-top: 20px;

}

.social-media a:hover {
    transform: scale(1.1);
    background-color: var(--main-color);
    color: var(--bg-color);
    transition: .50s;
}

/*--Botão-Sobre-Mim-Pág-Principal--*/

.btn {
    display: inline-block;
    color: var(--bg-color);
    background-color: var(--main-color);
    font-size: var(--p-font);
    padding: 10px 40px;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--secunday-font-family);
    border-radius: 30px;
    box-shadow: 0px 10px 10px rgb(0, 0, 0, 30%);
    transition: ease .40s;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 18px 10px rgb(0, 0, 0, 40%);
    font-weight: 800;
}

/*--Foto-minha-pág-principal--*/

.main-home-img {
    background-image: url(../img/Foto-minha-Home-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: inline-block;
    margin-left: 100px;
    margin-top: 70px;
    margin-bottom: 0px;
    border-radius: 30px;
    box-shadow: inset 0 0 0 9px rgb(0 0 238 / 10%);
    order: 1;
    justify-content: center;
    width: 400px;
    height: 400px;
    animation: profile__animate 8s ease-in-out infinite 0.2s;
}

@keyframes profile__animate {
    0%{
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }

    50%{
        border-radius: 30% 60% 40% 40%/50% 60% 30% 60%;
    }

    100%{
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }
}


/*---Botão-scroll-up---*/

.scroll-up-btn{
    position: fixed;
    width: 43px;
    height: 43px;
    right: 30px;
    bottom: 30px;
    text-align: center;
    line-height: 50px;
    color: var(--bg-color);
    background-color: var(--main-color);
    border-radius: 50px;
    font-size: 30px;
    z-index: 9999;
    opacity: 0.7;
    cursor: pointer;   
    display: grip;
    transition: all 0.3s ease;
}

.scroll-up-btn.show{
    display: grid;
    opacity: 0.7;
    bottom: 30px;

}

.scroll-up-btn:hover{
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0px 10px 10px rgb(0, 0, 0, 30%);
}



/*-----------------------Sobre-Mim----------------------------*/

.sobre-mim{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 2rem;
}

/*---Sobre-Mim-Titulo-Responsivo---*/

.sobre-mim-texto-responsivo h2{
    display: none;
    font-family: var(--main-font-family);
    font-size: 58px;
    color: var(--text-color);  
    text-align: center; 
    line-height: 1;
    font-weight: 800;
    margin-top: 80px;
}

.sobre-mim-texto-responsivo h2 span{
    color: var(--main-color);
}

/*---Sobre-Mim-Imagem---*/

.sobre-mim-img{
    background: url(../img/Foto-Sobre-Mim-2.jpg); 
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: inline-block;
    margin-top: 10px;
    margin-left: 15%;
    border-radius: 15px;
    max-width: 100%;
    height: 504px;
    width: 330px;
    justify-content: left;
    align-items: left;
}

.sobre-mim-img::before, .sobre-mim-img::after{
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 15px;
    background: linear-gradient(-45deg, #00ff66, #00ffff, #ff00ff, #ff0099, #099fff);
    background-size: 400%;
    height: calc(100% + 5px);
    width: calc(100% + 5px);
    z-index: -1;
    animation: change 40s linear  infinite;
}

@keyframes change{
    0%{
        background-position: 0 0;
    }
    50%{
        background-position: 400% 0;
    }
    100%{
        background-position: 0 0;
    }
}

.sobre-mim-img::after{
    filter: blur(25px);
    opacity: .9;
}

/*---Sobre-Mim-Texto---*/

.sobre-mim-texto{
    margin-left: -10%;
    margin-top: 15%;
    
}

.sobre-mim-texto h2{
    font-family: var(--main-font-family);
    font-size: var(--big-font);
    color: var(--text-color);   
    line-height: 1;
    font-weight: 800;
    margin-top: -15%;
}

.sobre-mim-texto span{
    color: var(--main-color);
}

.sobre-mim-texto p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
}

.sobre-mim-texto p span{
    color: var(--text-color);
}

/*--Botões-Sobre-Mim--*/

.btn-SB{
    display: inline-block;
    color: var(--bg-color);
    background-color: var(--main-color);
    font-size: var(--p-font);
    padding: 10px 40px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 8%;
    font-family: var(--secunday-font-family);
    box-shadow: 0px 18px 10px rgb(0, 0, 0, 10%);
    border-radius: 30px;
    transition: ease .40s;
}

.btn-SB:hover {
    transform: scale(1.1);
    box-shadow: 0px 18px 10px rgb(0, 0, 0, 10%);
    font-weight: 800;
}

.top-btn-SB{
    display: inline-block;
    padding: 9px 30px;
    margin-left: -300px;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 30px;
    color: var(--text-color);
    line-height: 24px;
    letter-spacing: 1px;
    margin-left: 70px;
    font-family: var(--secunday-font-family);
    box-shadow: 0px 18px 10px rgb(0, 0, 0, 10%);
    font-size: var(--p-font);   
    font-weight: 800;
    transition: ease .50s;
}

.top-btn-SB:hover {
    transform: scale(1.1);
    background: var(--main-color);
    border: 2px solid var(--bg-color);
    box-shadow: 0px 18px 10px rgb(0, 0, 0, 10%);
    color: var(--bg-color);
}

/*-----------------------Meus Serviços----------------------------*/

/*--Meus serviços Título--*/

.meus-servicos{
    font-family: var(--main-font-family);
    font-size: var(--titles-center-font);
    margin: 30px auto;
    text-align: center;
    color: var(--text-color); 
    line-height: 1;
    font-weight: 800;
    margin-top: -4.5%;  
}

.meus-servicos span{
    color: var(--main-color);
}

/*--Meus Serviços Texto--*/

.meus-servicos-2{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: right;
    grid-gap: 2rem;
    margin-top: -10%; 
}

.meus-servicos-texto h3{
    font-family: var(--h2-font-family);
    font-size: var(--h2-font);
    color: #003366;
    font-weight: 900;
    text-align: left;
}

.meus-servicos-texto p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 1px;
    line-height: 22px;
    margin-top: 8%;
    text-align: left;
    margin-bottom: 8%;
}

.meus-servicos-texto p span{
    color: var(--text-color);
}

/*--Botão-Meus-Serviços--*/

.btn-MS{
    display: inline-block;
    padding: 9px 78px;
    margin-top: 12px;
    margin-bottom: 132px;
    background: transparent;
    border: 2px solid #003366;
    border-radius: 30px;
    color: #003366;
    letter-spacing: 1px;
    margin-left: 0%;
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    font-weight: 800;
    transition: ease .50s;

}

.btn-MS:hover {
    transform: scale(1.1);
    background: #003366;
    border: 2px solid var(--bg-color);
    color: var(--bg-color);

}


/*----Programas--Experience----*/

.Experience{
    margin-top: -40px;
    margin-right: -25%;
}

.Skills-Experience{
    margin-bottom: 50px;
}

.skills-box .skills-list {
    display: grid;
    grid-template-columns: auto auto auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    animation: fadeIn 0.5s ease-out forwards;

}

@keyframes fadeIn {
    0% { opacity: 0;}
    100% { opacity: 1;}
}

.skills-card{
    position: relative;
    background: #f9f9f9;
    display: grid;
    place-items: center;
    height: 180px;
    width: 180px;
    border-radius: 20px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    cursor: help;
    
} 

.tooltip-html{
    position: absolute;
    text-align: center;
    top: -40px;
    background: #fe5022;
    width: 70px;
    color: var(--bg-color);
    font-size: 23px;
    font-weight: 200;
    border-radius: 3px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    z-index: 1;

}

.skills-card:hover .tooltip-html{
    transform: translateY(0) ;
    opacity: 1;

}

.tooltip-css{
    position: absolute;
    text-align: center;
    top: -40px;
    background: #0098f9;
    width: 70px;
    color: var(--bg-color);
    font-size: 23px;
    font-weight: 200;
    border-radius: 3px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    z-index: 1;
}

.skills-card:hover .tooltip-css{
    transform: translateY(0) ;
    opacity: 1;

}

.tooltip-js{
    position: absolute;
    text-align: center;
    top: -40px;
    background: #ffe100;
    width: 110px;
    color: var(--text-color);
    font-size: 23px;
    font-weight: 200;
    border-radius: 3px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    z-index: 1;
}

.skills-card:hover .tooltip-js{
    transform: translateY(0) ;
    opacity: 1;

}

.tooltip-wp{
    position: absolute;
    text-align: center;
    top: -40px;
    background: #0076a0;
    width: 110px;
    color: var(--bg-color);
    font-size: 23px;
    font-weight: 200;
    border-radius: 3px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    z-index: 1;
}

.skills-card:hover .tooltip-wp{
    transform: translateY(0) ;
    opacity: 1;

}

.tooltip-el{
    position: absolute;
    text-align: center;
    top: -40px;
    background: #ec0036;
    width: 110px;
    color: var(--bg-color);
    font-size: 23px;
    font-weight: 200;
    border-radius: 3px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    z-index: 1;
}

.skills-card:hover .tooltip-el{
    transform: translateY(0) ;
    opacity: 1;

}

.tooltip-wc{
    position: absolute;
    text-align: center;
    top: -40px;
    background: #e15c98;
    width: 150px;
    color: var(--bg-color);
    font-size: 23px;
    font-weight: 200;
    border-radius: 3px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    z-index: 1;
}

.skills-card:hover .tooltip-wc{
    transform: translateY(0) ;
    opacity: 1;

}

/*--Botão-Meus-Serviços-telemovel--*/

.btn-MS-tel{
    display: none;
    padding: 9px 78px;
    margin-top: 80px;
    margin-bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: 2px solid #003366;
    border-radius: 30px;
    color: #003366c6;
    letter-spacing: 1px;
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    font-weight: 800;
    transition: ease .50s;

}

.btn-MS-tel:hover {
    transform: scale(1.1);
    background: #003366;
    border: 2px solid var(--bg-color);
    color: var(--bg-color);

}


/*-----------------------Meu Portfolio----------------------------*/

/*--------Meu Portfolio Título---------*/

.meu-portfolio-titulo{
    font-family: var(--main-font-family);
    font-size: var(--titles-center-font);
    margin: 30px auto;
    text-align: center;
    color: var(--main-color);
    line-height: 1;
    font-weight: 800;
    margin-top: -19.5%;
    margin-right: 0%;
    
}

.meu-portfolio-titulo span{
    color: var(--text-color);
}

.meu-portfolio-titulo p{
    font-family: var(--secunday-font-family);
    font-size: var(--h3-font);
    color: #003366;
    line-height: 1;
    font-weight: 700;
    margin-top: 2.5%;
    
}

/*--------Meu Portfolio Content---------*/

.meu-portfolio-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    grid-gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 80px;
    margin-bottom: -10px;
}


/*--------Meu Portfolio Content Mundo d-agua---------*/

.meu-portfolio-img-MA{
    position: relative;
}

.meu-portfolio-img-MA img{
    max-width: 100%;
    width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 10px 14px 20px #0000008c;
    border-radius: 12px;
}

.layer-MA{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 25px;
    border-radius: 12px;
    transition: all .40s;
}

.layer-MA:hover{
    background: linear-gradient(rgba(0,0,0,0.4) 0%, #3b4f67);
}

.layer-MA h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    text-align: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;
}

.layer-MA:hover h3{
    bottom: 50%;
    opacity: 1;
}

.layer-MA h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;
}

.layer-MA:hover h5{
    bottom: 43%;
    opacity: 1;
}


/*--------Meu Portfolio Content Dona Finanças---------*/

.meu-portfolio-img-DF{
    position: relative;
}

.meu-portfolio-img-DF img{
    max-width: 100%;
    width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 10px 14px 20px #0000008c;
    border-radius: 12px;
}

.layer-DF{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 25px;
    border-radius: 12px;
    transition: all .40s;
}

.layer-DF:hover{
    background: linear-gradient(rgba(0,0,0,0.4) 0%, #fb385e);
}

.layer-DF h3{
    position: absolute;
    width: 100%;
    font-size: 25px;
    font-weight: 500;
    color: var(--bg-color);
    text-align: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;
}

.layer-DF:hover h3{
    bottom: 50%;
    opacity: 1;
}

.layer-DF h5{
    position: absolute;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: var(--bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .40s;
}

.layer-DF:hover h5{
    bottom: 43%;
    opacity: 1;
}

/*-----------------------Contacto----------------------------*/

.contacto-conteudo{
    padding-block: 80px;

}

.contacto-conteudo{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
}

/*--------Contacto Título---------*/

.contacto{
    font-family: var(--main-font-family);
    font-size: var(--titles-center-font);
    margin: 30px auto;
    text-align: center;
    color: var(--text-color);
    line-height: 1;
    font-weight: 800;
    margin-top: -3.8%;
}

.contacto span{
    color: var(--main-color);
}


/*--------Contacto Texto---------*/

.contacto-content h3{
    font-family: var(--h2-font-family);
    font-size: var(--h2-font);
    color: #003366;
    font-weight: 600;
    text-align: left;
}

.contacto-content h4{
    font-family:var(--h2-font-family);
    font-size: var(--h3-font);
    color: #003366;
    font-weight: 500;
    text-align: left;
    
    
}

.contacto-content p{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-top: 25px;
    text-align: left;
    margin-bottom: 32px;
}

/*--------Contacto Content---------*/

.contacto-content{
    margin-top: -23%;
}

.contacto-list-item{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contacto-item-icon{
    font-size: 35px;
    color: #003366;
    margin-left: -0.5%;
}

.contacto-item-icon i{
    width: 40px;
}

.contact-item-title{
    margin-bottom: 10px;

}

.h5-contact-item-title{
    font-family:var(--h2-font-family);
    font-size: var(--h4-font);
    color: #003366;
    font-weight: 500;
    text-align: left;
    margin-top: 7.5px;
}

.contacto-list-item .contact-info{
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    color: var(--secundary-color);
    letter-spacing: 0.5px;
    line-height: 1.6;
    transition: 0.25s ease-in-out;

}

.contacto-list-item .contact-info:is(:hover, :focus){
    color: var(--text-color);
}

/*--------Contacto Social Media---------*/

.contact-social-media{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding-inline: 40px;
    margin-left: -7.5%;

}

.contact-social-media a{
    display: inline-flex;
    flex-wrap: nowrap;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: #003366;
    color: var(--bg-color);
    margin-right: 22px;
    margin-bottom: 30px;
    margin-top: 20px;

}

.contact-social-media a:hover {
    transform: scale(1.1);
    background-color: var(--main-color);
    color: var(--bg-color);
    transition: .50s;
}

/*--------Formulário de Contacto---------*/

.contact-form{
    background: #ededed; 
    padding: 20px;
    margin-top: -121px;
    margin-bottom: 50px;
    margin-left: 18%;
    border-radius: 12px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);

}

.form-wrapper{
    margin-bottom: 25px;
}

.form-label{
    color: var(--third-color);
    font-size: 1.2rem;
    font-family: var(--h2-font-family);
    margin-bottom: 8px;
    margin-left: 5px;
}

.form-label span{
    color: red;
}

.input-wrapper{
    position: relative;
}

.field .inputfield{
    background: var(--bg-color);
    color: var(--secundary-color);
    width: 100%;
    padding: 10px;
    padding-left: 40px;
    margin-top: 10px;
    border-radius: 12px;
    border-color: transparent;
    font-family: var(--secunday-font-family);
    font-size: 0.9rem;
    transition: 0.25s ease-in-out;
}

.input-wrapper i{
    position: absolute;
    margin-top: 10px;
    top: 10px;
    left: 10px;
    color: var(--secundary-color);
    font-size: 20px;
    transition: 0.25s ease-in-out;
}

.inputfield:focus + i{
    color: var(--third-color);
}

.input-wrapper small{
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

textarea.inputfield{
    min-height: 60px;
    height: 120px;
    max-height: 200px;
    resize: vertical;
}

.inputfield:focus{
    outline: 1px solid;
    color: var(--third-color);
}

.enviar-mensagem{
    text-align: center;
}

input[type="submit"]{
    max-width: unset;
    width: 100%;
    color: var(--bg-color);
    background-color: var(--third-color);
    font-size: var(--p-font);
    padding: 10px 40px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    font-family: var(--secunday-font-family);
    border-radius: 12px;
    border: transparent;
    transition: 0.25s ease-in-out;
    box-shadow: 0px 10px 10px rgb(0, 0, 0, 20%);
}

input[type="submit"]:hover{
    background: var(--main-color);
    transform: none;
    color: var(--bg-color);
    box-shadow: 0px 10px 10px rgb(0, 0, 0, 20%); 
}


/*-----------------------Rodapé----------------------------*/

.footer .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: left;
    justify-content: left;
}

.footer{
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    justify-content: space-between;    
    background: var(--third-color);
    padding: 22px;
    box-shadow: 0px 10px 5px hsla(0, 0%, 0%, 0.4) inset;;
    transition: .3s;
}

.footer h6{
    font-family: var(--main-font-family);
    line-height: 1.6;
    font-size: 2rem;
    color: var(--bg-color);
    margin-left: 95px;
}

.footer h6 span{
    font-family: var(--main-font-family);
    line-height: 1.6;
    font-size: 2rem;
    color: var(--main-color);
}

.copyright{
    color: var(--bg-color);
    line-height: 1.6;
    font-family: var(--secunday-font-family);
    font-size: var(--p-font);
    letter-spacing: 0.5px;
    line-height: 1.6;
    padding-top: 13px;
    margin-left: 640px;
    
}


/*----------------------------------------------Responsivo----------------------------------------------------*/

/*-----------------------Responsivo-Header-Home----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    header{
        padding: 16px 3%;
        transition: .3s;
    }
    header.sticky{
        padding: 10px 3%;
        transition: .3s;
    }
    .logo img{
        width: 170px;
        height: auto;
    }
    section{
        padding: 70px 1%;
        transition: .3s;
    }
    .contacto{
        width: 95%;
        transition: .3s;
    }
    :root{
        --big-font: 3rem;
        --titles-center-font: 2.5rem;
        --h2-font: 2.1rem;
        --h3-font: 1.8rem;
        --h4-font: 1.5rem;
        --p-font: 1rem;
        transition: .3s;
    }
}

/*-----------------------Responsivo-Top-Bar-Tablet----------------------------*/

/*---------1147px--------*/

@media (max-width: 1147px){
    header{
        padding: 16px 3%;
        transition: .3s;
    }
    header.sticky{
        padding: 10px 3%;
        transition: .3s;
    }
    .navlist{
        padding-right: 150px;
    }
    .logo img{
        width: 145px;
        height: auto;
    }
    section{
        padding: 70px 3%;
        transition: .3s;
    }
}

/*---------980px--------*/

@media (max-width: 980px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 150px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.9rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 60px 0px 20px 95px;
        font-size: 1.3rem;
    }

    .navlist.active {
        top: 100%;
    }
}

/*---------890px--------*/

@media (max-width: 890px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 150px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.9rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 60px 0px 20px 135px;
        font-size: 1.3rem;
    }

    .navlist.active {
        top: 100%;
    }
}


/*---------840px--------*/

@media (max-width: 840px){
    
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 150px;
        height: auto;
    }
    .top-btn{
        margin-left: 0px;
        font-size: 0.9rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 70px 0px 20px 120px;
        font-size: 1.3rem;
    }
    .navlist.active {
        top: 100%;
    }
}

/*-----------------------Responsivo-Top-Bar-Telemóvel----------------------------*/

/*---------650px--------*/

@media (max-width: 650px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 130px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.8rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 60px 0px 20px 115px;
        font-size: 1.1rem;
    }
    .navlist.active {
        top: 100%;
    }
}

/*---------530px--------*/

@media (max-width: 530px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 130px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.8rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 60px 0px 20px 115px;
        font-size: 1rem;
    }
    .navlist.active {
        top: 100%;
    }
}

/*---------450px--------*/

@media (max-width: 450px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 115px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.7rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 60px 0px 20px 125px;
        font-size: 1rem;
    }
    .navlist.active {
        top: 100%;
    }
}

/*---------398px--------*/

@media (max-width: 398px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 108px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.6rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 60px 0px 20px 135px;
        font-size: 0.9rem;
    }
    .navlist.active {
        top: 100%;
    }
}

/*---------375px--------*/

@media (max-width: 375px){
    #menu-icon{
        display: block;
        text-align: center;
    }
    .logo img{
        width: 108px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.6rem;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        text-align: center;
        font-size: 0.8rem;
    }
    .navlist.active {
        top: 100%;
    }
}

/*---------350px--------*/

@media (max-width: 350px){
    #menu-icon{
        display: block;
    }
    .logo img{
        width: 108px;
        height: auto;
    }
    .top-btn{
        margin-left: 0;
        font-size: 0.6rem;
        text-align: center;
    }
    .navlist{
        position: absolute;
        top: -1150px;
        left: 0;
        width: 100vw;
        height: 100vh;
        backdrop-filter: blur(50px);
        flex-direction: column;
        align-items: center;
        transition: all .40s ease;
    }
    .navlist a{
        display: block;
        margin: 40px 0 0;
        padding-left: 137px;
        font-size: 0.7rem;
    }
    .navlist.active {
        top: 100%;
    }
}



/*-----------------------Responsivo-Home----------------------------*/

/*---------1500px--------*/

@media (max-width: 1500px){
    .home-text h3{
        font-size: 25px;
    }
    .home-text h1{
        font-size: 60px;
    }
    .home-text h2{
        font-size: 30px;
    }
    .home-text h2 span{
        font-size: 30px;
    } 
}

/*---------1425px--------*/

@media (max-width: 1425px){
    .home-text{
        padding-left: 80px;
    }
    .home-text h3{
        font-size: 25px;
    }
    .home-text h1{
        font-size: 60px;
    }
    .home-text h2{
        font-size: 30px;
    }
    .home-text h2 span{
        font-size: 30px;
    } 
}


/*---------1235px--------*/

@media (max-width: 1235px){
    
    .home-text{
        padding-left: 50px;
    }
    .home-text h3{
        font-size: 23px;
    }
    .home-text h1{
        font-size: 50px;
    }
    .home-text h2{
        font-size: 26px;
    }
    .home-text h2 span{
        font-size: 26px;
    } 
}

/*---------1072px--------*/

@media (max-width: 1072px){
    
    .home-text h3{
        font-size: 22px;
    }
    .home-text h1{
        font-size: 40px;
    }
    .home-text h2{
        font-size: 24px;
    }
    .home-text h2 span{
        font-size: 24px;
    }
    .social-media a{
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    .btn{
        font-size: 16px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .home{
        min-height: 95vh;
    }
    .main-home-img{
        width: 330px;
        height: 330px;
    }
    .home-text h3{
        font-size: 22px;
    }
    .home-text h1{
        font-size: 40px;
    }
    .home-text h2{
        font-size: 24px;
    }
    .home-text h2 span{
        font-size: 24px;
    }
    .social-media a{
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    .btn{
        font-size: 16px;
    }
}

/*---------925px--------*/

@media (max-width: 925px){
    .home{
        min-height: 70vh;
    }
    .main-home-img{
        width: 280px;
        height: 280px;
        margin-left: 50px;
    }
    .home-text{
        padding-left: 20px;
    }
    .home-text h3{
        font-size: 20px;
    }
    .home-text h1{
        font-size: 36px;
    }
    .home-text h2{
        font-size: 22px;
    }
    .home-text h2 span{
        font-size: 22px;
    }
    .social-media a{
        width: 27px;
        height: 27px;
        font-size: 18px;
    }
    .btn{
        font-size: 15px;
    }
}

/*---------810px--------*/

@media (max-width: 810px){
    .home{
        min-height: 60vh;
    }
    .main-home-img{
        width: 270px;
        height: 270px;
    }
    .home-text h3{
        font-size: 18px;
    }
    .home-text h1{
        font-size: 30px;
    }
    .home-text h2{
        font-size: 20px;
    }
    .home-text h2 span{
        font-size: 20px;
    }
    .social-media a{
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
    .btn{
        font-size: 13px;
    }
}

/*-----------------------Responsivo-Home-Telemóvel----------------------------*/

/*---------760px--------*/

@media (max-width: 760px){
    .home{       
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .main-home-img{
        width: 400px;
        height: 400px;
        margin-left: 0;
        justify-content: center;  
    }
    .home-text{
        margin-left: -20px;
        margin-top: -140px;
        text-align: center;
    }
    .home-text h3{
        font-size: 23px;
    }
    .home-text h1{
        font-size: 50px;
    }
    .home-text h2{
        font-size: 26px;
    }
    .home-text h2 span{
        font-size: 26px;
    }
    .social-media a{
        width: 33px;
        height: 33px;
        font-size: 21px;
        margin-left: 5px;
    }
    .btn{
        font-size: 16.5px;
        margin-left: -20px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .home{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .main-home-img{
        width: 330px;
        height: 330px;
        margin-left: 0;
        justify-content: center;  
    }
    .home-text{
        margin-left: -20px;
        margin-top: -140px;
        text-align: center;
    }
    .home-text h3{
        font-size: 21px;
    }
    .home-text h1{
        font-size: 40px;
    }
    .home-text h2{
        font-size: 24px;
    }
    .home-text h2 span{
        font-size: 24px;
    }
    .social-media a{
        width: 31px;
        height: 31px;
        font-size: 19.5px;
        margin-left: 5px;
    }
    .btn{
        font-size: 15px;
        margin-left: -20px;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .home{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .main-home-img{
        margin-top: 55px;
        width: 280px;
        height: 280px;
        margin-left: 0;
        justify-content: center;  
    }
    .home-text{
        margin-left: -20px;
        margin-top: -155px;
        text-align: center;
    }
    .home-text h3{
        font-size: 18px;
    }
    .home-text h1{
        font-size: 34px;
    }
    .home-text h2{
        font-size: 20px;
    }
    .home-text h2 span{
        font-size: 20px;
    }
    .social-media a{
        width: 30px;
        height: 30px;
        font-size: 18px;
        margin-left: 5px;
    }
    .btn{
        font-size: 14px;
        margin-left: -15px;
    }
}

/*---------395px--------*/

@media (max-width: 395px){
    .main-home-img{
        margin-top: 55px;
        width: 220px;
        height: 220px;
        margin-left: 0;
        justify-content: center;  
    }
}

/*---------360px--------*/

@media (max-width: 360px){
    .home-text h3{
        font-size: 16px;
    }
    .home-text h1{
        font-size: 30px;
    }
    .home-text h2{
        font-size: 18px;
    }
    .home-text h2 span{
        font-size: 18px;
    }
}

/*-----------------------Responsivo-Sobre-Mim----------------------------*/

/*---------1072px--------*/

@media (max-width: 1072px){
    .sobre-mim-img{
        margin-left: 5%;
    }
    .sobre-mim-texto h2{
        font-size: 40px;
    }
    .sobre-mim-texto p{
        font-size: 16px;
    }
    .btn-SB{
        font-size: 16px;
    }
    .top-btn-SB{
        font-size: 16px;
    }
}

/*---------980px--------*/

@media (max-width: 980px){
    .sobre-mim-img{
        margin-left: 5%;
        height: 480px;
        width: 302px;
    }
    .sobre-mim-texto h2{
        font-size: 36px;
    }
    .sobre-mim-texto p{
        font-size: 15px;
    }
    .btn-SB{
        font-size: 15px;
    }
    .top-btn-SB{
        font-size: 15px;
    }
}

/*---------860px--------*/

@media (max-width: 860px){
    .sobre-mim-img{
        margin-left: 5px;
        height: 455px;
        width: 285px;
    }
    .sobre-mim-texto{
        margin-top: 22%;
    }
    .sobre-mim-texto h2{
        font-size: 35px;
    }
    .sobre-mim-texto p{
        font-size: 14px;
    }
    .btn-SB{
        font-size: 14px;
    }
    .top-btn-SB{
        font-size: 14px;
    }
}


/*---------810px--------*/

@media (max-width: 810px){
    .sobre-mim-img{
        margin-left: 0;
        height: 445px;
        width: 275px;
    }
    .sobre-mim-texto{
        margin-top: 22%;
    }
    .sobre-mim-texto h2{
        font-size: 35px;
    }
    .sobre-mim-texto p{
        font-size: 14px;
    }
    .btn-SB{
        font-size: 14px;
    }
    .top-btn-SB{
        font-size: 14px;
        margin-left: 10px;
    }
}

/*-----------------------Responsivo-Sobre-Mim-Telemóvel----------------------------*/

/*---------760px--------*/

@media (max-width: 760px){
    .sobre-mim{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .sobre-mim-texto-responsivo h2{
        display: block;
        padding: 0 0;
    }
    .sobre-mim-texto h2{
        display: none;
    }
    .sobre-mim-texto p{
        font-size: 16px;
        margin-top: -102px;
        padding: 10px 0 0 8%;
        text-align: center;
    }
    .btn-SB{
        font-size: 16px;
        margin-bottom: 60px;
        text-align: center;
        width: 83%;
        margin-left: 13%;
    }
    .top-btn-SB{
        font-size: 16px;
        margin: 60px -20%;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .btn-SB{
        font-size: 15px;
        text-align: center;
        width: 83%;
        margin-left: 13%;
    }
    .top-btn-SB{
        font-size: 15px;
        margin: 60px -22%;
    }
}

/*---------640px--------*/

@media (max-width: 640px){
    .btn-SB{
        font-size: 15px;
        text-align: center;
        width: 83%;
        margin-left: 13%;
    }
    .top-btn-SB{
        font-size: 15px;
        margin: 60px -16%;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .sobre-mim-texto-responsivo h2{
        font-size: 55px;
        margin-top: 80px;
    }
    .sobre-mim-img{
        margin-top: -5px;
    }
    .sobre-mim-texto p{
        font-size: 14px;
        text-align: center;
        margin-top: -90px;
    }
    .sobre-mim-texto a{
        display: grid;
    }
    .btn-SB{
        font-size: 14px;
        text-align: center;
        width: 83%;
        margin-left: 13%;
        margin-bottom: 10px;
    }
    .top-btn-SB{
        font-size: 14px;
        text-align: center;
        margin: 25px 115px 0px 161px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .sobre-mim-texto p{
        text-align: left;
        margin-top: -75px;
        padding-left: 13%;
        padding-right: 3%;
    }
    .btn-SB{
        text-align: center;
        width: 83%;
        margin-left: 13%;
    }
    .top-btn-SB{
        text-align: center;
        width: 83%;
        margin-left: 13%;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .sobre-mim-texto-responsivo h2{
        font-size: 50px;
        text-align: center;
        margin-top: 80px;
    }
    .sobre-mim-img{
        height: 410px;
        width: 260px;
        margin-top: -15px;
    }
    .sobre-mim-texto p{
        font-size: 14px;
        margin-top: -75px;
        padding-left: 13%;
        padding-right: 3%;
    } 
    .btn-SB{
        margin-bottom: 0;
    } 
}

/*---------380px--------*/

@media (max-width: 380px){
    .sobre-mim-texto-responsivo h2{
        font-size: 45px;
        margin-top: 65px;
    }
    .sobre-mim-img{
        height: 390px;
        width: 230px;
    }
    .sobre-mim-texto p{
        margin-top: -65px;
    }
}

/*-----------------------Responsivo-Meus-Serviços----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .meus-servicos{
        justify-content: center;
        margin-top: -10px;
        margin-bottom: 90px;
    }
    .meus-servicos-2{
        padding: 70px 7%;
        margin-bottom: 80px;
    }
    .btn-MS{
        margin-bottom: 110px;
    }
}

/*---------1270px--------*/

@media (max-width: 1270px){
    .meus-servicos{
        margin-bottom: 50px;
    }
    .Experience{
        margin-top: -30px;
    }
}

/*---------1130px--------*/

@media (max-width: 1130px){
    .meus-servicos{
        margin-bottom: 70px;
    }
    .meus-servicos-2{
        margin-top: -150px;
    }
    .Experience{
        margin-top: 5px;
    }
    .skills-card{
        height: 150px;
        width: 150px;
    }
    .card-icon img{
        height: 125px;
        width: 125px;
    }
    .btn-MS{
        margin-bottom: 70px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .Experience{
        margin-top: 5px;
    }
    .meus-servicos-2{
        margin-top: -180px;
    }
    .meus-servicos h2{
        font-size: 55px;
    }
    .meus-servicos-texto h3{
        font-size: 32px;
    }
    .meus-servicos-texto p{
        font-size: 16px;
    }
    .btn-MS{
        text-align: center;
        font-size: 16px;
    }
}

/*-----------------------Responsivo-Meus-Serviços-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .meus-servicos-2{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .meus-servicos-texto{
        text-align: center;
        margin-bottom: -50px;
    }
    .meus-servicos-texto h3{
        text-align: center;
        margin-top: -20px;
        font-size: 31px;
    }
    .meus-servicos-texto p{
        text-align: center;
        margin-top: 25px;
        margin-bottom: 35px;
    }
    .Experience{
        margin-top: -30px;
        margin-right: 0;
        margin-bottom: -60px;
    }
    .skills-box .skills-list{
        display: flex;
    }
    .btn-MS{
        display: none;
    }
    .btn-MS-tel{
        display: inline-block;
    }
}

/*---------760px--------*/

@media (max-width: 760px){
    .meus-servicos{
        margin-top: -70px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .btn-MS-tel{
        font-size: 15px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .meus-servicos{
        margin-top: -15px;
    }
    .meus-servicos-texto h3{
        font-size: 30px;
    }
    .meus-servicos-texto p{
        font-size: 14px;
    }
    .btn-MS-tel{
        font-size: 14px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .meus-servicos-texto p{
        text-align: left;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .meus-servicos h2{
        font-size: 50px;
        margin-top: 10px;
    }
    .meus-servicos-texto h3{
        font-size: 28px;
    }
    .meus-servicos-texto p{
        font-size: 14px;
    }
    .skills-card{
        height: 120px;
        width: 120px;
    }
    .card-icon img{
        height: 105px;
        width: 105px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .meus-servicos h2{
        font-size: 45px;
        margin-top: -15px;
    }
    .meus-servicos-texto h3{
        font-size: 26px;
    }
}

/*---------332px--------*/

@media (max-width: 332px){
    .skills-card{
        height: 140px;
        width: 140px;
    }
    .card-icon img{
        height: 125px;
        width: 125px;
    }
}


/*-----------------------Responsivo-Meu-Portfolio----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .meu-portfolio-titulo{
        margin-top: -205px;
    }
    .meu-portfolio-titulo p{
        margin-top: 1.2%;
    }
    .meu-portfolio-content{
        margin-bottom: 80px;
    }
}

/*---------1130px--------*/

@media (max-width: 1130px){
    .meu-portfolio-titulo{
        margin-top: -155px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .meu-portfolio-titulo h2{
        font-size: 55px;
    }
    .meu-portfolio-titulo p{
        font-size: 26px;
    }
    .layer-MA h3{
        font-size: 23px;
        font-weight: 400;
    }
    .layer-MA h5{
        font-size: 15px;
        font-weight: 400;
    }
    .layer-DF h3{
        font-size: 23px;
        font-weight: 400;
    }
    .layer-DF h5{
        font-size: 15px;
        font-weight: 400;
    }
}

/*-----------------Responsivo-Meu-Portfolio-Telemóvel-----------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .meu-portfolio-titulo{
        margin-top: -150px;
    }
    .meu-portfolio-titulo p{
        margin-top: 15px;
    }
}

/*---------795px--------*/

@media (max-width: 795px){
    .meu-portfolio-img-DF{
        margin-top: 30px;
    }
}

/*---------690px--------*/

@media (max-width: 690px){
    .meu-portfolio-titulo p{
        font-size: 25px;
    }
    .layer-MA h3{
        font-size: 21px;
    }
    .layer-MA h5{
        font-size: 14px;
    }
    .layer-DF h3{
        font-size: 21px;
    }
    .layer-DF h5{
        font-size: 14px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .meu-portfolio-titulo p{
        font-size: 23px;
    }
}

/*---------500px--------*/

@media (max-width: 500px){
    .meu-portfolio-titulo p{
        margin-bottom: -15PX;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .meu-portfolio-titulo{
        margin-top: -145px;
    }
    .meu-portfolio-titulo h2{
        font-size: 50px;
    }
    .meu-portfolio-titulo p{
        font-size: 20px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .meu-portfolio-titulo{
        margin-top: -170px;
    }
    .meu-portfolio-titulo h2{
        font-size: 45px;
    }
    .meu-portfolio-titulo p{
        font-size: 18px;
        margin-bottom: -25px;
    }
    .meu-portfolio-img-DF{
        margin-top: 20px;
        margin-bottom: -10px;
    }
}

/*-----------------------Responsivo-Contacto----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    .contacto{
        margin-top: -85px;
        margin-bottom: 80px;
    }
    .contacto-conteudo{
        padding: 70px 7%;
    }
}

/*---------1130px--------*/

@media (max-width: 1130px){
    .contacto-conteudo{
        margin-top: -15px;
    }
}

/*---------1072px--------*/

@media (max-width: 1072px){
    .contacto-content h3{
        font-size: 32px;
    }
    .contacto-content h4{
        font-size: 26px;
    }
    .contacto-content p{
        font-size: 16px;
    }
    .contacto-item-icon{
        margin-top: 2px;
        font-size: 32px;
    }
    .h5-contact-item-title{
        font-size: 23px;
    }
    .contacto-list-item .contact-info{
        font-size: 16px;
    }
    .contact-social-media a{
        margin-left: -7px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    .form-label{
        font-size: 1.1rem;
    }
    input[type="submit"]{
        font-size: 1rem;
    }
}

/*-----------------------Responsivo-Contacto-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .contacto-conteudo{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 15px;
    }
    .contacto-content{
        margin-top: -150px;
        margin-bottom: 160px;
    }
    .contacto-content h3{
        font-size: 31px;
    }
    .contacto-content h4{
        font-size: 25px;
    }
    .contact-social-media a{
        margin-left: 12px;
        width: 33px;
        height: 33px;
        font-size: 21px;
    }
    .contacto-item-icon{
        font-size: 30px;
    }
    .contact-form{
        margin-left: 0;
    }
    .form-label{
        font-size: 1.2rem;
    }
    input[type="submit"]{
        font-size: 1.1rem;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .contacto-content h3{
        font-size: 30px;
    }
    .contacto-content h4{
        font-size: 23px;
    }
    .h5-contact-item-title{
        font-size: 20px;
    }
    .contacto-content p{
        font-size: 14px;
    }
    .contacto-list-item .contact-info{
        font-size: 15.5px;
    }
    .contacto-item-icon{
        font-size: 28px;
    }
    .contact-social-media a{
        width: 31px;
        height: 31px;
        font-size: 19.5px;
        margin-left: -6px;
    }
    .form-label{
        font-size: 1.1rem;
    }
    input[type="submit"]{
        font-size: 1rem;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .contacto h2{
        font-size: 50px;
        margin-top: 3px;
    }
    .contacto-content h3{
        font-size: 28px;
        margin-top: -15px;
    }
    .contacto-content h4{
        font-size: 21px;
    }
    .contacto-list-item .contact-info{
        font-size: 15px;
    }
    .contacto-item-icon{
        font-size: 27px;
    }
    .h5-contact-item-title{
        font-size: 19px;
    }
    .contact-social-media a{
        margin-left: -16px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .contacto h2{
        font-size: 45px;
        margin-top: -22px;
    }
    .contacto-content h3{
        font-size: 26px;
    }
    .contacto-content h4{
        font-size: 19px;
    }
    .contacto-list-item .contact-info{
        font-size: 14.5px;
    }
    .contacto-item-icon{
        font-size: 26px;
    }
    .h5-contact-item-title{
        font-size: 18px;
    }
    .form-label{
        font-size: 1rem;
    }
    input[type="submit"]{
        font-size: 0.9rem;
    }
    .field .inputfield{
        font-size: 0.8rem;
    }
}

/*-----------------------Responsivo-Rodapé----------------------------*/

/*---------1425px--------*/

@media (max-width: 1425px){
    
    .footer h6{
        margin-left: 35px;
    }
    .copyright{
        margin-left: 750px;
    }
}

/*---------1310px--------*/

@media (max-width: 1310px){
    .copyright{
        margin-left: 650px;
    }
}

/*---------1210px--------*/

@media (max-width: 1210px){
    .copyright{
        margin-left: 580px;
    }
}

/*---------1140px--------*/

@media (max-width: 1140px){
    .copyright{
        margin-left: 500px;
    }
}

/*---------1055px--------*/

@media (max-width: 1055px){
    .copyright{
        margin-left: 420px;
    }
}

/*-----------------------Responsivo-Rodapé-Telemóvel----------------------------*/

/*---------980px--------*/

@media (max-width: 980px){
    .footer .container{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer h6{
        font-size: 1.8rem;
        margin-left: 0;
        margin-top: 2px;
        margin-bottom: -10px;
    }
    .footer h6 span{
        font-size: 1.8rem;
    }
    .copyright{
        font-size: 1rem;
        margin-left: 0;
        margin-top: -5px;
    }
}

/*---------570px--------*/

@media (max-width: 570px){
    .footer h6{
        font-size: 1.6rem;
    }
    .footer h6 span{
        font-size: 1.6rem;
    }
    .copyright{
        font-size: 0.9rem;
    }
}

/*---------430px--------*/

@media (max-width: 430px){
    .footer h6{
        font-size: 1.5rem;
    }
    .footer h6 span{
        font-size: 1.5rem;
    }
    .copyright{
        font-size: 0.8rem;
    }
}

/*---------380px--------*/

@media (max-width: 380px){
    .footer h6{
        font-size: 1.45rem;
    }
    .footer h6 span{
        font-size: 1.45rem;
    }
    .copyright{
        font-size: 0.75rem;
    }
}

/*-----------------------Responsivo-Scroll-Up-Telemóvel----------------------------*/

/*---------570px--------*/

@media (max-width: 570px){
    .scroll-up-btn{
        width: 31px;
        height: 31px;
        font-size: 19.5px;
        text-align: center;
        line-height: 35px;
    }
}