@media (max-width: 1000px) {

    /*Estilos Gerais*/
    .btn-all {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .btn-all a {
        background-color: var(--primary-blue);
        color: var(--light-blue);
        padding: 0.8rem;
        margin-right: 10px;
        border-radius: 5px;
        font-weight: 600;
        transition: 0.3s;
    }

    .title {
        font-size: 27px;
        margin: 1.5rem 0;
    }

    /*Cabeçalho*/
    header {
        padding: 0.1rem 2.5rem;
    }

    .navlist-desktop {
        display: none;
    }

    .btn-menu-mobile {
        display: block;
    }

    /*Seção Inicial*/
    #home {
        padding: 5rem 1.5rem 0;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        box-shadow: none;
        gap: 2.5rem;
    }

    #home::after {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 30px;
        text-align: center;
    }

    .hero-content p {
        font-size: 15px;
        text-align: center;
        margin: 1.5rem 0;
    }

    .hero-image {
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        height: 150px;
        background-color: var(--light-blue);
        border-radius: 50%;
        animation: float 5s ease-in-out infinite;
    }

    /*Seção Sobre*/
    #about {
        padding: 5rem 1.5rem 1rem;
        gap: 1.5rem;
    }

    .box-about {
        background-color: var(--light-blue);
        box-shadow: 0 2px 10px var(--secondary-blue);
        display: flex;
        align-items: center;
        flex-direction: column;
        max-width: 900px;
        padding: 0.5rem;
        border-radius: 10px;
    }

    .about-image {
        height: 50%;
        width: 100%;
        text-align: center;
    }

    .about-image img {
        width: auto;
    }

    .about-content {
        height: 50%;
        width: 100%;
    }

    .about-content h3 {
        font-size: 18px;
        color: var(--primary-blue);
        text-align: center;
        margin: 1rem;
    }

    .about-content p {
        font-size: 14px;
        color: var(--primary-blue);
        text-align: justify;
        hyphens: auto;
        max-width: 90%;
        margin: 0 auto 20px;
    }

    .about-content .btn-all {
        text-align: center;
        margin: 2rem;
    }

    /*Seção Serviços*/
    #services {
        overflow-x: hidden;
        padding: 5rem 1.5rem 1rem;
        gap: 1rem;
    }

    .box-services {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    .list-services {
        max-width: 100%;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .list-services h3 {
        display: none;
    }

    .list-services ul li {
        max-width: 75%;
        margin-bottom: 1rem;
        padding: 0.5rem;
        background-color: var(--light-blue);
        border: 2px solid var(--secondary-blue);
        border-radius: 10px;
        font-size: 14px;
    }

}