.intro-content {
    /* Usando */
    position: relative;
    /* top: -4rem; */
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
    min-height: 100vh;
    max-width: 1200px;
}

.intro-text-content,
.intro-img {
    /* Usando */
    display: flex;
    justify-content: center;
    text-align: center;
}

.intro-text-content h2 {
    margin-top: 100px;
    border-bottom: 5px solid var(--white-color);
    margin-bottom: 60px;
}

.intro-img img {
    margin-bottom: 100px;
    max-width: 100%;
    height: auto;
    width: 350px;
}

.grid-one-content {
    /* Usando */
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    min-height: 100vh;
}

.grid-one-content ul li {
    /* Usando */
    text-align: justify;
    margin-left: 20px;
    list-style: decimal;
    margin-bottom: 30px;
}

.text-white p a {
    color: var(--white-color);
}

.text-primary p a {
    color: var(--primary-color);
}

.grid-one-content p a:hover {
    text-decoration: dotted underline;
}

.footer {
    text-align: center;
    font-size: 16px;
}

.footer a {
    color: var(--primary-color);
}

.footer p {
    margin: 0;
    padding: 30px;
    text-align: center;
}

.close-menu {
    display: none
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white-color);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary-color);
    transform: rotate(-92deg);
    border: 4px solid var(--primary-color);
}

@media (max-width: 800px) {

    .menu {
        bottom: 0;
        text-align: center;
    }

    .menu-content,
    .menu-content ul {
        flex-direction: column;
        justify-content: center;
    }

    .menu-content {
        height: 100vh;
    }

    .menu {
        display: none;
    }

    .close-menu-label::after {
        content: '☰';
        position: fixed;
        z-index: 2;
        top: 20px;
        right: 30px;
        background-color: var(--primary-color);
        color: var(--white-color);
        font-size: 30px;
        line-height: 30px;
        width: 30px;
        height: 30px;
        border-radius: 5px;
        text-align: center;
        padding: 3px;
        cursor: pointer;
    }

    /* × */
    .close-menu:checked~.menu {
        display: block;
    }

    .close-menu:checked~.close-menu-label::after {
        content: '×';
        font-size: 50px;
    }

    .menu-spacing {
        display: none;
    }
}

@media (max-width: 462px) {
    h2 {
        font-size: 45px;
    }

    .footer p a .img-footer {
        display: none;
    }
}

@media (max-width: 350px) {
    h2 {
        font-size: 35px;
    }
}