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

html,body{
    height: 100%;
}

body.header-fixed{
    padding-top: clamp(80px, 10vw, 150px);
}

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


.header{
    width: 100%;
    min-height: clamp(80px, 10vw, 150px);
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(10px, 5vw, 145px);
    position: relative;
    transition: all 0.3s;
    z-index: 1000;
}

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

.header > img{
    max-width: 100%;
    height: auto;
    max-height: clamp(60px, 8vw, 120px);
}

.header > .menu{
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap;
}

.header > .menu > a{
    color: white;
    font-size: clamp(14px, 2vw, 28px);
    text-decoration: none;
    padding: 3px clamp(5px, 1.5vw, 20px);
    border-right: 2px solid white;
}

.header > .menu > a:last-child{
    border-right: none;
}

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

.menu-toggle{
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span{
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 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);
}

.container{
    width: 100%;
    min-height: clamp(800px, 100vh, 1100px);
    background-image:url('../Imagens/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.container > .center{
    width: 100%;
    max-width: 100%;
    padding: clamp(20px, 3vw, 30px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
} 

.form{
    width: 100%;
    max-width: 515px;
    min-height: auto;
    background-color: white;
    margin: clamp(20px, 3vw, 30px) auto;
    position: relative;
    padding: clamp(15px, 2vw, 30px);
    text-align: center;
    border-width: clamp(8px, 1vw, 12px);
    border-color: rgba(120,120,120,0.5);
    border-style: solid;
    background-clip: padding-box;
}

.form > h2{
    font-weight: normal;
    color: gray;
    font-size: clamp(20px, 3vw, 32px);
    margin-top: 10px;
}

.input{
    margin-top: 20px;
}

.input > span{
    display: inline-block;
    width: 100%;
    color: gray;
    text-align: left;
    font-size: clamp(16px, 2vw, 20px);
    margin-left: 10px;
}

.input > input[type=text],
.input > input[type=tel],
.input > input[type=email]{
    width: 100%;
    max-width: 470px;
    height: clamp(40px, 5vw, 45px);
    border: 1px solid gray;
    margin-top: 5px;
    padding: 0 10px;
    font-size: clamp(14px, 1.8vw, 18px);
}

.input textarea{
    width: 100%;
    max-width: 470px;
    height: clamp(150px, 20vw, 200px);
    margin-top: 5px;
    padding: 10px;
    font-size: clamp(14px, 1.8vw, 18px);
    resize: vertical;
}

.botão > input[type=submit]{
    width: 100%;
    max-width: 280px;
    height: clamp(48px, 6vw, 56px);
    color: white;
    font-size: clamp(18px, 2.5vw, 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: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 619px;
    min-height: auto;
    background-color: rgb(0, 0, 0,0.7);
    padding: 20px clamp(20px, 3vw, 30px);
}

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

.introdução li{
    color: white;
    margin-top: clamp(10px, 1.5vw, 16px);
    font-size: clamp(18px, 3vw, 30px);
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInCascade 0.6s ease forwards;
}

.introdução li:nth-child(1) { animation-delay: 0.1s; }
.introdução li:nth-child(2) { animation-delay: 0.2s; }
.introdução li:nth-child(3) { animation-delay: 0.3s; }
.introdução li:nth-child(4) { animation-delay: 0.4s; }
.introdução li:nth-child(5) { animation-delay: 0.5s; }
.introdução li:nth-child(6) { animation-delay: 0.6s; }
.introdução li:nth-child(7) { animation-delay: 0.7s; }
.introdução li:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInCascade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sobre{
    margin: 0 auto;
    min-height: auto;
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 50px);
    background-color: black;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre1{
    width: 100%;
    max-width: 1200px;
}

.sobre1 > h2{
    width: 100%;
    font-size: clamp(24px, 4vw, 38px);
    color: white;
    font-weight: normal;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.sobre1 > p{
    width: 100%;
    font-size: clamp(16px, 2.5vw, 25px);
    padding-top: clamp(20px, 3vw, 40px);
    color: white;
    text-align: justify;
    line-height: 1.6;
}

.destaque{
    color: orange;
}

.perfil > img{
    width: clamp(150px, 20vw, 240px);
    height: auto;
    border-radius: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.perfil > p{
    color: white;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-size: clamp(18px, 2.5vw, 24px);
    text-align: center;
}

.arrow{
    width: clamp(50px, 7vw, 70px);
    height: clamp(50px, 7vw, 70px);
    background-image: url('../Imagens/SETA.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    bottom: clamp(20px, 3vw, 35px);
    left: 50%;
    transform: translateX(-50%);
}

.sessão{
    width: 100%;
    text-align: center;
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 30px);
}

.sessão > h2{
    color: orange;
    font-size: clamp(22px, 3.5vw, 35px);
    margin: 0 auto;
}

.portfolio-container{
    width: 100%;
    padding: clamp(20px, 3vw, 50px);
}

.portfólio{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto clamp(40px, 5vw, 60px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    flex-wrap: wrap;
}

.portfólio > img,
.portfólio img.img-menor{
    width: 100%;
    max-width: 900px;
    height: auto;
    flex: 1 1 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.portfólio > p{
    flex: 1 1 300px;
    padding-top: 0;
    font-size: clamp(16px, 2.5vw, 24px);
    text-align: justify;
    line-height: 1.6;
    display: flex;
    align-items: center;
    align-self: stretch;
    min-height: 100%;
}

.footer{
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 30px);
}

.footer-content{
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(30px, 4vw, 50px);
}

.footer-section h3{
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: clamp(15px, 2vw, 20px);
    color: orange;
}

.footer-section p,
.footer-section ul{
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section ul li{
    margin-bottom: 8px;
}

.contato-info{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.whatsapp-icon{
    width: 20px;
    height: 20px;
}

.whatsapp-link,
.email-link{
    color: orange;
    text-decoration: none;
}

.whatsapp-link:hover,
.email-link:hover{
    text-decoration: underline;
}

.footer-bottom{
    margin-top: clamp(30px, 4vw, 40px);
    padding-top: clamp(20px, 3vw, 30px);
    border-top: 1px solid #333;
    text-align: center;
    font-size: clamp(12px, 1.5vw, 14px);
}

.by-author{
    display: block;
    margin-top: 10px;
    font-size: clamp(11px, 1.3vw, 13px);
    color: #888;
}

/* Media Queries */

/* Celulares (até 480px) */
@media (max-width: 480px) {
    .header{
        padding: 0 15px;
        min-height: 80px;
    }

    .header > img{
        max-height: 70px;
        width: auto;
    }

    .menu-toggle{
        display: flex;
    }

    .header > .menu{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1000;
    }

    .header > .menu.active{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header > .menu > a{
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .container > .center{
        flex-direction: column;
        align-items: center;
    }

    .introdução{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        width: 100%;
    }

    .portfólio{
        flex-direction: column;
        align-items: stretch;
    }

    .portfólio > img,
    .portfólio img.img-menor{
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }

    .portfólio > p{
        padding-top: 20px;
        align-items: flex-start;
    }

    .footer-content{
        grid-template-columns: 1fr;
    }
}

/* Celulares grandes (481-768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .header{
        padding: 0 20px;
        min-height: 90px;
    }

    .header > img{
        max-height: 80px;
        width: auto;
    }

    .menu-toggle{
        display: flex;
    }

    .header > .menu{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1000;
    }

    .header > .menu.active{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header > .menu > a{
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 10px 0;
        width: 100%;
        text-align: center;
        font-size: 18px;
    }

    .container > .center{
        flex-direction: column;
        align-items: center;
    }

    .introdução{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        width: 100%;
        max-width: 500px;
    }

    .portfólio{
        flex-direction: column;
        align-items: stretch;
    }

    .portfólio > img,
    .portfólio img.img-menor{
        margin-left: 0;
        margin-top: 0;
    }

    .portfólio > p{
        align-items: flex-start;
    }

    .footer-content{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (769-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header{
        padding: 0 40px;
    }

    .header > .menu > a{
        font-size: 20px;
        padding: 3px 15px;
    }

    .container > .center{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }

    .introdução{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        width: 45%;
        max-width: 400px;
    }

    .form{
        width: 45%;
        max-width: 450px;
    }

    .portfólio{
        flex-direction: row;
        align-items: center;
    }

    .portfólio > img,
    .portfólio img.img-menor{
        flex: 1 1 45%;
        max-width: 45%;
    }

    .portfólio > p{
        flex: 1 1 50%;
        align-items: center;
    }
}

/* Notebooks (1025-1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .header{
        padding: 0 80px;
    }

    .container > .center{
        flex-direction: row;
        justify-content: center;
        padding: 30px 80px;
    }

    .introdução{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        width: 48%;
        max-width: 550px;
    }

    .form{
        width: 48%;
        max-width: 500px;
    }

    .portfólio{
        flex-direction: row;
        align-items: center;
    }

    .portfólio > img,
    .portfólio img.img-menor{
        flex: 1 1 45%;
        max-width: 45%;
    }

    .portfólio > p{
        flex: 1 1 50%;
        align-items: center;
    }
}

/* Monitores grandes (1441-1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
    .header{
        padding: 0 145px;
    }

    .container > .center{
        flex-direction: row;
        justify-content: center;
        padding: 30px 145px;
    }

    .introdução{
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
        width: 48%;
        max-width: 619px;
    }

    .form{
        width: 48%;
        max-width: 515px;
    }
}

/* TVs (acima de 1920px) */
@media (min-width: 1921px) {
    .header{
        padding: 0 clamp(145px, 10vw, 200px);
    }

    .container > .center{
        max-width: 1920px;
        margin: 0 auto;
        padding: 30px clamp(145px, 10vw, 200px);
    }

    .sobre1{
        max-width: 1600px;
    }

    .portfolio-container{
        max-width: 1920px;
        margin: 0 auto;
    }

    .footer-content{
        max-width: 1920px;
    }
}