* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #E3D8D5;
}

header {
    background: #AA7B73;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #AA7B73;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #E3D8D5;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c8b8b0;
}

.whatsapp-btn {
    background-color: #E3D8D5;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #AA7B73;
    border: 2px solid  #E3D8D5; /* Borda aparece no hover */
    box-shadow: 0 0 10px #E3D8D5;
    color: #E3D8D5;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin: 1rem 0;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-btn {
        margin-top: 1rem;
    }
}

.hero {
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    margin-top: 80px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('../img/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quote {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    position: absolute; /* Posicionamento absoluto */
    bottom: 20px; /* Distância do fundo */
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quote p {
    font-size: 24px;
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote span {
    color: #666;
    font-weight: 500;
}

.sections {
    max-width: 1600px;
    margin: 4rem auto;
    padding: 0 1rem;
    background-color: #E3D8D5;
}

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.sobre-section {
    padding: 0px 5%;
    background-color: #E3D8D5;
}

.sobre-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.texto-container {
    flex: 1;
    max-width: 50%;
}

.texto-container h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 2.5rem;
}

.texto-scroll {
    height: 849px; /* Mesma altura da imagem */
    overflow-y: auto;
    padding-right: 20px;
}

/* Estilização da barra de rolagem */
.texto-scroll::-webkit-scrollbar {
    width: 8px;
}

.texto-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.texto-scroll::-webkit-scrollbar-thumb {
    background: #AA7B73;
    border-radius: 4px;
}

.texto-scroll::-webkit-scrollbar-thumb:hover {
    background: #AA7B73;
}

.texto-scroll p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.imagem-container {
    flex: 1;
    max-width: 50%;
}

.imagem-container img {
    width: 100%;
    height: 849px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .sobre-container {
        flex-direction: column;
    }

    .texto-container,
    .imagem-container {
        max-width: 100%;
    }

    .texto-scroll {
        height: auto;
        max-height: 500px;
    }
}
.psicoterapia-section {
    padding: 80px 5%;
    background-color:#E3D8D5;
}

.psicoterapia-container {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.psicoterapia-container .imagem-container {
    flex: 1;
    max-width: 50%;
}

.psicoterapia-container .imagem-container img {
    width: 100%;
    height: 849px;
    object-fit: cover;
    border-radius: 10px;
}

.psicoterapia-container .texto-container {
    flex: 1;
    max-width: 50%;
}

.texto-container h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
}

.texto-container h3 {
    color: #AA7B73;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.texto-container h4 {
    color: #333;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.texto-scroll {
    height: 849px;
    overflow-y: auto;
    padding-right: 20px;
}

.texto-scroll::-webkit-scrollbar {
    width: 8px;
}

.texto-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.texto-scroll::-webkit-scrollbar-thumb {
    background: #AA7B73;
    border-radius: 4px;
}

.texto-scroll::-webkit-scrollbar-thumb:hover {
    background: #8e44ad;
}

.texto-scroll p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.texto-scroll ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 25px;
}

.texto-scroll ul li {
    margin-bottom: 10px;
    color: #666;
    position: relative;
}

.texto-scroll ul li:before {
    content: "•";
    color: #AA7B73;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.destaques {
    margin-top: 30px;
}

.destaque-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.destaque-item h5 {
    color: #AA7B73;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .psicoterapia-container {
        flex-direction: column;
    }

    .psicoterapia-container .texto-container,
    .psicoterapia-container .imagem-container {
        max-width: 100%;
    }

    .texto-scroll {
        height: auto;
        max-height: 500px;
    }
}

.duvidas-section {
    padding: 0px 5%;
    background-color: #E3D8D5;
}

.duvidas-container {
    max-width: 1000px;
    margin: 0 auto;
}

.duvidas-container h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-header .icon {
    font-size: 1.5rem;
    color:#AA7B73;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

.accordion-item.active .icon {
    transform: rotate(0deg);
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
}

.whatsapp-button {
    display: block;
    width: fit-content;
    margin: 50px auto 0;
    padding: 15px 40px;
    background-color:#AA7B73;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #E3D8D5;
    border: 2px solid #AA7B73; /* Borda aparece no hover */
    box-shadow: 0 0 10px #AA7B73;
    color:#AA7B73;
}

@media (max-width: 768px) {
    .duvidas-container h2 {
        font-size: 2rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 15px;
    }
}

.contato {
    padding: 50px 0;
    background-image: url('images/background-neutro.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contato-titulo {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.contato-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
}

.contato-info h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 32px;
}

.contato-item {
    margin-bottom: 30px;
}

.contato-item p {
    margin-bottom: 10px;
    color: #666;
    font-size: 16px;
}

.contato-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.contato-link:hover {
    color: #007bff;
}

.contato-link i {
    font-size: 24px;
}

.contato-mapa {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
}

.contato-mapa iframe {
    width: 100%;
    margin-bottom: 20px;
}

.endereco {
    color: #333;
}

.endereco h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.endereco p {
    margin-bottom: 5px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
    }
    
    .contato-info,
    .contato-mapa {
        width: 100%;
    }
}

.footer {
    background-color: #AA7B73;
    padding: 60px 0 20px;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 0 0 30%;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    color: #E3D8D5;
}

.footer-column ul li a {
    color: #E3D8D5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #E3D8D5;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 14px;
    color: #E3D8D5;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

.endereco-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.endereco-presencial,
.endereco-online {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
}

.endereco-presencial h3,
.endereco-online h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.endereco-presencial p,
.endereco-online p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.endereco-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.endereco-presencial,
.endereco-online {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
}

.endereco-presencial h3,
.endereco-online h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.endereco-presencial p,
.endereco-online p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.contato-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.contato-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.contato-btn.email {
    background-color: #EA4335;
}

.contato-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contato-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Estilos base para o menu mobile */
.menu-mobile {
    display: none;
    font-size: 1.5rem;
    color: #333;
}

.nav-links {
    transition: 0.3s ease-in-out;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.desktop-only {
    display: block !important;
}

@media screen and (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
}

.close-menu {
    display: none;
}

.contact-btn {
    display: none;
}
.title {
    color: #5f524f !important;
}
