@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

body {
    background-color: rgba(0, 0, 0, 0.938);
    font-family: Arial, Helvetica, sans-serif;
    
}

header {
    padding: 40px 100px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 100px;
}

a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

a:hover {
    color: rgb(252, 47, 47);
    transition: 0.3s ease-in-out;
}
/* FIM DA BARRA DE NAVEGAÇÃO */

main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80vh;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: 100%;
}

section h1 {
    margin-left: 100px;
    font-weight: bold;
    font-size: 2em;
    color: white;
    text-transform: uppercase;
}

.destaque {
    color: rgb(252, 47, 47);
    font-size: 6em;
}

span {
    background-color: rgb(41, 41, 41);
    width: 41px;
    height: 41px;
    border-radius: 50%;
    align-items: center;
}

span:hover {
    background-color: rgb(252, 47, 47);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.texto {
    width: 400px;
    margin-left: 100px;
    color: white;
    text-align: justify;
    font-size: 0.8em;
}

button {
    width: 40%;
    margin-left: 100px;
    padding: 15px;
    font-weight: bold;
    background-color: rgb(252, 47, 47);
    color: white;
    border-radius: 30px;
    margin-top: 30px;
    text-transform: uppercase;
}

button:hover {
    cursor: pointer;
    transform: translateY(-10px);
    transition: 0.3s ease-in-out;
}

.social {
    display: flex;
    gap: 40px;
    bottom: 20px;
    position: absolute;
    left: 100px;
}

.social img {
    width: 41px;
    height: 41px;
    filter: invert(1);
    transform: scale(0.4);
}

.parte2 {
    align-items: bottom;
}

.circulo {
    position: absolute;
    background-color: rgb(252, 47, 47);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    bottom: -400px;
    right: -300px;
    overflow: hidden;
}

.fotos {
    position: absolute;
    width: 540px;
    right: 0;
    bottom: 0;
}

.fotos img {
    width: 130px;
}

.img1 {
    transform: rotate(-15deg);
}

.img2 {
    transform: rotate(5deg);
}

.img3 {
    transform: rotate(15deg);
}

.img4 {
    transform: rotate(-15deg);
}