html, body, footer, img, div, section, h3 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0e0e14;
    --purple: #7F017F;
    --white: #ffeafb;
    --blue: #1F1F75;
}

body {
    font-family: 'Poppins', sans-serif;
    font-display: swap;
    background-color: var(--black);
    color: var(--white);
}

.hero, section, .footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    place-items: center;
}

.container {
    width: 100%;
    max-width: 900px;
}

.container-flex {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    place-items: center;
}

.hero {
    text-align: center;
    background-color: #0e0e14;
}

.hero .logo-container {
    height: 33vh;
}

.logo {
    height: 33vh;
    width: auto;
    object-fit: contain;
}

h1 {
    font-size: 3.5em;
    line-height: 0.8em;
    font-weight: 100;
    padding: 20px;
    margin: 0;
}

@media screen and (max-width:768px) {
    h1 {font-size: 40px;}
}
.hero-buttons * {
    margin: 0;
    padding: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    margin-top: auto;
}

.download-button {
    background-color: #0F0E14;
    width:300px;
    display: flex;
    border: 1px solid #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    place-items: center;
    padding: 10px;
    justify-content: flex-start;
    transition: all 0.5s ease;
}

.download-button .icon {
    flex: 0 30%;
}

.download-button .content {
    flex: 0 70%;
    text-align: left;
}

.download-button:hover {
    background: linear-gradient(to right, var(--black), var(--white));
    color: var(--black);
    transition: all 0.5s ease;
}

.content .do {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 16px;
}

.content .place {
    font-size: 28px;
    font-weight: bold;
}

section {
    padding: 20px;
}

.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }

.color-black { color: var(--black); }
.color-white { color: var(--white); }
.color-pruple { color: var(--purple); }
.color-blue { color: var(--blue); }

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    place-items: center;
}

.steps p {
    font-size: 24px;
    color: purple;
    margin: 0;
    padding: 0;
}

.steps .the-step {
    font-size: 56px;
    font-weight: bolder;
}

.steps .image {
    text-align: right;
}

.steps .image img {
    width: 300px;
    height: auto;
}

footer {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    place-items: center;
}

.footer {
    margin-top: -20px;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: row;
    place-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer nav {
    flex: 1 25%;
}

.footer .logo-container {
    flex:1 40%;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 0;
}

footer img {
    width: 200px;
}

footer a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.copy {
    text-align: center;
    padding-bottom: 20px;
}

.copy * {
    margin: 0;
    padding: 0;
}

#goUp {
    display: none; /* Inicialmente oculto */
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1000;
    text-align: center;
    padding: 12px;
}

#goUp svg {
    background-color: #ffeafb;
    border-radius: 50%;
}