/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #404943;
    background: #effdf1;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/* ===== UTILITÁRIOS ===== */
.etiqueta {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #4a645a;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.7px;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
}

.btn:hover {
    opacity: .88;
    transform: translateY(-1px);
}

.btn--solido {
    background: #35684f;
    color: #ffffff;
    padding: 17px 32px;
    border: none;
}

.btn--contorno {
    background: transparent;
    color: #4a645a;
    padding: 15px 34px;
    border: 2px solid #4a645a;
}

.btn--grande {
    padding: 20px 40px;
    font-size: 15px;
}

/* ===== NAV ===== */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(239, 253, 241, .85);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(44, 56, 48, .06);
    transition: background .3s;
}

#nav .nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 32px;
}

#nav .nav__logo {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: #35684f;
    margin-right: auto;
    white-space: nowrap;
}

#nav .nav__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

#nav .nav__link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #404943;
    text-decoration: none;
    transition: color .2s;
    padding-bottom: 2px;
}

#nav .nav__link:hover {
    color: #35684f;
}

#nav .nav__link--ativo {
    color: #35684f;
    border-bottom: 2px solid rgba(53, 104, 79, .4);
}

#nav .nav__hamburguer {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

#nav .nav__hamburguer span {
    display: block;
    width: 24px;
    height: 2px;
    background: #35684f;
    border-radius: 2px;
    transition: all .3s;
}

#nav .nav__mobile {
    display: none;
    flex-direction: column;
    background: rgba(239, 253, 241, .98);
    border-top: 1px solid rgba(44, 56, 48, .08);
    padding: 16px 40px 24px;
    gap: 4px;
}

#nav .nav__mobile.aberto {
    display: flex;
}

#nav .nav__mobile-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #404943;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 56, 48, .06);
}

#nav .nav__mobile-btn {
    margin-top: 16px;
    align-self: flex-start;
}

/* ===== BANNER ===== */
#banner {
    background: #effdf1;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#banner .decoracao-folha-01 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#banner .decoracao-folha-02 {
    position: absolute;
    right: 0;
    top: 90px;
}

#banner .banner__container {
    position: relative;
    z-index: 1;
    max-width: 944px;
    width: 100%;
    padding: 120px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

#banner .banner__container .etiqueta {
    margin-bottom: 52px;
}

#banner .banner__titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.3;
    letter-spacing: -0.96px;
    color: #35684f;
    margin-bottom: 32px;
}

#banner .banner__subtitulo {
    font-size: 18px;
    line-height: 1.8;
    color: #404943;
    max-width: 660px;
    margin-bottom: 40px;
}

#banner .banner__acoes {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
}

#banner .banner__foto-wrap {
    margin-bottom: 56px;
}

#banner .banner__foto {
    width: 192px;
    height: 192px;
    border-radius: 9999px;
    border: 4px solid #d8e6da;
    overflow: hidden;
    box-shadow: 0 10px 40px -15px rgba(44, 56, 48, .08);
}

#banner .banner__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

#banner .banner__selos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#banner .banner__selo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #404943;
}

#banner .banner__selo img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ===== ONDA ===== */
.onda {
    line-height: 0;
}

.onda svg {
    width: 100%;
    height: 96px;
    display: block;
}

.onda--baixo {
    background: #effdf1;
}

.onda--cima {
    background: #e9f7eb;
}

/* ===== CITAÇÃO ===== */
#citacao {
    background: #e9f7eb;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

#citacao .citacao__container {
    max-width: 800px;
    text-align: center;
}

#citacao .citacao__texto {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.4;
    letter-spacing: -0.32px;
    color: #4a645a;
    font-style: italic;
    border: none;
}

/* ===== SOBRE ===== */
#sobre {
    background: #effdf1;
    padding: 120px 40px;
}

#sobre .sobre__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

#sobre .sobre__texto {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#sobre .sobre__texto .etiqueta {
    margin-bottom: 4px;
}

#sobre .sobre__titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 32px);
    letter-spacing: -0.32px;
    color: #35684f;
    line-height: 1.4;
}

#sobre .sobre__descricao {
    font-size: 16px;
    line-height: 1.8;
    color: #404943;
}

#sobre .sobre__lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

#sobre .sobre__lista li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #404943;
}

#sobre .sobre__lista li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

