* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lora", sans-serif;
    --bs-gutter-x: 0;
    border: 0;
}
body {
    width: 100%;
    position: relative;
}
header {
    width: 100%;
    position: relative;
    z-index: 5;
    height: 80px;
    background-color: #FFF;
}
main {
    position: relative;
    z-index: 2;
}
.center {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: auto;
    padding: 0 10px;
}
.topo {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
#nav-desktop ul {
    height: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}
#nav-desktop a {
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    color: #0D4C66;
    font-weight: 700;
    font-family: "Lora", serif;
}
#nav-desktop a:hover {
    color: #377BA6;
}
#nav-mobile, 
#mobile-menu {
    display: none;
}
#mobile-menu {
    background-color: #52a0be;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
}
#mobile-menu svg {
    width: 25px;
    height: 25px;
}
#nav-mobile {
    position: absolute;
    top: 80px;
    right: 0;
    width: 0;
    height: auto;
    background-color: #377BA6;
    border-radius: 0 0 4px 4px;
    transition: all ease-out 0.3s;
    overflow: hidden;
}
#nav-mobile ul {
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    opacity: 0;
    list-style: none;
    transition: all ease-out 0.1s;
}
#nav-mobile a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    color: #FFF;
    text-decoration: none;
    background-color: #52a0be;
    border-radius: 4px;
}
.topo-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.topo-section h2 {
    font-weight: 600;
    text-align: center;
    font-family: "Raleway", sans-serif;
}
.topo-section p {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}
.hr-topo-section {
    height: 5px;
    width: 20%;
    background-color: #377BA6;
    margin: 20px 0;
}
section.hero-section {
    width: 100%;
    position: relative;
    background-image: url('../assets/imagens/background-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-esquerda {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-esquerda h2 {
    font-family: "Raleway", sans-serif;
    color: #377BA6;
    margin-bottom: 20px;
    font-weight: 600;
}
.hero-esquerda p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.link-hero {
    background-color: #359613;
    color: #FFF;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    padding: 10px 15px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}
.hero-direita {
    width: 100%;
    display: flex;
    justify-content: center;
}

.lista-servicos {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.item-servico {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    background-color: #FFF;
    box-shadow: 0px 1px 5px 5px #00000005;
    border-top: 2px solid #377BA6;
}
.show {
    background-color: #377BA6;
    color: #FFF;
    transition: 0.2s all ease;
}
.titulo-servico {
    font-weight: 700;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    text-align: center;
}
.titulo-servico:hover {
    background-color: #377BA6;
    color: #FFF;
}
.info-servico {
    font-size: 15px;
    text-align: center;
    line-height: 20px;
    padding: 10px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    transition: 0.3s;
    border-radius: 0 0 4px 4px;
}
.item-servico-alt {
    background-color: #377BA6;
    color: #FFF;
    padding: 10px;
    text-align: center;
    height: 70px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.sobre-section {
    position: relative;
    background-image: url('../assets/imagens/bg-1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.blank-space {
    width: 100%;
    height: 100px;
}
.area-sobre-info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.sobre-info {
    width: 100%;
    background-color: #ffffff90;
    color: #000;
    border-top: 4px solid #377BA6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sobre-info h2 {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}
.sobre-info h5 {
    width: 100%;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
}
.sobre-info ul {
    margin: 0;
}
.sobre-info ul li b {
    font-family: "Raleway", sans-serif;

}
.sobre-info ul li {
    margin-bottom: 10px;
    font-size: 18px;
}
/* FAQ */
.card-header {
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}
.accordion-body {
    font-weight: 600;
}

/* CONTATO */
.area-contato {
    width: 100%;
}
.topo-contato {
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.topo-contato-esq,
.topo-contato-dir {
    flex: 1;
    border: 1px solid #cecece;
    border-left: 3px solid #377BA6;
}
.topo-contato h5 {
    margin: auto;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
    text-align: center;
    color: #377BA6;
}
.topo-contato ul {
    list-style: none;
    padding: 0;
}
.topo-contato ul li {
    margin-bottom: 10px;
}
.link-wpp {
    display: flex;
    width: 100%;
    color: #FFF;
    text-decoration: none;
    margin: 30px 0;
}
.wpp-contato {
    width: 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-radius: 6px;
    background-color: #359613;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.2s;
}
.wpp-contato:hover {
    background-color: #377BA6;
}
/* AVALIAÇÕES GOOGLE */
#google_reviews {
    width: 100%;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.avaliacao-item {
    width: calc((100% / 3) - 10px); /* Divide em três colunas e ajusta o espaço com o gap */
    background-color: #FFF;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    padding: 12px;
    box-sizing: border-box; /* Garante que padding e borda não afetem a largura total */
}
.avaliacao-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.avaliacoes-topo-nome {
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}
.avaliacao-texto {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    font-family: 'Lora', sans-serif;
}
.avaliacao-topo-img-nome {
    display: flex;
    align-items: center;
    gap: 12px;
}
footer {
    background-color: #377BA6;
}
.footer-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    gap: 5px;
    color: #FFF;
    font-weight: 600;
    font-size: 14px;
}
.footer-info a {
    color: #FFF;
}

@media (max-width: 980px) {
    #nav-desktop {
        display: none;
    }
    #nav-mobile, 
    #mobile-menu {
        display: flex;
    }
    .avaliacao-item {
        width: calc((100% / 2) - 10px);
    }
}

@media (max-width: 640px) {
    .avaliacao-item {
        width: 100%;
    }
    .topo-contato-esq,
    .topo-contato-dir {
        flex: inherit;
        width: 100%;
    }
}

@media (max-width: 460px) {
    .hero-direita img {
        width: 300px;
    }
}