/* Estilos responsivos para telas menores que 1024px */
@media screen and (max-width: 1024px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0.8rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #AA7B73;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 1001;
    }

    .logo {
        width: 120px;
    }

    .logo img {
        width: 100%;
        height: auto;
        display: block;
    }

    .menu-mobile {
        display: block !important;
        cursor: pointer;
        color: #E3D8D5;
        font-size: 24px;
        background: none;
        border: none;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .menu-mobile:hover {
        transform: scale(1.1);
    }

    .close-menu {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 24px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(170, 123, 115, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 5rem 2rem;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        display: block;
        left: 0;
    }

    .nav-links a {
        display: block;
        margin: 2rem 0;
        font-size: 1.4rem;
        color: #fff;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: transform 0.3s ease;
        padding-left: 1rem;
        border-left: 3px solid transparent;
    }

    .nav-links a:hover {
        transform: translateX(10px);
        border-left: 3px solid #fff;
    }

    .contact-btn {
        display: none;
    }

    .nav-links .contact-btn {
        display: block;
        margin-top: 2rem;
        text-align: left;
    }

    .nav-links .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background-color: #25D366;
        color: #fff;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .nav-links .whatsapp-btn:hover {
        transform: scale(1.05);
        background-color: #128C7E;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Ajustes para o banner */
    .hero {
        margin-top: 60px;
        width: 100%;
        height: 60vh;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        background-image: url('../img/1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    /* Ajuste da citação sobre o banner */
    .quote {
        position: relative;
        margin: 0 auto 2rem;
        text-align: center;
        color: #fff;
        background-color: rgba(170, 123, 115, 0.9);
        padding: 2rem;
        border-radius: 10px;
        width: 90%;
        max-width: 800px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 2;
    }

    .quote p {
        font-size: 1.8rem;
        font-style: italic;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .quote span {
        font-size: 1.2rem;
        opacity: 0.9;
    }
}

/* Estilos responsivos para telas menores que 768px */
@media screen and (max-width: 768px) {
    .logo {
        width: 100px;
    }

    .nav-links {
        padding-top: 6rem;
    }

    .nav-links .contact-btn {
        display: block;
        margin-top: 2rem;
    }

    .nav-links .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background-color: #25D366;
        color: #fff;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .nav-links .whatsapp-btn i {
        font-size: 1.2rem;
    }

    .nav-links .whatsapp-btn:hover {
        transform: scale(1.05);
        background-color: #128C7E;
    }

    .quote {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    .quote p {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .quote span {
        font-size: 1rem;
    }

    .texto-scroll {
        font-size: 1rem;
    }

    .accordion-item {
        padding: 1rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        margin: 2rem 0;
    }

    .footer-column {
        margin: 1rem 0;
    }

    .hero {
        height: 50vh;
    }

    .hero-image {
        background-position: center 20%;
    }
    
    .sobre-section {
        margin-top: -50px;
    }
    
    .imagem-container img {
        height: 100%;
    } 
    
    .psicoterapia-section {
         margin-top: -200px;
    }
    
    .psicoterapia-container .imagem-container img {
        height: 100%;
    }
    
    .duvidas-section {
        margin-top: -100px;
    }
    
    .texto-container {
        margin-top: -50px;
    }
    
    .contato{
        margin-top: -100px;
    }
    .footer {
        padding: 104px 0 100%;
    }    
}

/* Estilos responsivos para telas menores que 480px */
@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.6rem 1rem;
    }

    .logo {
        width: 80px;
    }

    .menu-mobile {
        font-size: 20px;
    }

    .nav-links {
        padding-top: 5rem;
        width: 85%;
    }

    .nav-links .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 40vh;
    }

    .hero-image {
        background-position: center 30%;
    }

    .quote {
        margin-bottom: -1rem;
        padding: 1rem;
        width: 100%;
    }

    .quote p {
        font-size: 12px;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .quote span {
        font-size: 0.9rem;
        color: #E3D8D5 !important;
    }

    .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .endereco-container {
        flex-direction: column;
    }

    .endereco-presencial,
    .endereco-online {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Estilos responsivos para telas muito pequenas */
@media screen and (max-width: 360px) {
    .hero {
        height: 35vh;
    }

    .hero-image {
        background-position: center 25%;
    }

    .quote {
        margin-bottom: 0.5rem;
        padding: 0.8rem;
    }

    .quote p {
        font-size: 1rem;
        line-height: 1.2;
    }

    .quote span {
        font-size: 0.8rem;
    }
}

/* Orientação paisagem em dispositivos móveis */
@media screen and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }

    .quote {
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .quote p {
        font-size: 1.2rem;
    }

    .quote span {
        font-size: 0.9rem;
    }
}

/* Menu mobile */
@media screen and (max-width: 1024px) {
    .navbar {
        position: block;
    }

    .menu-mobile {
        display: block !important;
        position: fixed;
        left: 1rem;
        top: 1rem;
        cursor: pointer;
        z-index: 1000;
        color:  #fff;
        font-size: 24px;
        background: none;
        border: none;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .menu-mobile:hover {
        transform: scale(1.1);
    }

    .close-menu {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 24px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(170, 123, 115, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 5rem 2rem;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        display: block;
        left: 0;
    }

    .nav-links a {
        display: block;
        margin: 2rem 0;
        font-size: 1.4rem;
        color: #fff;
        text-align: left;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: transform 0.3s ease;
        padding-left: 1rem;
        border-left: 3px solid transparent;
    }

    .nav-links a:hover {
        transform: translateX(10px);
        border-left: 3px solid #fff;
    }

    .nav-links .contact-btn {
        display: block;
        margin-top: 2rem;
        text-align: left;
    }

    .nav-links .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background-color: #25D366;
        color: #fff;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .nav-links .whatsapp-btn:hover {
        transform: scale(1.05);
        background-color: #128C7E;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }
} 

.desktop-only {
    display: none !important;
}
