@media screen and (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
    }

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
        /* garante que o scroll fique travado em mobile */
    }


    .hamburger {
        display: block;
        background: none;
        border: none;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1000;
        cursor: pointer;
        font-size: 2rem;
        color: white;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(34, 34, 34, 0.97);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        z-index: 100;
    }

    .navbar.open {
        display: flex;
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0;
        margin: 0;
        align-items: center;
    }

    .navbar img {
        margin-bottom: 30px;
    }

    .navbar .nav-button {
        display: none;
    }

    .header {
        position: fixed;
        /* tira o header do fluxo normal */
        top: 0;
    }


    section {
        padding: 60px 20px;
    }

    .about {
        flex-wrap: initial;
        flex-direction: column;
    }

    .about img {
        width: 300px;
        max-width: 350px;
    }

    .services {
        display: block;

    }

    .services-content {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .services h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        text-decoration: underline;
        text-underline-offset: 10px;
        border-bottom: 0;
    }

    .services p {
        word-break: normal;
        overflow-wrap: break-word;
    }

    .services-photos article img:hover {
        transform: scale(1.08);
    }

    .reviews-content {
        display: block;

    }

    .contact-info {
        display: block;
    }

    .contact-info p {
        margin-bottom: 20px;
    }

    .location {
        width: 100vw;
        padding-bottom: 50px;
    }

    .footer-content {
        display: flex;
        flex-direction: column-reverse;
    }

    footer p {
        text-align: center;
    }

    /* scheduling page */
    .scheduling header {
        padding: 60px 20px;
        margin-top: 50px;
        
    }

}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .services, .reviews {
        padding: 60px 20px;
        text-align: center;
    }

    .services-content, .reviews-content, .footer-content {
        display: flex;
        flex-direction: column;
        
    }

}

@media (min-width: 1025px) and (max-width: 1280px) {
    .services, .reviews {
        padding: 60px 20px;
        text-align: center;
    }

    .services-content, .reviews-content, .footer-content {
        display: flex;
        flex-direction: column;
        
    }
  
  
  
}