* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--backgroud-one);
}

.principal-page {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 10vmin 0vmin 0vmin 10vmin;
}

.principal-page .info-godog {
    margin-top: 15vh;
    width: 50vw;
}

.principal-page .info-godog h1 {
    color: var(--principal-color);
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 4vw;
    line-height: 7vh;
}

.principal-page .info-godog h2 {
    color: var(--principal-color);
    font-family: 'Sora', sans-serif;
    font-weight: 100;
    font-size: 1.5vw;
    margin-top: 2vh;
}

.button-download {
    background-color: var(--secundary-color);
    width: 30vw;
    height: 7vh;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 1.2vw;
}

.button-download i {
    margin-right: 1vw;
}


.principal-page .images-godog {
    margin-top: 5vmin;
    width: 40vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.principal-page .images-godog .splide {
    width: 100%;
    z-index: 10;
    background-color: white;
    transform: rotate(2deg);
    box-shadow: black 0px 0px 100px;
}

.principal-page .images-godog .back-one {
    width: 35vw;
    height: 35vw;
    position: absolute;
}

.principal-page .images-godog .back-one::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    background-color: var(--secundary-color);
    transform: rotate(-15deg);
    z-index: 4;
}

.principal-page .images-godog .back-two {
    width: 40vw;
    height: 40vw;
    position: absolute;
}

.principal-page .images-godog .back-two::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: -2%;
    background-color: var(--tertiary-color);
    z-index: 5;
    transform: rotate(15deg);
}

#caracteristicas {
    width: 100%;
    min-height: 10vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 0vmin 10vmin;
}

.caracteristica {
    margin-top: 10vmin;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.caracteristica span {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: var(--secundary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
}

.caracteristica h2 {
    color: var(--principal-color);
    margin-top: 3vmin;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    text-align: center;
}

.caracteristica p {
    color: var(--principal-color);
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-top: 1vmin;
}

#como-funciona{
    width: 100%;
    margin-top: 10vmin;
    position: relative;
    padding: 10vmin;

}
#como-funciona .content-tutorial{
    background-color: var(--tertiary-color);
    padding: 10vmin;
    border-radius: 50px;
}
#como-funciona h2{
    color: var(--secundary-color);
    font-size: 5vmin;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
}
#como-funciona ol{
    margin-top: 6vmin;
    max-width: 900px;
}
#como-funciona ol li{
    color: var(--principal-color);
    font-size: 3vmin;
    margin-top: 4vmin;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
}

.down-div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10vmin;
}

footer{
    width: 100%;
    background-color: var(--tertiary-color);
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p{
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: 3vmin;
}