#sobre .sobre__imagem-wrap {
    position: relative;
}

#sobre .sobre__imagem {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 40px -15px rgba(44, 56, 48, .08);
    aspect-ratio: 4/5;
}

#sobre .sobre__imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sobre .sobre__card-selo {
    position: absolute;
    bottom: -24px;
    left: -48px;
    background: #ffffff;
    border: 1px solid rgba(192, 201, 193, .2);
    border-radius: 16px;
    box-shadow: 0 10px 40px -15px rgba(44, 56, 48, .08);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

#sobre .sobre__card-selo img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

#sobre .sobre__card-selo div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#sobre .sobre__card-selo strong {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.7px;
    color: #35684f;
}

#sobre .sobre__card-selo span {
    font-size: 16px;
    color: #404943;
}

/* ===== SERVIÇOS ===== */
#servicos {
    background: #eef4f0;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

#servicos .decoracao-folha-03 {
    position: absolute;
    left: 34px;
    bottom: 90px;
}

#servicos .decoracao-folha-04 {
    position: absolute;
    right: 0;
    top: 50px;
}

#servicos .servicos__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

#servicos .servicos__cabecalho {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#servicos .servicos__titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 32px);
    letter-spacing: -0.32px;
    color: #35684f;
}

#servicos .servicos__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

#servicos .cartao {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px -15px rgba(44, 56, 48, .08);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: transform .2s;
}

#servicos .cartao:hover {
    transform: translateY(-4px);
}

#servicos .cartao__icone {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
}

#servicos .cartao__icone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#servicos .cartao__titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 20px;
    color: #35684f;
    line-height: 1.4;
}

#servicos .cartao__descricao {
    font-size: 15px;
    line-height: 1.65;
    color: #404943;
}

#servicos .servicos__cta {
    display: flex;
    justify-content: center;
}

/* ===== DEPOIMENTOS ===== */
#depoimentos {
    background: #F5F2EB;
    padding: 120px 0 80px;
}

#depoimentos .depoimentos__cabecalho {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#depoimentos .depoimentos__titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 32px);
    letter-spacing: -0.32px;
    color: #35684f;
}

#depoimentos .depoimentos__swiper {
    padding: 16px 96px 56px;
    overflow: hidden;
}

#depoimentos .depoimento {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px -15px rgba(44, 56, 48, .08);
    padding: 32px;
    min-width: 400px;
    min-height: 276px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
    box-sizing: border-box;
}

#depoimentos .depoimento__estrelas {
    color: #f5b800;
    font-size: 14px;
    letter-spacing: 2px;
}

#depoimentos .depoimento__texto {
    font-size: 15px;
    line-height: 1.7;
    color: #404943;
    flex: 1;
}

#depoimentos .depoimento__autor {
    font-weight: 600;
    font-size: 16px;
    color: #404943;
}

#depoimentos .depoimentos__paginacao {
    bottom: 16px;
}

#depoimentos .depoimentos__paginacao .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(53, 104, 79, .2);
    opacity: 1;
    transition: background .3s, width .3s;
    border-radius: 9999px;
}

#depoimentos .depoimentos__paginacao .swiper-pagination-bullet-active {
    background: #35684f;
    width: 24px;
    border-radius: 9999px;
}

/* ===== FORMAÇÃO ===== */
#formacao {
    background: #e9f7eb;
    padding: 120px 40px;
}

#formacao .formacao__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

#formacao .formacao__cabecalho {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

#formacao .formacao__titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 32px);
    letter-spacing: -0.32px;
    color: #35684f;
}

#formacao .formacao__colunas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

#formacao .formacao__coluna-titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 24px;
    color: #35684f;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(53, 104, 79, .2);
    margin-bottom: 32px;
}

#formacao .formacao__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
}

#formacao .formacao__item-icone {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 9999px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#formacao .formacao__item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#formacao .formacao__item-info strong {
    font-size: 18px;
    font-weight: 400;
    color: #131e17;
    line-height: 1.55;
}

#formacao .formacao__item-info span {
    font-size: 16px;
    color: #404943;
    line-height: 1.5;
}

#formacao .formacao__ano {
    font-size: 14px !important;
    opacity: 0.7;
    margin-top: 4px;
}

/* ===== CTA FINAL ===== */
#cta-final {
    background: #f5f2eb;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

