html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

header {
    display: flex;
    height: 80px;
    position: sticky;
    top: 0;
    background-color: #ffffffaa;
    padding: 20px 40px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
}

.logo img {
    width: 80px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    min-width: 200px;
}

.logo-text small {
    font-size: 14px;
    margin-top: 5px;
    font-weight: normal;
}

body, html {
    margin: 0;
    padding: 0;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 10px;
    margin-left: 20px;
}

nav ul li a {
    font-size: 1.2rem;
    font-weight: 480;
    text-decoration: none;
    padding: 10px 6px;
    color: #333;
}

nav ul li a:hover {
    text-decoration: none;
    color: #9a9a9a;
    transition: 0.1s ease-in-out;
}

/*---------------------------------------------------------------------------------------------*/

#sobre {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgb(238, 232, 224);
    position: relative;
    width: 100%;
    height: auto;
    max-height: 600px;
    text-align: center;
    font-size: 1.2rem;
}

.imagem-sobre {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}

#imgFundo {
    display: flex;
    width: 400px;
    border-radius: 80px;    
    padding: 30px;
}

.texto-sobre {
    width: 50%;
    text-align: left;
}

.texto-sobre h2 {
    font-size: 2rem;
    margin-top: 100px;
    margin-bottom: 10px;
}

.subtitulo {
    display: flex;
    align-items: center;
}

.texto-sobre hr {
    border: none;
    border-top: 2px solid #ccc; 
    margin-top: 15px;
    width: 8rem;
    margin-left: 0px;
    margin-right: 20px;
}

.subtitulo-sobre {
    display: inline-block;
    font-size: 1.2rem;
    color: #666;
}

.texto-sobre p {
    width: 80%;
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: justify;
}

#sobre a {
    text-decoration: none;
    width: 12px;
}

#sobre button:hover {
    background-color: rgb(246, 242, 242);
    transition: 0.4s ease;
    cursor: pointer;
}


/*---------------------------------------------------------------------------------------------*/

#atendimento {
    display: flex;
    justify-content: center;
    padding: 20px 40px;
    background-color: #c9c0ae;
    height: 400px;
}

.tipos-atendimento {
    width: 50%;
    padding: 80px 20px;
    margin-top: 20px;
    margin-left: 100px;
}

.tipos-atendimento hr {
    border: none;
    border-top: 2px solid #969696; 
    margin-top: 15px;
    width: 12rem;
    margin-left: 0px;
}

.texto-atendimento {
    display: flex;
    align-items: center;
    width: 50%;
    margin-right: 120px;
    text-align: justify;
}

/*---------------------------------------------------------------------------------------------*/

#contato {
    display: flex;
    justify-content: center;
    padding: 20px 40px;
    height: 500px;
    background-color: #ffffff;
}

.planta {
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: center;
    padding: 20px 40px;
}

.planta img {
    height: 100%;
    object-fit: contain;
}

.fale-comigo {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    padding: 20px 40px;
}

.fale-comigo p {
    display: flex;
    align-items: center;
    line-height: 2rem;
}

.botao-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 0, 0);
    background-color: rgb(115, 183, 91);
    border: none;
    height: 60px;
    width: 120px;
    font-family: 'Epilogue', sans-serif;
}

#contato a {
    text-decoration: none;
    width: 12px;
}

#contato button:hover {
    background-color: rgb(246, 242, 242);
    transition: 0.4s ease;
    cursor: pointer;
}

/*---------------------------------------------------------------------------------------------*/

#faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0px;
    height: auto;
    background-color: #e6e6e6;
}

.titulo-faq {
    display: flex;
    justify-content: center;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
}

.faq {
    margin: 0 auto;
    width: 800px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  background: #f7f7f7;
  font-weight: bold;
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    font-size: 0.9rem;
    transition: padding 0.2s ease;
}

.faq-answer.active {
  max-height: 500px; /* ou um valor suficiente para o conteúdo */
  padding: 15px;
}


/*---------------------------------------------------------------------------------------------*/

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background-color: #464845;
    text-align: center;
}

.icon-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-footer a {
    display: flex;
    align-items: center; 
}

.whatsapp-logo {
    height: 5rem;
}

.whatsapp-logo:hover {
    filter: brightness(0) invert(1);
}
.instagram-logo {
    height: 4rem;
}

.instagram-logo:hover {
    filter: brightness(0) invert(1);
}

.texto-footer {
    display: flex;
    font-size: 1rem;
    color: white;
    padding: 20px 20px;
}


colors {
    color: #F1E6D1; /* Bege claro */
    color: #D1B09E; /* Marrom claro */
    color: #A1B88B; /* Verde claro */
    color: #FFFFFF; /* Branco */
    color: #FFD700; /* Dourado */
} 

