* {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  }

/*------------------GERAL-----------------*/
body {
    background-color: #1F1F1F;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2 {
    color: #F97316;
}

p {
    color: #D4D4D4;
}

/*------------------HEADER-----------------*/
header {
    width: 100%;
    background-color: #000000;
    color: #FFFFFF;
    position: fixed;
    z-index: 99;
}

ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

li {
    font-size: 28px;
    font-weight: bold;
    padding: 25px 0;
    color: #F97316;
}

/*------------------INICIO-------------------*/
section.inicio {
    width: 100%;
    height: auto;
}

.inicio .container {
    padding: 100px 2%;
    display: flex;
    color: #FFFFFF;
    justify-content: space-between;
}

.inicio .texto{
    width: 70%;
}

.inicio h1 {
    margin-top: 80px;
    font-size: 60px;
    color: #F97316;
}

.inicio p {
    margin-top: 50px;
    font-size: 27px;
}

.inicio img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    border: 3px solid #F97316;
    margin: 0 auto;
}

.imagem-container{
    width: 100%;
    max-width: 300px;
}

/* RESPONSIVO INICIO */

@media screen and (max-width: 950px) {
    .inicio .container {
        display: block;
    }

    .imagem-container{
        width: 100%;
        margin: 0px auto;
        margin-top: 50px;
    }

    .inicio h1 {
        margin-top: 0px;
    }

    .inicio .texto{
        width: 100%;
        text-align: center;
    }


}

@media screen and (max-width: 630px){
    .inicio img{
        width: 100%;
        margin: 0 auto;
    }
}

/* BORDA DESTACADA */
.borda {
    height: 3px;
    width: 100%;
    background-color: #F97316;
}

/*---------------PROJETOS-----------*/
section.projetos {
    width: 100%;
    background-color: #2C2C2C;
    padding-bottom: 50px;
}

b{
    color:#e8cc18;
}

.projetos h1 {
    text-align: center;
    font-size: 45px;
    padding-top: 50px;
    color: #F97316;
}

.projetos .container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
}

.projetos .item {
    flex: 1 1 300px;
    margin: 15px;
    box-sizing: border-box;
}

.item h2 {
    text-align: center;
    padding: 10px 0;
    color: #F97316;
}

video {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.projetos .item i{
    color: #F97316;
    text-decoration: underline;
    padding-top: 0px;
    margin-top: 100px;
}

/*------------------SOBRE MIM----------------------*/
section.sobre {
    width: 100%;
}

.sobre .container {
    width: 100%;
    height: auto;
    padding: 20px 2%;
    display: flex;
}

.sobre img {
    width: 300px;
    border-radius: 15px;
}

.sobre .texto {
    padding: 0 2%;
}

.sobre .texto h1 {
    margin-top: 80px;
    font-size: 60px;
    color: #F97316;
}

.texto p {
    margin-top: 50px;
    font-size: 27px;
    color: #D4D4D4;
}

@media screen and (max-width: 800px) {
    .sobre .texto h1 {
        font-size: 50px;
    }

    .texto p {
        font-size: 24px;
    }
}

@media screen and (max-width: 676px) {
    .sobre .texto h1 {
        font-size: 40px;
    }

    .texto p {
        font-size: 22px;
    }
}

@media screen and (max-width: 630px){
    .sobre .container{
        flex-direction: column-reverse;
        text-align: center;
    }

    .sobre .container .texto{
        margin-bottom: 20px;
    }

    .sobre img{
        margin: 0 auto;
    }
}

/*------------------FOOTER----------------------*/
footer {
    width: 100%;
    background-color: #000000;
    color: #FFFFFF;
    padding-top: 30px;
}

footer .container {
    width: 100%;
    height: calc(auto + 100px);
    display: flex;
    margin-top: 30px;
    justify-content: space-around;
    flex-wrap: wrap;
}

footer h1 {
    text-align: center;
    font-size: 45px;
    color: #F97316;
}

footer button{
    margin: 10px 0;
    width: 250px;
    height: 80px;
    background-color: rgb(83, 184, 58);
    color: white;
    cursor: pointer;
    border: 0;
    box-shadow: 3px 2px 3px white;
    font-weight: bold;
    font-size: 17px;
    border-radius: 15px;
    transition: 0.3s;
}

footer button.item2{
    background-color: rgb(20, 58, 155);
}

footer button.item3{
    background-color: rgb(219, 128, 25);
}

footer button:hover{
    transform: scale(1.1);
}

footer p {
    font-size: 27px;
    margin-top: 30px;
    color: #D4D4D4;
}

video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease; 
}

video:hover {
    transform: scale(1.05); 
}

/*FIM 3*/