#cta-final .cta-final__deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
}

#cta-final .cta-final__deco img {
    display: block;
    width: 320px;
    height: 320px;
    object-fit: contain;
}

#cta-final .cta-final__deco--topo-dir {
    top: -107px;
    right: -107px;
    transform: rotate(90deg);
}

#cta-final .cta-final__deco--baixo-esq {
    bottom: -86px;
    left: -85px;
    transform: rotate(-90deg);
}

#cta-final .cta-final__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

#cta-final .cta-final__titulo {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.96px;
    color: #35684f;
    line-height: 1.3;
}

#cta-final .cta-final__descricao {
    font-size: 18px;
    line-height: 1.8;
    color: #404943;
    max-width: 640px;
}

#cta-final .cta-final__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 28px;
    height: 56px;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    transition: opacity .2s, transform .2s;
    margin-top: 8px;
}

#cta-final .cta-final__btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* ===== RODAPÉ ===== */
#rodape {
    background: #2c3830;
    color: rgba(230, 244, 232, .8);
}

#rodape .rodape__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 40px;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

#rodape .rodape__marca {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#rodape .rodape__nome {
    font-family: 'Noto Serif', serif;
    font-weight: 400;
    font-size: 24px;
    color: #e6f4e8;
    line-height: 1.33;
}

#rodape .rodape__crp {
    font-size: 16px;
    color: rgba(230, 244, 232, .8);
    line-height: 1.5;
}

#rodape .rodape__links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0.8;
}

#rodape .rodape__links a {
    font-size: 14px;
    font-weight: 400;
    color: #e6f4e8;
    text-decoration: none;
    transition: opacity .2s;
    line-height: 1.43;
}

#rodape .rodape__links a:hover {
    opacity: 1;
}

#rodape .rodape__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(230, 244, 232, 0.8);
    text-decoration: none;
    transition: opacity 0.2s;
}

#rodape .rodape__whatsapp:hover {
    opacity: 0.7;
}

#rodape .rodape__redes {
    display: flex;
    gap: 16px;
    margin-left: auto;
}

#rodape .rodape__redes a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: opacity .2s;
}

#rodape .rodape__redes a:hover {
    opacity: 0.7;
}

#rodape .rodape__fundo {
    background: #1a211c;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #e6f4e8;
}

#rodape .rodape__credito {
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

#rodape .rodape__credito a {
    color: inherit;
    text-decoration: none;
}

#rodape .rodape__credito a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    #servicos .servicos__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    #sobre .sobre__container {
        grid-template-columns: 1fr;
    }

    #sobre .sobre__imagem-wrap {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    #sobre .sobre__card-selo {
        left: 0;
        bottom: -20px;
    }

    #formacao .formacao__colunas {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {

    #nav .nav__links,
    #nav .nav__container>.btn {
        display: none;
    }

    #nav .nav__hamburguer {
        display: flex;
    }

    #nav .nav__container {
        padding: 0 24px;
    }

    #banner .banner__container {
        padding: 80px 24px 60px;
    }

    #banner .banner__titulo {
        font-size: 30px;
    }

    #banner .banner__acoes {
        flex-direction: column;
        align-items: center;
    }

    #banner .banner__deco {
        width: 140px;
        height: 140px;
    }

    #citacao {
        padding: 60px 24px;
    }

    #sobre {
        padding: 80px 24px;
    }

    #sobre .sobre__container {
        padding: 0;
        gap: 40px;
    }

    #servicos {
        padding: 80px 24px;
    }

    #servicos .servicos__cards {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    #depoimentos .depoimentos__swiper {
        padding: 16px 24px 52px;
    }

    #depoimentos .depoimento {
        min-width: calc(100vw - 48px);
    }

    #cta-final {
        padding: 80px 24px;
    }

    #cta-final .cta-final__deco img {
        width: 200px;
        height: 200px;
    }

    #rodape .rodape__container {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px 24px;
        gap: 32px;
    }

    #rodape .rodape__links {
        gap: 20px;
    }

    #rodape .rodape__redes {
        margin-left: 0;
    }

    #rodape .rodape__fundo {
        padding: 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    #banner .banner__selos {
        flex-direction: column;
        gap: 16px;
    }

    #sobre .sobre__card-selo {
        position: static;
        margin-top: 16px;
    }
}