@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* TEXTS */

@font-face {
    font-family: "Regular";
    src: url("../fonts/inter.ttf");
}

body {
    font-family: "regular";
    min-width: 290px;
    background-color: black;
    background-image: url("../img/bg.png");
    background-size: cover;
    color: #fff;
}

input,
.input-area label {
    font-family: "Regular";
}

h1 {
    font-family: "Regular";
    font-size: 62px;
    font-weight: 600;
}

h2 {
    font-size: 44px;
    line-height: 48px;
    font-family: "Regular";
}

h3 {
    font-size: 36px;
    line-height: 48px;
    font-family: "Regular";
}

h4 {
    font-size: 26px;
    line-height: 48px;
    font-family: "Regular";
}

h5 {
    font-size: 20px;
    font-family: "Regular";
}

header {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    width: 60px;
}

.hero {
    width: 100%;
    float: left;
}

.area-headline p {
    text-align: center;
    font-size: 18px;
    color: #a1a1aa;
    margin-top: 20px;
}

.area-headline {
    width: 100%;
    float: left;
    margin-top: 100px;
}

.container {
    width: 1000px;
    float: left;
}

footer {
    width: 100%;
    float: left;
    margin-top: 150px;
    display: flex;
    justify-content: center;
    color: #a1a1aa;
}

footer .container {
    border-top: 1px solid #ffffff2c;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 60px;
}

.hero h1 {
    text-align: center;
    background: -webkit-linear-gradient(#eee, #71717a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-about {
    width: 580px;
    color: #71717a;
    font-size: 14px;
    margin-top: 20px;
}

.icons-social {
    display: flex;
    gap: 30px;
}

.icons-social img {
    width: 24px;
}

.head-footer {
    display: flex;
    justify-content: space-between;
}

.row {
    width: 100%;
    float: left;
}


/* --------- INÍCIO - MOTION --------- */

[data-anime] {
    opacity: 0;
    transition: all 1.2s ease;
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    border: 0px solid white;
}

[data-anime="bottom"] {
    opacity: 0;
    transform: translate3d(0, 50px, 5px);
}

[data-anime="bottom-1"].animate {
    animation: bottom-time 1.2s;
}

[data-anime="bottom-2"].animate {
    animation: bottom-time 1.4s;
}

[data-anime="bottom-3"].animate {
    animation: bottom-time 1.6s;
}

[data-anime="bottom-4"].animate {
    animation: bottom-time 1.8s;
}

@keyframes bottom-time {
    0% {
        opacity: 0;
        transform: translate3d(0, 50px, 5px);
    }
    30% {
        opacity: 0;
        transform: translate3d(0, 50px, 5px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
    }
}


/* --------- FINAL - MOTION --------- */