/* RESPONSIVO */
@media(max-width:1380px) {

    .menu {
        padding: 1rem 3%;
    }

    section {
        padding: 10rem 3%;
    }

    .box-especialidades {
        gap: 4rem;
    }
}

@media(max-width:1310px) {

    .box-especialidades_card {
        width: 100%;
    }
}

@media(max-width:1100px) {

    .hero-container {
        flex-direction: column;
        gap: 4rem;
    }

    .hero-container .hero-txt {
        width: 100%;
    }

    .hero-container .hero-txt p {
        text-align: center;
    }

    .contato-container {
        flex-direction: column;
    }

    .contato .contato-principal {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .footer {
        padding: 2rem 3%;
    }
}

@media(max-width:910px) {

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        border-bottom-left-radius: 2rem;
        border-left: 2px solid var(--main-color);
        border-bottom: 2px solid var(--main-color);
        display: none;
        flex-direction: column;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        margin: 3rem 0;
        color: white;
    }

    .sobre-container .sobre-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;       
    }

    .sobre-container .sobre-card_reverse {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .sobre-container .sobre-card p {
        text-align: center;
    }

    .box-especialidades_card {
        text-align: center;
    }

    .contato-container .social a {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        padding-top: 5px;
    }   
}

@media(max-width:650px) {

    .hero-orbit {
        width: 100%;
    }

    .orbit-center::before {
        height: 120%;
        width: 70%;
    }

    .orbit-center img {
        width: 60%;
    }
    
}