*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: "Roboto Condensed", sans-serif;
    --corHeaderFooter: #181818;
    --fundoSectionRed: radial-gradient( blue, black);
    --fundoSectionWhite: radial-gradient( white 80%, black);
}

html{
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

.header{
    width: 100%;
    height: 80px;
    background-color: var(--corHeaderFooter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9;
}

.logo{
    margin-left: 10%;
    transition: 0.3s;
}

.logo:hover{
    transform: scale(1.02);
}

.menu{
    list-style: none;
    margin-right: 10%;
    display: flex;
    gap: 100px;
}

.menu a{
    padding: 10px 0;
    color: white;
    font-weight: bold;
}

.menu a:hover{
    color: blue;
    border-top: 4px solid white;
}

.wrapper{
    width: 100%;
    height: calc(100vh - 80px);
    background-image: var(--fundoSectionRed);
    scroll-margin-top: 80px;
}

.container{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.column{
    width: 50%;
    height: 100%;
}

.right img{
    margin-top: 4%;
    border-radius: 20px;
}

.left{
    padding-right: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left h2{
    width: 100%;
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 5px;
    word-spacing: 10px;
}

.left h1{
    width: 100%;
    font-family: "Ubuntu", sans-serif;
    color: white;
    margin-bottom: 20px;
}

.left p{
    width: 100%;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.call-to-action{
    background-color: #181818;
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    align-self: flex-start;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-to-action:hover{
    background-color: white;
    color: #181818;
}

.about{
    width: 100%;
    height: calc(100vh - 80px);
    background-image: var(--fundoSectionWhite);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 80px;
}

.sobre{
    width: 50%;
    height: 100%;
}

.about-left img{
    margin-top: 4%;
    border-radius: 5px;
}

.about-right{
    padding-left: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.about-right h2{
    text-align: center;
    width: 100%;
    font-family: "Ubuntu", sans-serif;
    color: black;
    margin-bottom: 20px;
}

.about-right p{
    font-size: 14px;
    width: 100%;
    color: black;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.destak{
    font-size: 16px;
    font-weight: bold;
    color: red;
}

.service{
    width: 100%;
    height: calc(100vh - 80px);
    background-image: var(--fundoSectionRed);
    margin: 0 auto;
    scroll-margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.what{
    font-size: 38px;
    color: white;
    font-family: "Pacifico", cursive;
    user-select: none;
}

.option{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.service2{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.box{
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    width: 50%;
    height: 300px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-align: center;
    transition: 0.3s;
}

.box h2{
    font-size: 14px;
    font-family: "Roboto Condensed", sans-serif;
    user-select: none;
}

.box p{
    font-size: 12px;
    padding: 0 5% 10%;
    user-select: none;
}

.box:hover{
    background-color: white;
    color: black;
    transform: scale(1.03);
}

.box img{
    margin-top: 10%;
}

.dados{
    border-top: 4px solid blue;
    width: 100%;
    min-height: 300px;
    background-image: var(--fundoSectionWhite);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.time h2{
    margin-bottom: 15px;
}

.horario{
    margin-bottom: 15px;
}

.cont{
    margin-bottom: 2px;
}

.redes-sociais{
    display: flex;
    gap: 60px;
}
.redes-sociais img{
    transition: 0.3s;
}

.redes-sociais img:hover{
    transform: scale(1.03);
}

footer{
    width: 100%;
    min-height: 60px;
    border-top: 4px solid blue;
    background-color: #181818;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.direito{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.direitos{
    font-size: 14px;
    color: white;
    padding-top: 20px;
}

.dir1{
    font-weight: bold;
}

.dir2{
    font-size: 12px;
}

.dev{
    margin-top: 20px;
    text-align: center;
    padding-bottom: 10px;
}

.dev h4{
    font-size: 12px;
}

.dev p{
    font-family: "Pacifico", cursive;
}

@media (max-width: 1110px){
    .service{
        height: auto;
        padding-top: 5%;
    }
    
    
    .service2{
        flex-direction: column;
        padding-bottom: 20px;
    }

    .box{
        width: 80%;
        min-height: 200px;
    }


}

@media (max-width: 930px){
    .wrapper{
        height: auto;
    }

    .container{
        padding-top: 20px;
        flex-direction: column;
    }

    .column{
        width: 80%;
    }

    .left h2{
        color: white;
    }

    .right img{
        max-height: 500px;
        padding-bottom: 10%;
    }

    .about{
        height: auto;
    }

    .sobre{
        width: 100%;
    }

    .about-left img{
        max-height: 500px;
    }

    .about-right{
        padding: 30px 0;
    }
}

@media (max-width: 812px){
    .header{
        justify-content: center;
    }

    .logo{
        display: none;
    }

    .menu{
        margin: 0;
    }

     .right img{
        max-height: 400px;
    }

    .info{
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .redes-sociais{
        display: flex;
        gap: 30px;
    }

}

@media (max-width: 660px){
    .option{
        flex-direction: column;
        gap: 5px;
    }

    .what{
        width: 90%;
        text-align: center;
    }

  .service2{
    width: 100%;
  }

  .direito{
    flex-direction: column;
    padding-top: 10px;
    gap: 0;
  }

  .direitos{
    padding-top: 2px;
  }
  
}