*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: fonte ;
}

html,body{
    height: 100%;
}

@font-face{
    font-family: fonte;
    src: url('../Fontes/ModernSans-Light.otf');
}


.header{
    width: 100%;
    height: 150px;
    background-color: black;
    display: flex;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

body.header-fixed{
    padding-top: 150px;
}

@media screen and (max-width: 768px){
    body.header-fixed{
        padding-top: 0;
    }
}

.header > img{
     margin-left: 145px;
}

.header > .menu{
    margin-left: 610px;
    margin-top: 60px;
}

.header > .menu > a{
    color: white;
    font-size: 28px;
    text-decoration: none;
    padding: 3px 20px;
    border-right: 2px solid white;
}

.header > .menu > a:hover{
    color: orange;
}

.container{
    width: 100%;
    height: 1100px;
    background-image:url('../Imagens/banner.png');
    background-size: cover;
    background-position: center;
}

.container > .center{
    height: 100%;
    margin-right: 171px;
} 

.form{
    width: 515px;
    height: 990px;
    background-color: white;
    float: right;
    margin-top: 30px;
    position: relative;
    padding-left: 5px;
    padding-top: 5px;
    text-align: center;
    border-width: 12px;
    border-color: rgba(120,120,120,0.5);
    border-style: solid;
    background-color: white;
    background-clip: padding-box;
}

.form > h2{
    font-weight: normal;
    color: gray;
    font-size: 32px;
    margin-top: 10px;
}

.input{
    margin-top: 20px;
}

.input > span{
    display: inline-block;
    width: 100%;
    color: gray;
    text-align: left;
    font-size: 20px;
    margin-left: 10px;
}

.input > input[type=text]{
    width: 470px;
    height: 45px;
    border: 1px solid gray;
    margin-right: 3px;
    margin-top: 5px;
    outline: none;
}

.input > input[type=text]:focus{
    outline: none;
    border: 1px solid gray;
}

.input textarea{
    width: 470px;
    height: 200px;
    margin-top: 5px;
    outline: none;
}

.input textarea:focus{
    outline: none;
    border: 1px solid gray;
}

.botão > input[type=submit]{
    width: 280px;
    height: 56px;
    color: white;
    font-size: 25px;
    background-color: rgb(255, 166, 1);
    margin-top: 15px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    Cursor: pointer;
    border-bottom: 5px solid rgb(238, 189, 98);
}

.botão > input[type=submit]:hover{
    background-color: rgb(224, 150, 11);
}

.introdução{
    margin-top: 200px;
    margin-left: 290px;
    float: left;
    width: 619px;
    height: 470px;
    background-color: rgb(0, 0, 0,0.7);
    padding: 30px;

}

.introdução > ul{
    list-style-position: inside;
}

.introdução li{
    color: white;
    margin-top: 16px;
    font-size: 30px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sobre{
    margin: 0 auto;
    height: auto;
    min-height: 400px;
    padding: 50px 20px;
    background-color: black;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre1{
    max-width: 1200px;
    margin: 0 auto;
}

.sobre1 > h2{
    width: 100%;
    padding-right: 0;
    font-size: 38px;
    color: white;
    font-weight: normal;
    margin-bottom: 30px;
}

.sobre1 > p{
    width: 100%;
    max-width: 1200px;
    font-size: 25px;
    padding-top: 20px;
    color: white;
    text-align: justify;
    padding-left: 0;
    margin: 0 auto;
}

.destaque{
    color: orange;
}

.perfil > img{
    width: 240px;
    height: 400px;
    border-radius: 90%;
    margin-left: 150px;
}

.perfil > p{
    color: white;
    margin-left: 150px;
    margin-top: 10px;
    font-size: 24px;
}

.arrow{
    width: 70px;
    height: 70px;
    background-image: url('../Imagens/SETA.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    bottom: 35px;
    margin: 0 auto;
    display: block;
}

.sessão > h2{
    color: orange;
    font-size: 35px;
    margin-left: 725px;
}

.portfolio-container{
    width: 100%;
}

.portfólio{
    width: 100%;
    padding: 40px 50px;
    margin-bottom: 30px;
    clear: both;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.portfólio > img{
    width: 900px;
    max-width: 900px;
    max-height: 600px;
    flex-shrink: 0;
    margin: 0px 50px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    object-fit: contain;
}

.portfólio > img.img-menor{
    width: 700px;
    max-width: 700px;
    max-height: 500px;
}

.portfólio > p{
    font-size: 20px;
    text-align: justify;
    line-height: 1.8;
    flex: 1;
    padding-top: 0px;
    margin: 0px;
    align-self: center;
}

.portfolio-container > .portfólio:nth-child(even){
    flex-direction: row-reverse;
}

.portfolio-container > .portfólio:nth-child(even) > img{
    margin-left: 50px;
    margin-right: 0px;
}

.portfolio-container > .portfólio:nth-child(even) > p{
    padding-left: 50px;
    padding-right: 0px;
}

.portfolio-container > .portfólio:nth-child(odd) > img{
    margin-right: 50px;
    margin-left: 0px;
}

.portfolio-container > .portfólio:nth-child(odd) > p{
    padding-right: 50px;
    padding-left: 0px;
}

.input > input[type=tel],
.input > input[type=email]{
    width: 470px;
    height: 45px;
    border: 1px solid gray;
    margin-right: 3px;
    margin-top: 5px;
    padding-left: 10px;
    font-size: 16px;
    outline: none;
}

.input > input[type=tel]:focus,
.input > input[type=email]:focus{
    outline: none;
    border: 1px solid gray;
}

.input > input[type=text]{
    padding-left: 10px;
    font-size: 16px;
}

.input textarea{
    padding: 10px;
    font-size: 16px;
    font-family: fonte;
    resize: vertical;
}

.footer{
    width: 100%;
    background-color: black;
    color: white;
    padding: 50px 0px 20px 0px;
    margin-top: 50px;
}

.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0px 30px;
    gap: 30px;
}

.footer-section{
    flex: 1;
    min-width: 0;
    padding: 0px 20px;
}

.footer-section h3{
    color: orange;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-section p{
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-section p.slogan{
    margin-bottom: 8px;
    word-wrap: break-word;
}

.footer-section p.contato-info{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.whatsapp-icon{
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

.whatsapp-link{
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover{
    color: orange;
    text-decoration: underline;
}

.email-link{
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover{
    color: orange;
    text-decoration: underline;
}

.footer-section ul{
    list-style: none;
}

.footer-section ul li{
    font-size: 18px;
    line-height: 2;
    padding-left: 30px;
    position: relative;
}

.footer-section ul li:before{
    content: "•";
    color: orange;
    position: absolute;
    left: 10px;
}

.footer-bottom{
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 16px;
    color: #999;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p{
    margin: 0;
    position: relative;
    display: block;
}

.by-author{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

html{
    scroll-behavior: smooth;
}

/* Menu Hamburger */
.menu-toggle{
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span{
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1){
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2){
    opacity: 0;
}

.menu-toggle.active span:nth-child(3){
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Media Queries - Responsividade */

/* Tablets */
@media screen and (max-width: 1024px){
    .header > img.logo-header{
        margin-left: 50px;
        width: 150px;
    }
    
    .header > .menu{
        margin-left: auto;
        margin-right: 50px;
    }
    
    .container{
        height: auto;
        min-height: 1100px;
    }
    
    .introdução{
        margin-left: 50px;
        width: 90%;
        max-width: 500px;
    }
    
    .form{
        width: 90%;
        max-width: 515px;
        margin: 30px auto;
        float: none;
    }
    
    .sobre{
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
    }
    
    .sobre1{
        width: 100%;
    }
    
    .sobre1 > h2{
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .sobre1 > p{
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .perfil{
        margin-top: 30px;
        margin-left: 0;
    }
    
    .perfil > img{
        margin-left: 0;
    }
    
    .perfil > p{
        margin-left: 0;
    }
    
    .sessão > h2{
        margin-left: 0;
        text-align: center;
    }
    
    .portfólio{
        flex-direction: column !important;
        padding: 20px;
        align-items: center;
    }
    
    .portfólio > img{
        width: 100%;
        max-width: 900px;
        margin: 0 0 20px 0 !important;
    }
    
    .portfólio > p{
        padding: 0 !important;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-content{
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section{
        text-align: center;
    }
    
    .arrow{
        width: 60px;
        height: 60px;
        bottom: 30px;
        margin: 0 auto;
    }
    
    .footer-bottom{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-bottom p{
        font-size: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .by-author{
        margin-left: 10px;
    }
}

/* Mobile */
@media screen and (max-width: 768px){
    .header{
        height: auto;
        flex-wrap: wrap;
        padding: 10px;
        justify-content: space-between;
        align-items: center;
    }
    
    .header > img.logo-header{
        margin-left: 10px;
        width: 120px;
        height: auto;
    }
    
    .menu-toggle{
        display: flex;
        margin-right: 10px;
    }
    
    .header > .menu{
        display: none;
        width: 100%;
        margin: 0;
        padding: 20px 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .header > .menu.active{
        display: flex;
    }
    
    .header > .menu > a{
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 20px;
        text-align: center;
        width: 100%;
    }
    
    .header > .menu > a:last-child{
        border-bottom: none;
    }
    
    .container{
        height: auto;
        min-height: auto;
        padding: 20px 0;
    }
    
    .container > .center{
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .introdução{
        margin: 20px 10px;
        width: calc(100% - 20px);
        max-width: 100%;
        float: none;
        height: auto;
        padding: 20px;
    }
    
    .introdução li{
        font-size: 22px;
        margin-top: 12px;
    }
    
    .form{
        width: calc(100% - 20px);
        max-width: 100%;
        margin: 20px 10px;
        height: auto;
        padding: 20px;
        float: none;
    }
    
    .form > h2{
        font-size: 24px;
        margin-top: 10px;
    }
    
    .input > input[type=text],
    .input > input[type=tel],
    .input > input[type=email]{
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }
    
    .input textarea{
        width: 100%;
        max-width: 100%;
    }
    
    .botão > input[type=submit]{
        width: 100%;
        max-width: 280px;
    }
    
    .sobre{
        padding: 30px 15px;
    }
    
    .sobre1 > h2{
        font-size: 28px;
    }
    
    .sobre1 > p{
        font-size: 18px;
        padding-top: 20px;
    }
    
    .perfil > img{
        width: 180px;
        height: 280px;
    }
    
    .perfil > p{
        font-size: 20px;
    }
    
    .sessão > h2{
        font-size: 28px;
        padding: 0 15px;
        text-align: center;
    }
    
    .portfólio{
        padding: 20px 15px;
        min-height: auto;
    }
    
    .portfólio > img{
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0 !important;
    }
    
    .portfólio > img.img-menor{
        width: 100%;
        max-width: 100%;
    }
    
    .portfólio > p{
        font-size: 18px;
        padding: 0 !important;
        text-align: center;
    }
    
    .footer-content{
        padding: 0px 15px;
        gap: 30px;
    }
    
    .footer-section h3{
        font-size: 20px;
    }
    
    .footer-section p{
        font-size: 16px;
    }
    
    .footer-section ul li{
        font-size: 16px;
    }
    
    .footer-section p.contato-info{
        flex-wrap: wrap;
        white-space: normal;
    }
    
    .footer-section p.slogan{
        white-space: normal;
        word-wrap: break-word;
    }
    
    .footer-bottom{
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-bottom p{
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        align-items: center;
    }
    
    .by-author{
        position: static;
        transform: none;
        margin-top: 10px;
        right: auto;
    }
    
    .arrow{
        width: 50px;
        height: 50px;
        bottom: 25px;
        margin: 0 auto;
    }
}

/* Mobile pequeno */
@media screen and (max-width: 480px){
    .header > img.logo-header{
        width: 100px;
    }
    
    .introdução li{
        font-size: 18px;
    }
    
    .form > h2{
        font-size: 20px;
    }
    
    .input > span{
        font-size: 16px;
    }
    
    .sobre1 > h2{
        font-size: 24px;
    }
    
    .sobre1 > p{
        font-size: 16px;
    }
    
    .sessão > h2{
        font-size: 24px;
    }
    
    .portfólio > p{
        font-size: 16px;
    }
    
    .footer-bottom{
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .footer-bottom p{
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .by-author{
        position: static;
        transform: none;
        right: auto;
    }
    
    .footer-section p.slogan{
        white-space: normal;
        word-wrap: break-word;
        font-size: 14px;
    }
    
    .arrow{
        width: 40px;
        height: 40px;
        bottom: 20px;
        margin: 0 auto;
    }
}