@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');

p{
    margin: 0;
}

:root {
    /* FONTES */
    --fonte-logo: 'Great Vibes', cursive;
    --fonte-titulo: 'Cormorant Garamond', serif;
    --fonte-texto: 'Montserrat', sans-serif;

    /* CORES PRINCIPAIS */
    --cor-verde-principal: #405a3c;
    --cor-verde-escuro: #2f462f;
    --cor-verde-medio: #5f7655;
    --cor-verde-claro: #aab79b;
    --verde-card-suave: #E7E5D8;

    /* CORES DE FUNDO */
    --cor-fundo-site: #f8f1e8;
    --cor-fundo-header: #fbf6ef;
    --cor-fundo-card: #fffaf2;
    --cor-fundo-footer: #334c32;

    /* CORES DE TEXTO */
    --cor-texto-principal: #2d352b;
    --cor-texto-secundario: #5e6659;
    --cor-texto-claro: #f8f1e8;
    --cor-texto-menu: #2f332e;

    /* CORES DE DETALHES */
    --cor-borda-suave: #e3d8c7;
    --cor-linha-decorativa: #d6c9b8;
    --cor-branco: #ffffff;

    /* BOTÕES */
    --cor-botao-verde: #405a3c;
    --cor-botao-verde-hover: #2f462f;
    --cor-botao-texto: #ffffff;

    /* SOMBRAS */
    --sombra-suave: 0 8px 25px rgba(47, 70, 47, 0.12);

    /* TAMANHOS */
    --altura-header: 90px;
    --largura-container: 1180px;
    --largura-quadro: 1250px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-texto);
    background-color: var(--cor-fundo-site);
    color: var(--cor-texto-principal);
}

header {
    width: 100%;
    min-height: var(--altura-header);
    background-color: var(--cor-fundo-header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 7%;
    position: relative;
    z-index: 10;
    gap: 0px;
}

.logo_cabecalho {
    text-decoration: none;
}
.icone_cabecalho {
    display: flex;
    align-items: center;
}

.icone_cabecalho img {
    width: 120px;
    height: auto;
    display: block;
}

.nome {
    margin-left: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.nome_regina {
    font-family: var(--fonte-logo);
    font-size: 34px;
    color: var(--cor-verde-principal);
    line-height: 1;
    white-space: nowrap;
}

.terapeuta_trg {
    font-family: var(--fonte-texto);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--cor-verde-medio);
    text-transform: uppercase;
    margin-top: 4px;
}

.menu nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.menu nav a {
    position: relative;
    font-family: var(--fonte-texto);
    font-size: 13px;
    font-weight: 600;
    color: var(--cor-texto-menu);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color 0.3s ease;
}

.menu nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 2px;
    background-color: var(--cor-verde-principal);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu nav a:hover,
.menu nav a.ativo {
    color: var(--cor-verde-principal);
}

.menu nav a:hover::after,
.menu nav a.ativo::after {
    width: 28px;
}

.botao_whats img {
    width: 30px;
    height: auto;
}

.botao_whats a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    border-radius: 999px;
    background-color: var(--cor-botao-verde);
    color: var(--cor-botao-texto);
    font-family: var(--fonte-texto);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--sombra-suave);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.botao_whats a:hover {
    background-color: var(--cor-botao-verde-hover);
    transform: translateY(-2px);
}

.logo_cabecalho {
    display: flex;
    align-items: center;
}

footer {
    position: relative;
    width: 100%;
    background-color: var(--cor-fundo-footer);
    color: var(--cor-texto-claro);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.footer_container {
    max-width: var(--largura-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 18px 24px 20px;
    position: relative;
    z-index: 2;
}

.footer_logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer_logo img {
    width: 110px;
    height: auto;
    opacity: 0.9;
}

.footer_nome {
    font-family: var(--fonte-logo);
    font-size: 30px;
    color: var(--cor-texto-claro);
    line-height: 1;
}

.footer_frase {
    display: none;
}

.footer_frase p {
    font-family: var(--fonte-titulo);
    font-size: 18px;
    line-height: 1.8;
    color: var(--cor-texto-claro);
}

.footer_contato {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer_insta {
    margin-bottom: 0;
}

.footer_insta a {
    color: var(--cor-texto-claro);
    text-decoration: none;
    font-family: var(--fonte-texto);
    font-size: 15px;
    font-weight: 500;
}

.footer_insta img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer_insta img:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.footer_direitos {
    text-align: left;
    font-family: var(--fonte-texto);
    font-size: 12px;
    line-height: 1.6;
    color: rgba(248, 241, 232, 0.8);
}

.folha_footer {
    position: absolute;
    right: 2%;
    top: 10%;
    width: 130px;
    opacity: 0.35;
    pointer-events: none;
}

@media (min-width: 901px) {
    .footer_container {
        max-width: 100%;
        display: grid;
        grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.8fr) minmax(260px, 1fr);
        gap: 0;
        min-height: 106px;
        padding: 14px clamp(34px, 6vw, 88px) 16px;
    }

    .footer_logo {
        justify-content: center;
        padding-right: clamp(22px, 4vw, 48px);
        border-right: 1px solid rgba(248, 241, 232, 0.48);
    }

    .footer_logo img {
        width: 78px;
    }

    .footer_nome {
        font-size: 20px;
        text-align: center;
    }

    .footer_nome::after {
        content: "TERAPEUTA TRG";
        display: block;
        margin-top: 8px;
        font-family: var(--fonte-texto);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.8px;
    }

    .footer_frase {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 0 clamp(22px, 4vw, 48px);
        border-right: 1px solid rgba(248, 241, 232, 0.48);
    }

    .footer_frase p {
        font-size: 14px;
        line-height: 1.45;
    }

    .footer_contato {
        justify-content: center;
        gap: 22px;
        padding-left: clamp(22px, 4vw, 48px);
    }

    .footer_insta img {
        width: 30px;
    }

    .footer_direitos {
        font-size: 10px;
        line-height: 1.6;
        text-align: center;
    }

    .folha_footer {
        right: 0;
        top: 0;
        width: 115px;
        opacity: 0.28;
    }
}

@media (max-width: 900px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .menu nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    header {
        padding: 10px 14px 12px;
        gap: 10px;
    }

    .icone_cabecalho img {
        width: 86px;
    }

    .nome_regina {
        font-size: 27px;
    }

    .terapeuta_trg {
        font-size: 9px;
        letter-spacing: 1.1px;
    }

    .menu {
        width: 100%;
    }

    .menu nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: clamp(7px, 2.4vw, 12px);
        width: 100%;
    }

    .menu nav a {
        padding: 7px 0;
        font-size: clamp(8.5px, 2.45vw, 10.5px);
        letter-spacing: 0.15px;
        line-height: 1;
        white-space: nowrap;
    }

    .menu nav a::after {
        bottom: -4px;
        height: 1px;
    }

    .menu nav a:hover::after,
    .menu nav a.ativo::after {
        width: 18px;
    }

    .botao_whats {
        display: none;
    }

    .folha_footer {
        display: none;
    }

    .footer_frase {
        display: none;
    }

    .footer_container {
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px 14px;
        padding: 18px 14px;
    }

    .footer_contato {
        display: contents;
    }

    .footer_logo {
        gap: 8px;
    }

    .footer_logo img {
        width: 78px;
    }

    .footer_nome {
        font-size: 25px;
    }

    .footer_insta img {
        width: 34px;
    }

    .footer_direitos {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* HOME */

/*hero*/
.hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    background-color: var(--cor-fundo-site);
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    overflow: hidden;
}

.folha-hero {
    position: absolute;
    left: -2%;
    top: 8%;
    width: clamp(160px, 21vw, 330px);
    z-index: 3;
    pointer-events: none;
}

.folha-hero-2 {
    position: absolute;
    right: -2%;
    top: 8%;
    width: clamp(170px, 23vw, 300px);
    z-index: 5;
    pointer-events: none;
}

.hero-esquerda {
    position: relative;
    z-index: 4;
    width: 100%;
    min-height: 560px;
    padding: 58px 40px 55px clamp(150px, 16vw, 250px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 0;
}

.subtitulo-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.subtitulo-hero span {
    width: clamp(45px, 5vw, 70px);
    height: 1px;
    background-color: var(--cor-verde-medio);
}

.subtitulo-hero p {
    font-family: var(--fonte-texto);
    font-size: clamp(13px, 1.05vw, 16px);
    letter-spacing: 4px;
    color: var(--cor-verde-principal);
    font-weight: 500;
}

.hero-esquerda h1 {
    font-family: var(--fonte-titulo);
    font-size: clamp(52px, 5vw, 76px);
    line-height: 1.02;
    color: var(--cor-verde-principal);
    margin-bottom: 26px;
}

.divisor {
    display: flex;
    align-items: center;
    gap: 14px;
    width: clamp(260px, 24vw, 390px);
    margin-bottom: 28px;
}

.divisor span {
    flex: 1;
    height: 1px;
    background-color: var(--cor-linha-decorativa);
}

.divisor img {
    width: 24px;
    height: auto;
}

.descricao-hero {
    max-width: 650px;
    font-family: var(--fonte-texto);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.75;
    color: var(--cor-texto-principal);
    margin-bottom: 16px;
}

.botoes-hero {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-sobre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--fonte-texto);
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    transition: 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp {
    gap: 12px;
    padding: 17px 34px;
    background-color: var(--cor-botao-verde);
    color: var(--cor-botao-texto);
}

.btn-whatsapp img {
    width: 22px;
    height: 22px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background-color: var(--cor-botao-verde-hover);
}

.btn-sobre {
    padding: 17px 34px;
    color: var(--cor-verde-principal);
    border: 1px solid var(--cor-verde-principal);
    background-color: transparent;
}

.btn-sobre:hover {
    transform: translateY(-3px);
    background-color: var(--cor-verde-principal);
    color: var(--cor-branco);
}

.hero-direita {
    position: relative;
    min-height: 560px;
}

.hero-imagem {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
}

.hero-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-imagem::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--cor-fundo-site) 0%,
        rgba(248, 241, 232, 0.9) 35%,
        rgba(248, 241, 232, 0.45) 65%,
        rgba(248, 241, 232, 0) 100%
    );
    z-index: 2;
}

.ret-direita {
    position: absolute;
    right: clamp(25px, 4vw, 60px);
    bottom: clamp(28px, 4vw, 45px);
    width: min(330px, calc(100% - 40px));
    background-color: var(--cor-fundo-card);
    border-radius: 18px;
    padding: 32px;
    z-index: 6;
    box-shadow: var(--sombra-suave);
}

.ret-direita img {
    width: 38px;
    height: auto;
    margin-bottom: 14px;
}

.frase-ret-desc-cima {
    font-family: var(--fonte-texto);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--cor-verde-principal);
    margin-bottom: 10px;
}

.frase-ret-desc {
    font-family: var(--fonte-texto);
    font-size: 14px;
    line-height: 1.6;
    color: var(--cor-texto-secundario);
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 62% 38%;
    }

    .hero-esquerda {
        min-height: 560px;
        padding-left: 120px;
        padding-right: 30px;
        margin-left: 0;
    }

    .hero-esquerda h1 {
        font-size: clamp(46px, 5.5vw, 60px);
    }

    .descricao-hero {
        max-width: 560px;
        font-size: 16px;
    }

    .folha-hero {
        width: 200px;
    }

    .folha-hero-2 {
        width: 240px;
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-esquerda {
        min-height: auto;
        padding: 70px 30px 50px;
        align-items: center;
        text-align: center;
        margin-left: 0;
    }

    .hero-esquerda h1 {
        font-size: clamp(42px, 8vw, 56px);
    }

    .subtitulo-hero {
        justify-content: center;
    }

    .divisor {
        margin-left: auto;
        margin-right: auto;
        width: min(360px, 80%);
    }

    .descricao-hero {
        max-width: 620px;
        font-size: 16px;
    }

    .botoes-hero {
        justify-content: center;
    }

    .hero-direita {
        min-height: 460px;
    }

    .hero-imagem {
        min-height: 460px;
    }

    .hero-imagem::before {
        display: none;
    }

    .ret-direita {
        left: 50%;
        right: auto;
        bottom: 25px;
        width: min(340px, calc(100% - 40px));
        transform: translateX(-50%);
    }

    .folha-hero {
        left: -30px;
        top: 20px;
        width: 120px;
        opacity: 0.55;
    }

    .folha-hero-2 {
        right: -35px;
        top: 25px;
        width: 140px;
        opacity: 0.55;
    }
}

@media (max-width: 600px) {
    .hero-esquerda {
        padding: 55px 20px 40px;
    }

    .hero-esquerda h1 {
        font-size: 38px;
    }

    .subtitulo-hero {
        gap: 9px;
    }

    .subtitulo-hero span {
        width: 34px;
    }

    .subtitulo-hero p {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .descricao-hero {
        font-size: 15px;
        line-height: 1.65;
    }

    .botoes-hero {
        width: 100%;
        max-width: 320px;
        flex-direction: column;
        gap: 12px;
    }

    .btn-whatsapp,
    .btn-sobre {
        width: 100%;
    }

    .hero-direita {
        min-height: 400px;
    }

    .hero-imagem {
        min-height: 400px;
    }

    .hero-imagem img {
        object-position: center;
    }

    .ret-direita {
        bottom: 18px;
        padding: 22px;
    }

    .folha-hero {
        width: 90px;
    }

    .folha-hero-2 {
        width: 110px;
    }
}

@media (max-width: 380px) {
    .hero-esquerda h1 {
        font-size: 33px;
    }

    .hero-esquerda {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-direita {
        min-height: 360px;
    }

    .hero-imagem {
        min-height: 360px;
    }

    .ret-direita {
        width: calc(100% - 28px);
        padding: 18px;
    }
}
/*hero*/

/*rect-quadros*/
.divisao{
    width: 1px;
    height: 280px;
    background-color: var(--cor-linha-decorativa);
    align-self: center;
}

.rect-quatro{
    text-align: center;
    max-width: var(--largura-quadro);
    margin: 5% auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    outline: 1px var(--cor-linha-decorativa) solid;
    border-radius: 10px;
    background-color: #f1e9e2;
}

.quadro{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 220px;
    min-height: 260px;
    padding: 40px 22px;
}

.icone{
    width: 150px;
}

.titulo-quadro{
    margin-top: 18px;
    font-size: 28px;   
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 600;
    color: var(--cor-verde-principal); 
    gap: 15px;
    line-height: 1.3;
}

.descricao-quadro{
    margin-top: 18px;
    font-size: 18px;
    gap: 20px;
    line-height: 1.6;
}

.quadro-info{
    display: flex;
    flex-direction: column;
    max-width: var(--largura-quadro);
    margin: 3% auto 3%;
    outline: 1px var(--cor-linha-decorativa) solid;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background-color: #f1e9e2;
}

.parte-cima{
    display: flex;
}

.whatsapp-info{
    position: relative;
    width: 150px;
    height: auto;
}

.divisao-info{
    justify-content: center;
    width: var(--largura-quadro);
    background-color: var(--cor-linha-decorativa);
    margin-bottom: 26px;
    height: 1px;
}

.rect-info-cima{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-left: 35px;
    justify-content: center;
}

.rect-info-cima p {
    margin: 0;
}

.rect-info-cima a {
    margin-top: 22px;
    width: 350px;
    height: 70px;
    font-size: 16px;
}

.rect-info-cima a img{
    width: 40px;
    height: auto;
}

.titulo-info{
    font-size: 38px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 700;
    color: var(--cor-verde-principal);
}

.descricao-info{
    font-size: 22px;
    line-height: 1.8;
}

.parte-baixo{
    width: fit-content;
    margin: 0 auto;
    padding: 15px 0 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.parte-baixo-baixo {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 10px;
    width: 100%;
}

.texto-baixo-baixo{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.presencial,
.online {
    display: flex;
    align-items: center;
    gap: 12px;
}

.titulo-atd{
    font-size: 20px;
    color: var(--cor-verde-principal);
    font-weight: 500;
}

.desc-atd{
    font-size: 20px;
}

.imagens-info{
    position: relative;
}

.folha-esquerda-info {
    position: absolute;
    left: -10px;
    bottom: 0;
    width: 220px;
}

.folha-direita-info {
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 350px;
}

.folha-direita-baixo-info {
    position: absolute;
    right: -10px;
    top: 0;
    width: 320px;
}

.quadro-decoracao{
    position: relative;
    display: flex;
    width: var(--largura-quadro);
    margin: 0 auto;
    outline: 1px var(--cor-linha-decorativa) solid;
    border-radius: 15px;
    padding: 20px 0 20px;
    overflow: hidden;   
    align-items: center;
    justify-content: center;
    background-color: #f1e9e2;
}

.frase-quadro-decoracao{
    font-size: 35px;
    font-family: 'Cormorant Garamond', sans-serif;
    font-weight: 600;
    color: var(--cor-verde-principal);
    text-align: center;
}

.folha-decoracao-esquerda {
    position: absolute;
    left: -20px;
    top: -17px;
    width: 180px;
}

.folha-decoracao-direita {
    position: absolute;
    right: -20px;
    top: -13px;
    width: 180px;
}

.folhinha-decoracao{
    width:70px;
}
/*rect-quadros*/

@media (max-width: 900px) {
    body.home .rect-quatro,
    body.home .quadro-info,
    body.home .quadro-decoracao {
        width: calc(100% - 36px);
        max-width: 680px;
    }

    body.home .rect-quatro {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 36px;
        overflow: hidden;
    }

    body.home .divisao {
        display: none;
    }

    body.home .quadro {
        min-width: 0;
        min-height: 210px;
        padding: 28px 18px;
        border-bottom: 1px solid var(--cor-linha-decorativa);
    }

    body.home .quadro:nth-child(1),
    body.home .quadro:nth-child(5) {
        border-right: 1px solid var(--cor-linha-decorativa);
    }

    body.home .icone {
        width: 104px;
    }

    body.home .titulo-quadro {
        font-size: 24px;
        margin-top: 12px;
    }

    body.home .descricao-quadro {
        font-size: 15px;
        line-height: 1.5;
        margin-top: 10px;
    }

    body.home .quadro-info {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    body.home .parte-cima {
        align-items: center;
        padding: 28px 28px 22px;
        gap: 22px;
    }

    body.home .parte-cima > img {
        width: 130px;
        flex-shrink: 0;
    }

    body.home .rect-info-cima {
        margin-left: 0;
    }

    body.home .rect-info-cima a {
        width: auto;
        min-height: 56px;
        height: auto;
        padding: 14px 22px;
    }

    body.home .titulo-info {
        font-size: 32px;
        line-height: 1.1;
    }

    body.home .descricao-info {
        font-size: 17px;
        line-height: 1.6;
    }

    body.home .divisao-info {
        width: 100%;
        margin-bottom: 0;
    }

    body.home .parte-baixo {
        width: 100%;
        padding: 24px 28px 30px;
    }

    body.home .parte-baixo-baixo {
        gap: 22px;
        flex-wrap: wrap;
    }

    body.home .folha-esquerda-info,
    body.home .folha-direita-info,
    body.home .folha-direita-baixo-info {
        opacity: 0.16;
    }

    body.home .quadro-decoracao {
        padding: 28px 95px;
    }

    body.home .frase-quadro-decoracao {
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 600px) {
    body.home .hero-esquerda {
        padding: 42px 18px 32px;
    }

    body.home .hero-esquerda h1 {
        font-size: 34px;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    body.home .divisor {
        width: min(280px, 86%);
        margin-bottom: 20px;
    }

    body.home .descricao-hero {
        max-width: 340px;
        font-size: 14px;
        line-height: 1.58;
        margin-bottom: 10px;
    }

    body.home .btn-whatsapp,
    body.home .btn-sobre {
        min-height: 48px;
        padding: 13px 18px;
        font-size: 14px;
    }

    body.home .hero-direita,
    body.home .hero-imagem {
        min-height: 330px;
    }

    body.home .hero-imagem img {
        object-position: center top;
    }

    body.home .ret-direita {
        bottom: 14px;
        width: calc(100% - 32px);
        padding: 16px 18px;
        border-radius: 12px;
    }

    body.home .ret-direita img {
        width: 28px;
        margin-bottom: 8px;
    }

    body.home .frase-ret-desc-cima {
        font-size: 14px;
        margin-bottom: 6px;
    }

    body.home .frase-ret-desc {
        font-size: 12px;
        line-height: 1.45;
    }

    body.home .folha-hero,
    body.home .folha-hero-2 {
        opacity: 0.28;
    }

    body.home .rect-quatro,
    body.home .quadro-info,
    body.home .quadro-decoracao {
        width: calc(100% - 28px);
    }

    body.home .rect-quatro {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    body.home .quadro {
        min-height: auto;
        padding: 24px 18px;
        border-right: 0;
    }

    body.home .quadro:last-child {
        border-bottom: 0;
    }

    body.home .icone {
        width: 88px;
    }

    body.home .titulo-quadro {
        font-size: 23px;
    }

    body.home .descricao-quadro {
        font-size: 14px;
    }

    body.home .parte-cima {
        flex-direction: column;
        text-align: center;
        padding: 26px 18px 22px;
    }

    body.home .parte-cima > img {
        width: 96px;
    }

    body.home .rect-info-cima {
        align-items: center;
        gap: 10px;
    }

    body.home .titulo-info {
        font-size: 27px;
    }

    body.home .descricao-info {
        font-size: 15px;
        line-height: 1.55;
    }

    body.home .rect-info-cima a {
        width: min(100%, 300px);
        min-height: 50px;
        margin-top: 12px;
        font-size: 13px;
        white-space: normal;
        line-height: 1.3;
    }

    body.home .rect-info-cima a img {
        width: 24px;
    }

    body.home .parte-baixo {
        align-items: center;
        text-align: center;
        padding: 24px 18px 28px;
    }

    body.home .parte-baixo-baixo {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 18px;
    }

    body.home .presencial,
    body.home .online {
        width: min(100%, 285px);
        justify-content: flex-start;
        text-align: left;
    }

    body.home .titulo-atd,
    body.home .desc-atd {
        font-size: 15px;
    }

    body.home .folha-esquerda-info,
    body.home .folha-direita-info,
    body.home .folha-direita-baixo-info {
        display: none;
    }

    body.home .quadro-decoracao {
        min-height: 112px;
        padding: 22px 46px;
    }

    body.home .frase-quadro-decoracao {
        font-size: 22px;
        line-height: 1.22;
    }

    body.home .folha-decoracao-esquerda,
    body.home .folha-decoracao-direita {
        width: 96px;
        opacity: 0.28;
    }

    body.home .folhinha-decoracao {
        display: none;
    }

}

@media (max-width: 380px) {
    body.home .hero-esquerda h1 {
        font-size: 31px;
    }

    body.home .subtitulo-hero p {
        letter-spacing: 1.5px;
    }

    body.home .hero-direita,
    body.home .hero-imagem {
        min-height: 300px;
    }

    body.home .quadro-decoracao {
        padding-left: 32px;
        padding-right: 32px;
    }
}


/* SOBRE */
    /*HERO*/
/* SOBRE - BASE RESPONSIVA */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

.hero-sobre-container {
    position: relative;
    overflow: hidden;
    padding: clamp(35px, 5vw, 70px) 0 clamp(55px, 7vw, 120px);
}

.hero-sobre {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 60px);
    width: min(var(--largura-quadro), calc(100% - clamp(32px, 6vw, 96px)));
    margin: 0 auto;
    padding: clamp(20px, 4vw, 50px) 0 10px;
}

.hero-sobre > * {
    min-width: 0;
}

.hero-sobre img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.folha-hero-sobre {
    position: absolute;
    left: 0;
    bottom: 40px;
    height: clamp(260px, 32vw, 500px);
    max-width: none;
    z-index: 1;
    pointer-events: none;
}

.folha-hero-sobre-direita {
    position: absolute;
    right: 0;
    bottom: 0;
    height: clamp(300px, 38vw, 620px);
    max-width: none;
    z-index: 1;
    pointer-events: none;
}

.conteudo-hero-sobre h1 {
    font-size: clamp(34px, 4vw, 50px);
    font-family: 'Cormorant Garamond', sans-serif;
    color: var(--cor-verde-principal);
}

.descricao-hero-sobre {
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 20px;
}

.divisor-sobre-cima,
.divisor-sobre-baixo,
.divisao-descricao {
    display: flex;
    align-items: center;
    gap: 14px;
}

.divisor-sobre-cima {
    width: clamp(250px, 24vw, 390px);
}

.divisor-sobre-baixo {
    width: clamp(260px, 32vw, 700px);
}

.divisao-descricao {
    width: clamp(250px, 30vw, 500px);
}

.divisor-sobre-cima span,
.divisor-sobre-baixo span,
.divisao-descricao span {
    height: 1px;
    flex: 1;
    background-color: var(--cor-verde-principal);
}

.divisor-sobre-cima img,
.divisor-sobre-baixo img,
.divisao-descricao img {
    width: 33px;
    height: auto;
    flex-shrink: 0;
}

.divisor-sobre-cima p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--cor-fundo-footer);
    white-space: nowrap;
}

/* QUADRO DE INFO */

.quadro-info-sobre {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
    align-items: center;
    width: min(1400px, calc(100% - clamp(32px, 6vw, 96px)));
    margin: 0 auto;
    padding: clamp(18px, 2vw, 28px);
    outline: 1px solid var(--cor-borda-suave);
    border-radius: 18px;
    background: #f3e9de;
}

.info-item-sobre {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 24px);
    min-width: 0;
    min-height: clamp(120px, 12vw, 170px);
    padding: clamp(12px, 1.5vw, 20px);
}

.info-item-sobre img {
    width: clamp(56px, 6vw, 95px);
    height: auto;
    flex-shrink: 0;
}

.titulo-sobre-desc {
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--cor-verde-principal);
    font-weight: 500;
    margin-bottom: 10px;
}

.desc-sobre-desc {
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 1.5;
}

.divisao-info-sobre {
    width: 1px;
    height: 70%;
    min-height: 90px;
    background-color: var(--cor-linha-decorativa);
    align-self: center;
}

/* DESCRICAO */

.descricao-sobre {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(320px, 560px);
    justify-content: center;
    align-items: center;
    gap: clamp(35px, 6vw, 90px);
    width: min(var(--largura-quadro), calc(100% - clamp(32px, 6vw, 96px)));
    margin: clamp(55px, 6vw, 75px) auto;
}

.desc-sobre-esquerda {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 600px;
}

.desc-sobre-esquerda h2 {
    font-family: 'Cormorant Garamond', sans-serif;
    color: var(--cor-verde-principal);
    font-size: clamp(32px, 3.8vw, 45px);
}

.desc-sobre-esquerda p {
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.65;
}

.descricao-abordagem-cima {
    margin-bottom: 15px;
}

.container-descricao-direita {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
}

.desc-sobre-direita {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    background-color: #f3e9de;
    border-radius: 18px;
    overflow: hidden;
    padding: clamp(22px, 3vw, 32px);
}

.desc-sobre-direita h3 {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', sans-serif;
    color: var(--cor-verde-principal);
    font-size: clamp(28px, 3vw, 35px);
    margin: 0 0 23px;
    font-weight: 500;
}

.item-lista-desc {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
    min-width: 0;
}

.item-lista-desc:last-child {
    margin-bottom: 0;
}

.item-lista-desc img {
    width: clamp(34px, 4vw, 50px);
    height: auto;
    flex-shrink: 0;
}

.item-lista-desc p {
    min-width: 0;
}

.imagem-desc-direita {
    position: absolute;
    width: clamp(220px, 28vw, 330px);
    right: clamp(-110px, -6vw, -45px);
    top: clamp(-35px, -2vw, 10px);
    z-index: 1;
    opacity: 0.45;
    pointer-events: none;
}

/* CONTATO */

.sobre-contato {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1000px, calc(100% - clamp(32px, 6vw, 96px)));
    margin: 0 auto;
    padding: clamp(16px, 2vw, 24px) clamp(22px, 5vw, 75px);
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--cor-borda-suave);
    min-height: 80px;
    gap: 30px;
}

.sobre-contato-info {
    display: flex;
    align-items: center;
    gap: 28px;
    min-width: 0;
}

.sobre-contato-texto {
    text-align: left;
    line-height: 1.45;
    margin-top: 0;
}

.sobre-contato-texto h2 {
    font-family: var(--fonte-titulo);
    color: var(--cor-verde-principal);
    font-size: clamp(22px, 2vw, 26px);
}

.sobre-contato-texto p {
    font-family: var(--fonte-texto);
    font-size: 14px;
}

.sobre-contato-icone img {
    height: 60px;
    display: block;
}

.sobre-contato-botao a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    background-color: var(--cor-botao-verde);
    color: var(--cor-botao-texto);
    font-family: var(--fonte-texto);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sobre-contato-botao a:hover {
    background-color: var(--cor-botao-verde-hover);
    transform: translateY(-2px);
}

.sobre-contato-botao img {
    width: 24px;
    height: auto;
}

/* NOTEBOOKS MENORES */

@media (max-width: 1280px) {
    .hero-sobre {
        grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
    }

    .quadro-info-sobre {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 8px;
    }

    .divisao-info-sobre {
        display: none;
    }

    .info-item-sobre {
        min-height: 120px;
        border-bottom: 1px solid var(--cor-linha-decorativa);
    }

    .info-item-sobre:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

/* TABLETS */

@media (max-width: 900px) {
    .hero-sobre-container {
        padding: 40px 0 60px;
    }

    .hero-sobre {
        grid-template-columns: 1fr;
        text-align: center;
        width: calc(100% - 40px);
        gap: 30px;
    }

    .divisor-sobre-cima,
    .divisor-sobre-baixo {
        margin: 0 auto;
    }

    .folha-hero-sobre,
    .folha-hero-sobre-direita {
        display: none;
    }

    .quadro-info-sobre {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
        padding: 22px;
    }

    .info-item-sobre {
        border-bottom: 1px solid var(--cor-linha-decorativa);
        padding: 18px 0;
    }

    .info-item-sobre:last-of-type {
        border-bottom: 0;
    }

    .descricao-sobre {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 20px;
        gap: 35px;
    }

    .desc-sobre-esquerda {
        max-width: 100%;
    }

    .container-descricao-direita {
        width: 100%;
    }

    .sobre-contato {
        width: calc(100% - 40px);
        flex-direction: column;
        padding: 24px;
    }

    .sobre-contato-info {
        flex-direction: column;
        gap: 14px;
    }

    .sobre-contato-texto {
        text-align: center;
    }
}

/* CELULARES */

@media (max-width: 600px) {
    .hero-sobre {
        width: calc(100% - 28px);
    }

    .divisor-sobre-cima,
    .divisor-sobre-baixo,
    .divisao-descricao {
        width: 100%;
        max-width: 300px;
    }

    .quadro-info-sobre {
        width: calc(100% - 28px);
        padding: 18px;
        border-radius: 14px;
    }

    .info-item-sobre {
        align-items: flex-start;
        gap: 14px;
    }

    .descricao-sobre {
        padding: 0 14px;
        margin: 45px auto;
    }

    .desc-sobre-direita {
        padding: 22px 16px;
    }

    .item-lista-desc {
        align-items: flex-start;
        gap: 12px;
    }

    .imagem-desc-direita {
        width: 220px;
        right: -115px;
        top: 20px;
        opacity: 0.28;
    }

    .sobre-contato {
        width: calc(100% - 28px);
        padding: 22px 18px;
    }

    .sobre-contato-botao,
    .sobre-contato-botao a {
        width: 100%;
    }

    .sobre-contato-botao a {
        white-space: normal;
    }
}

/* SOBRE*/


/* TRATAMENTOS */
.intro-tratamentos {
    position: relative;
    padding: 60px 60px 180px;
    text-align: center;
    overflow: hidden;
}

.conteudo-intro-tratamentos {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.decoracao-esquerda {
    position: absolute;
    left: 0;
    top: 20px;
    width: 300px;
    z-index: 1;
}

.decoracao-direita {
    position: absolute;
    right: 0;
    top: 20px;
    width: 300px;
    z-index: 1;
}

.decoracao-esquerda img,
.decoracao-direita img {
    width: 100%;
    display: block;
}

.tratamentos-titulo h1 {
    font-family: var(--fonte-titulo);
    font-weight: 800;
    color: var(--cor-verde-principal);
    font-size: 50px;
}

.tratamentos-linha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 18px auto 24px;
}

.tratamentos-linha span {
    width: 230px;
    height: 2px;
    background-color: #d8d2bd;
}

.tratamentos-linha img {
    width: 34px;
    height: auto;
}

.tratamentos-texto {
    font-size: 17px;
    color: var(--cor-texto-principal);
    font-family: var(--fonte-texto);
    font-weight: 500;
    line-height: 1.8;
}


.tratamento-titulo-areas {
    color: var(--cor-texto-secundario);
    font-weight: 600;
    margin-top: 10px;
    font-size: 18px;
}

.cards-tratamentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    padding: 0px 0px;
    margin-top: -100px;
}

@media (min-width: 1740px) {
    .cards-tratamentos {
        max-width: 1650px;
        grid-template-columns: repeat(4, minmax(400px, 1fr));
    }
}

.tratamento-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    border-color: var(--cor-borda-suave);
    border-width: 1.5px;
    border-style: solid;
    border-radius: 10px;
    padding: 22px 20px;
    width: 100%;
    min-height: 160px;
    background-color: var(--cor-fundo-card);
    box-shadow: 0 6px 18px rgba(64, 90, 60, 0.06);
}

.tratamento-card img {
    width: 96px;
    height: auto;
    margin-left: 0;
    display: block;
}

.tratamento-icone {
    flex: 0 0 96px;
}

.tratamento-info h2 {
    font-family: var(--fonte-titulo);
    color: var(--cor-verde-principal);
    font-weight: 800;
    font-size: 25px;
    line-height: 1.05;
}

.tratamento-info p {
    font-family: var(--fonte-texto);
    font-size: 13px;
    color: var(--cor-texto-principal);
    line-height: 1.65;
}

.tratamento-info span {
    width: 100%;
    max-width: 160px;
    height: 1.5px;
    background-color: #d8d2bd;
    display: block;
}

.linha-cards {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-left: 0;
    margin-top: 8px;
    margin-bottom: 12px;
}

.tratamentos-final {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.tratamentos-mensagem {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 12px 22px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 50px;
    background-color: var(--verde-card-suave);
    min-height: 95px;
    height: auto;
    gap: 28px;
}

.tratamentos-mensagem-texto {
    text-align: left;
    line-height: 1.45;
    margin-top: 0;
    flex: 1;
}

.tratamentos-mensagem-texto h2 {
    margin-bottom: 8px;
    font-family: var(--fonte-titulo);
    font-size: 28px;
    font-weight: 700;
}

.tratamentos-mensagem-texto p {
    font-family: var(--fonte-texto);
    font-size: 14px;
    max-width: 650px;
}

.tratamentos-mensagem-icone img {
    height: 82px;
}

.tratamentos-mensagem-decoracao img {
    height: 78px;
    display: block;
}

.tratamentos-contato {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 16px 130px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 0px;
    background-color: var(--verde-card-suave);
    min-height: 80px;
    height: auto;
    gap: 30px;
}

.tratamentos-contato-info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.tratamentos-contato-texto {
    text-align: left;
    line-height: 1.45;
    margin-top: 0;
}

.tratamentos-contato-texto h2 {
    font-family: var(--fonte-titulo);
    color: var(--cor-verde-principal);
    font-size: 26px;
}

.tratamentos-contato-texto p {
    font-family: var(--fonte-texto);
    font-size: 14px;
}

.tratamentos-contato-icone img {
    height: 60px;
    display: block;
}

.tratamentos-contato-botao a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    background-color: var(--cor-botao-verde);
    color: var(--cor-botao-texto);
    font-family: var(--fonte-texto);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tratamentos-contato-botao a:hover {
    background-color: var(--cor-botao-verde-hover);
    transform: translateY(-2px);
}

.tratamentos-contato-botao img {
    width: 24px;
    height: auto;
}

@media (max-width: 900px) {
    .intro-tratamentos {
        padding: 50px 35px 150px;
    }

    .cards-tratamentos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -90px;
    }

    .tratamentos-mensagem,
    .tratamentos-contato {
        gap: 24px;
        padding: 24px;
    }

    .tratamentos-contato {
        justify-content: space-between;
    }

    .tratamentos-mensagem-texto,
    .tratamentos-contato-texto {
        margin-top: 0;
        padding: 10px;
    }
}

@media (max-width: 700px) {
    .decoracao-esquerda,
    .decoracao-direita {
        width: 160px;
        opacity: 0.35;
    }

    .tratamentos-titulo h1 {
        font-size: 40px;
    }

    .tratamentos-linha span {
        width: 110px;
    }
}

@media (max-width: 500px) {
    .intro-tratamentos {
        padding: 40px 20px 100px;
    }

    .tratamentos-titulo h1 {
        font-size: 36px;
    }

    .tratamentos-linha {
        gap: 14px;
    }

    .tratamentos-linha span {
        width: 80px;
    }

    .tratamentos-texto {
        font-size: 15px;
    }

    .cards-tratamentos {
        grid-template-columns: 1fr;
        width: calc(100% - 28px);
        margin-top: -55px;
    }

    .tratamento-card {
        align-items: center;
        gap: 14px;
        min-height: 140px;
        padding: 18px;
    }

    .tratamento-card img {
        width: 80px;
        margin-left: 0;
    }

    .tratamento-icone {
        flex: 0 0 80px;
    }

    .tratamento-info span {
        width: 130px;
    }

    .tratamentos-final {
        width: calc(100% - 28px);
    }

    .tratamentos-mensagem,
    .tratamentos-contato {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 18px;
        gap: 14px;
    }

    .tratamentos-mensagem-texto,
    .tratamentos-contato-texto {
        text-align: center;
        padding: 0;
    }

    .tratamentos-contato-info {
        flex-direction: column;
        gap: 10px;
    }

    .tratamentos-contato-botao a {
        white-space: normal;
        padding: 12px 18px;
    }

    .tratamentos-mensagem-texto h2 {
        font-size: 25px;
    }

    .tratamentos-mensagem-decoracao {
        display: none;
    }
}
/* DEPOIMENTOS */

.pagina-depoimentos {
    position: relative;
    overflow: hidden;
}

.depoimentos-intro {
    max-width: var(--largura-container);
    min-height: 430px;
    margin: 0 auto;
    padding: 70px 22px 48px;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
    align-items: center;
    gap: 0px;
}

.depoimentos-conteudo-principal {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.depoimentos-conteudo-principal h1 {
    font-family: var(--fonte-titulo);
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    color: var(--cor-verde-principal);
    margin-bottom: 22px;
}

.depoimentos-decoracao-principal-linha {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
    margin: 0px auto 24px;
}

.depoimentos-decoracao-principal-linha span {
    width: 100px;
    height: 2px;
    background-color: #d8d2bd;
}

.depoimentos-decoracao-principal-linha img {
    width: 34px;
    height: auto;
}

.depoimentos-conteudo-principal {
    margin-left: 120px;
}

.depoimentos-conteudo-principal p {
    font-family: var(--fonte-texto);
    color: var(--cor-texto-principal);
}

.depoimentos-conteudo-principal p:first-of-type {
    margin-top: 30px;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 700;
    color: #303644;
}

.depoimentos-conteudo-principal p:last-of-type {
    max-width: 430px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
    color: #485247;
}

.depoimentos-imagem {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    min-height: 305px;
    justify-self: end;
    border-radius: 150px;
    background: url("img/decoracao-depoimentos-sofa.png") center / cover no-repeat;
}

.depoimentos-imagem img {
    display: none;
}

.depoimentos-decoracao-esquerda {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 70px;
    width: 230px;
}

.depoimentos-decoracao-direita {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 88px;
    width: 215px;
}

.depoimentos-decoracao-esquerda img,
.depoimentos-decoracao-direita img {
    width: 100%;
}

.depoimentos-cards {
    margin-top: 20px;
}

.depoimentos-cards-cabecalho {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
}


.depoimentos-cards-cabecalho h2 {
    color: var(--cor-verde-principal);
    font-family: var(--fonte-titulo);
    font-weight: 800;
    font-size: 38px;
}

.depoimentos-cards-cabecalho img {
    width: 34px;
    height: auto;
}

.depoimentos-cards-cabecalho-linha {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
    margin: 10px auto 24px;
}

.depoimentos-cards-cabecalho span {
    width: 180px;
    height: 2px;
    background-color: #d8d2bd;
}

.depoimentos-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    padding: 0px 0px;
    margin-top: -10px;
}

.card-depoimento {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: left;
    gap: 0px;
    border-color: var(--cor-borda-suave);
    border-width: 1.5px;
    border-style: solid;
    border-radius: 10px;
    padding: 22px 20px;
    width: 100%;
    min-height: 160px;
    background-color: var(--cor-fundo-card);
    box-shadow: 0 6px 18px rgba(64, 90, 60, 0.06);
}

.card-depoimento-icone img {
    width: 50px;
    left: 10px;
    top: 10px;
}

.card-depoimento-texto {
    padding: 10px;
}

.card-depoimento-texto p {
    font-weight: 550;
    color: var(--cor-texto-principal);
    margin-bottom: 60px;
}

.card-depoimento-final {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    gap: 30px;
    position: absolute;
    bottom: 10px;
}

.card-depoimento-final img {
    width: 80px;
}

.depoimentos-final {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.depoimentos-contato {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding: 12px 22px;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 50px;
    background-color: var(--verde-card-suave);
    min-height: 95px;
    height: auto;
    gap: 20px;
}

.depoimentos-contato-icone img {
    width: 150px;
    height: auto;
}

.depoimentos-contato-conteudo {
    text-align: left;
    line-height: 1.45;
    margin-top: 0;
    margin-left: 0px;
}

.depoimentos-contato-conteudo h2 {
    font-family: var(--fonte-titulo);
    color: var(--cor-verde-principal);
    font-size: 26px;
}

.depoimentos-contato-conteudo p {
    font-family: var(--fonte-texto);
    font-size: 14px;
}

.depoimentos-contato-botao a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    background-color: var(--cor-botao-verde);
    color: var(--cor-botao-texto);
    font-family: var(--fonte-texto);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    position: absolute;
    right: 5%;
    bottom: 60px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.depoimentos-contato-botao a:hover {
    background-color: var(--cor-botao-verde-hover);
    transform: translateY(-2px);
}

.depoimentos-contato-botao img {
    width: 24px;
    height: auto;
}

.depoimentos-mensagem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    margin-top: 34px;
    padding: 22px 210px 18px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(214, 201, 184, 0.72);
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.72);
    box-shadow: inset 0 0 22px rgba(214, 201, 184, 0.18);
}

.depoimentos-mensagem-decoracao-esquerda img {
    position: absolute;
    left: 24px;
    top: 0px;
    width: 205px;
    height: auto;
    opacity: 0.72;
    pointer-events: none;
}

.depoimentos-mensagem-decoracao-direita img {
    position: absolute;
    right: -28px;
    top: 10px;
    width: 355px;
    height: auto;
    opacity: 0.72;
    pointer-events: none;
}

.depoimentos-mensagem-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
}

.depoimentos-mensagem-conteudo p {
    font-family: var(--fonte-titulo);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
    font-style: italic;
    color: var(--cor-verde-principal);
}

.depoimentos-mensagem-conteudo img {
    display: block;
    width: 25px;
    height: auto;
    margin: 8px auto 0;
    opacity: 0.9;
}


@media (max-width: 980px) {
    .depoimentos-intro {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 34px;
        padding: 56px 28px 40px;
    }

    .depoimentos-conteudo-principal {
        max-width: 620px;
        margin: 0 auto;
    }

    .depoimentos-imagem {
        width: min(100%, 540px);
        min-height: 285px;
        justify-self: center;
        background-position: center;
    }

    .depoimentos-decoracao-esquerda,
    .depoimentos-decoracao-direita {
        opacity: 0.42;
    }

    .depoimentos-cards-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .depoimentos-contato {
        flex-wrap: wrap;
        justify-content: center;
        padding: 24px 26px;
        gap: 18px 22px;
    }

    .depoimentos-contato-botao {
        flex-basis: 100%;
        display: flex;
        justify-content: center;
    }

    .depoimentos-contato-botao a {
        position: static;
    }
}

@media (max-width: 680px) {
    .depoimentos-intro {
        padding: 38px 20px 32px;
        gap: 24px;
        text-align: center;
    }

    .depoimentos-conteudo-principal {
        max-width: 420px;
    }

    .depoimentos-conteudo-principal h1 {
        font-size: 44px;
    }

    .depoimentos-conteudo-principal p:first-of-type {
        font-size: 18px;
        line-height: 1.48;
    }

    .depoimentos-conteudo-principal p:last-of-type {
        font-size: 14px;
        line-height: 1.65;
        margin-top: 14px;
    }

    .depoimentos-decoracao-principal-linha {
        justify-content: center;
        margin-bottom: 22px;
    }

    .depoimentos-decoracao-principal-linha span {
        width: 74px;
    }

    .depoimentos-imagem {
        width: 100%;
        min-height: 220px;
        max-width: 390px;
        border-radius: 82px;
        background-size: cover;
    }

    .depoimentos-imagem::after,
    .depoimentos-decoracao-esquerda,
    .depoimentos-decoracao-direita {
        display: none;
    }

    .depoimentos-cards {
        padding: 18px 14px 0;
    }

    .depoimentos-cards-cabecalho h2 {
        font-size: 27px;
    }

    .depoimentos-cards-cabecalho span {
        width: 84px;
    }

    .depoimentos-cards-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-depoimento {
        min-height: auto;
        padding: 28px 22px 22px;
    }

    .card-depoimento-texto {
        max-height: none;
    }

    .card-depoimento-texto::after {
        display: none;
    }

    .card-depoimento-texto p {
        font-size: 14px;
    }

    .depoimentos-final {
        padding: 0 14px 24px;
    }

    .depoimentos-contato {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        margin-top: 32px;
        padding: 24px 20px 26px;
        border-radius: 8px;
        min-height: auto;
        background: var(--verde-card-suave);
    }

    .depoimentos-contato-icone img {
        width: 78px;
        display: block;
    }

    .depoimentos-contato-conteudo {
        max-width: 330px;
        text-align: center;
    }

    .depoimentos-contato-conteudo h2 {
        font-size: 24px;
        line-height: 1.12;
        margin-bottom: 8px;
    }

    .depoimentos-contato-conteudo p {
        max-width: 300px;
        margin: 0 auto;
        font-size: 13px;
        line-height: 1.6;
    }

    .depoimentos-contato-botao {
        width: 100%;
        margin-top: 6px;
    }

    .depoimentos-contato-botao a {
        position: static;
        white-space: normal;
        width: min(100%, 300px);
        min-height: 48px;
        padding: 12px 18px;
        line-height: 1.35;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 8px 18px rgba(47, 70, 47, 0.14);
    }

    .depoimentos-contato-botao img {
        width: 22px;
    }

    .depoimentos-mensagem {
        min-height: 126px;
        padding: 24px 28px 20px;
    }

    .depoimentos-mensagem-conteudo p {
        font-size: 21px;
    }

    .depoimentos-mensagem-decoracao-esquerda img,
    .depoimentos-mensagem-decoracao-direita img {
        top: 6px;
        width: 132px;
        opacity: 0.24;
    }

    .depoimentos-mensagem-decoracao-esquerda img {
        left: -34px;
    }

    .depoimentos-mensagem-decoracao-direita img {
        right: -34px;
    }
}

/* CONTATO */
.hero-contato{
    display: flex;
    flex-direction: row;
    flex: 1;
    max-width: fit-content; 
    margin: 0 auto;
    gap: 100px;
}

.decoracao-contatos-esquerda,
.decoracao-contatos-direita {
    position: absolute;
    width: clamp(150px, 15vw, 240px);
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.decoracao-contatos-esquerda {
    left: 0;
    top: 130px;
}

.decoracao-contatos-direita {
    right: 0;
    top: 125px;
}

.hero-contato > :not(.decoracao-contatos-esquerda):not(.decoracao-contatos-direita) {
    position: relative;
    z-index: 1;
}

.icone-contato{
    width: 90px;
}

.esquerda-contato{
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.container-desc-contato{
    gap: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.divisor-contato{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 300px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.divisor-contato span {
    flex: 1;
    height: 1px;
    background-color: var(--cor-linha-decorativa);
}

.divisor-contato img {
    width: 28px;
    height: auto;
}

.lista-contato{
    display: flex;
    flex-direction: row;
}

.item-lista-contato{
    display: flex;
    flex-direction: column;
}

.titulo-contato{
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--cor-verde-principal);
    text-align: center;
}

.container-lista-contato {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: clamp(14px, 2vw, 20px);
}


.lista-contato {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--cor-borda-suave);
}

.lista-contato:last-child {
    border-bottom: none;
}

.item-lista-contato {
    display: flex;
    flex-direction: column;
}

.titulo-item-contato{
    font-weight: 600;
    color: var(--cor-verde-principal);
}

.contato{
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
}

.frase-ctt{
    margin-top: 10px;
    line-height: 1.6;
}

.container-desc-contato{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.descricao-contato{
    font-size: 18px;
}

.lista-contato:nth-child(2) .item-lista-contato {
    max-width: 24ch;
}



.secao-formulario {
    width: 100%;
    padding: 60px 20px;
}

.card-formulario {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 45px 40px 35px;
    border: 1px solid var(--cor-borda-suave);
    border-radius: 18px;
    background-color: #fffdf9;
}

.titulo-formulario {
    margin: 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--cor-verde-principal);
}

.divisor-formulario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 230px;
    margin: 15px auto 35px;
}

.divisor-formulario span {
    flex: 1;
    height: 1px;
    background-color: var(--cor-linha-decorativa);
}

.divisor-formulario img {
    width: 28px;
    height: auto;
}

.formulario-whatsapp {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.campo-formulario {
    display: flex;
    flex-direction: column;
}

.label-formulario {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

.input-formulario,
.textarea-formulario {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--cor-borda-suave);
    border-radius: 10px;
    outline: none;
    background-color: transparent;
    color: #333;
    font-family: var(--fonte-texto);
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-formulario {
    min-height: 58px;
}

.textarea-formulario {
    min-height: 180px;
    line-height: 1.5;
    resize: vertical;
}

.input-formulario:focus,
.textarea-formulario:focus {
    border-color: var(--cor-verde-principal);
    box-shadow: 0 0 0 3px rgba(65, 100, 66, 0.12);
}

.botao-formulario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    min-height: 58px;
    margin-top: 5px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    background-color: var(--cor-verde-principal);
    color: #fff;
    font-family: var(--fonte-texto);
    font-size: 17px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.botao-formulario:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.botao-formulario:active {
    transform: translateY(0);
}

.icone-botao-formulario {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.aviso-formulario {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 18px 22px;
    border-radius: 12px;
    background-color: #f3f0e8;
}

.icone-aviso-formulario {
    width: 34px;
    height: auto;
}

.texto-aviso-formulario {
    font-family: var(--fonte-texto);
    color: #333;
}

.texto-aviso-formulario strong {
    font-size: 14px;
}

.texto-aviso-formulario p {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .secao-formulario {
        padding: 35px 14px;
    }

    .card-formulario {
        padding: 32px 20px 25px;
    }

    .titulo-formulario {
        font-size: 34px;
    }

    .textarea-formulario {
        min-height: 150px;
    }
}


/*atendimentos*/
.agendar-esquerda h3{
    color: var(--cor-verde-principal);
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    margin-top: 30px;
}

.agendar{
    display: grid;
    grid-template-columns: minmax(0, 65%) minmax(0, 35%);
    max-width: var(--largura-quadro);
    margin: 0 auto;
    outline: 1px var(--cor-borda-suave) solid;
    border-radius: 18px;
    min-height: 330px;
    margin-bottom: 100px;
    margin-top: 50px;
}

.agendar-direita{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.agendar-direita img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agendar-direita::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--cor-fundo-site) 0%,
        rgba(248, 241, 232, 0.9) 35%,
        rgba(248, 241, 232, 0.45) 65%,
        rgba(248, 241, 232, 0) 100%
    );
    z-index: 2;
}

.agendar-esquerda{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 90px;
}

.container-conteudo-atendimentos{
    display: flex;
    flex-direction: row;
}

.conteudo-atendimento{
    display: flex;
    flex-direction: row;
}

.icone-atendimento{
    width: 120px;
}

.desc-atendimentos {
    max-width: 28ch;
    line-height: 1.5;
}

.titulo-atendimentos{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 650;
    color: var(--cor-verde-principal);
    font-size: 30px;
}

.subtitulo-atendimentos{
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.divisor-atendimento-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    margin: 10px 20px;
}

.divisor-atendimento-conteudo span {
    width: 1px;
    flex: 1;
    background-color: var(--cor-borda-suave);
}

.divisor-atendimento-conteudo img {
    width: 20px;
    height: auto;
}


/*atendimentos*/
.agendar-contato {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--largura-quadro);
    height: 140px;
    min-height: 0;
    margin: 50px auto;
    padding: 20px 55px;
    gap: 40px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid var(--cor-borda-suave);
    border-radius: 18px;
    background-color: var(--cor-borda-suave);
}

.agendar-contato-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding-left: 175px;
}

.agendar-contato-icone {
    position: absolute;
    left: 15px;
    bottom: -20px;
    width: 175px;
    height: 150px;
    pointer-events: none;
}

.agendar-contato-icone img {
    display: block;
    width: 190px;
    max-width: none;
    height: auto;
    margin-left: -20px;
    margin-top: -10px;
}

.agendar-contato-texto {
    min-width: 0;
    text-align: left;
    line-height: 1.45;
}

.agendar-contato-texto h2 {
    margin: 0 0 8px;
    font-family: var(--fonte-titulo);
    color: var(--cor-verde-principal);
    font-size: 26px;
    font-weight: 600;
}

.agendar-contato-texto p {
    margin: 0;
    font-family: var(--fonte-texto);
    font-size: 17px;
}

.agendar-contato-botao {
    flex-shrink: 0;
}

.agendar-contato-botao a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 300px;
    padding: 17px 28px;
    border-radius: 999px;
    background-color: var(--cor-botao-verde);
    color: var(--cor-botao-texto);
    font-family: var(--fonte-texto);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.agendar-contato-botao a:hover {
    background-color: var(--cor-botao-verde-hover);
    transform: translateY(-2px);
}

.agendar-contato-botao img {
    width: 28px;
    height: auto;
}

/*responsividade*/
/* CORREÇÕES BASE NECESSÁRIAS */

.hero-contato,
.hero-contato *,
.agendar,
.agendar *,
.agendar-contato,
.agendar-contato * {
    box-sizing: border-box;
}

.hero-contato {
    width: min(1200px, calc(100% - 48px));
    max-width: none;
    margin-inline: auto;
    justify-content: center;
    gap: clamp(40px, 6vw, 100px);
}

.hero-contato > * {
    min-width: 0;
}

.esquerda-contato {
    flex: 1 1 0;
    max-width: 520px;
}

.secao-formulario {
    flex: 1 1 0;
    width: auto;
    max-width: 620px;
    padding-inline: 0;
}

.card-formulario {
    box-sizing: border-box;
}

.input-formulario,
.textarea-formulario {
    box-sizing: border-box;
}

.agendar,
.agendar-contato {
    width: min(var(--largura-quadro), calc(100% - 48px));
}

/* COMPUTADORES GRANDES */

@media (min-width: 1600px) {
    .hero-contato {
        width: min(1250px, calc(100% - 80px));
    }

    .agendar,
    .agendar-contato {
        width: min(var(--largura-quadro), calc(100% - 80px));
    }
}

/* NOTEBOOKS, TELAS MENORES E ZOOM DE 125% */

@media (max-width: 1280px) {
    .hero-contato {
        width: calc(100% - 48px);
        gap: 45px;
    }

    .icone-contato {
        width: 70px;
        flex-shrink: 0;
    }

    .agendar {
        width: calc(100% - 48px);
        grid-template-columns: minmax(0, 68%) minmax(0, 32%);
    }

    .agendar-esquerda {
        padding: 20px 16px 55px;
    }

    .container-conteudo-atendimentos {
        width: 100%;
        justify-content: center;
    }

    .presencial,
    .online {
        display: flex;
        align-items: center;
        flex: 1 1 0;
        min-width: 0;
    }

    .icone-atendimento {
        width: 90px;
        flex-shrink: 0;
    }

    .titulo-atendimentos {
        font-size: 26px;
    }

    .divisor-atendimento-conteudo {
        margin-inline: 12px;
    }

    .agendar-contato {
        width: calc(100% - 48px);
        padding-right: 30px;
    }

    .agendar-contato-botao a {
        min-width: 230px;
    }
}

/* TABLETS E NOTEBOOKS COM MUITO ZOOM */

@media (max-width: 1000px) {
    .hero-contato {
        flex-direction: column;
        align-items: center;
        width: min(720px, calc(100% - 40px));
        margin-inline: auto;
        gap: 10px;
    }

    .decoracao-contatos-esquerda,
    .decoracao-contatos-direita {
        display: none;
    }

    .esquerda-contato {
        width: 100%;
        max-width: none;
        margin-top: 30px;
    }

    .secao-formulario {
        width: 100%;
        max-width: none;
        padding: 25px 0 50px;
    }

    .card-formulario {
        max-width: 100%;
    }

    .agendar {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
    }

    .agendar-direita {
        min-height: 300px;
        border-radius: 0 0 18px 18px;
    }

    .agendar-direita::before {
        width: 100%;
        height: 35%;
        background: linear-gradient(
            to bottom,
            var(--cor-fundo-site) 0%,
            rgba(248, 241, 232, 0.75) 45%,
            transparent 100%
        );
    }

    .agendar-contato {
        width: calc(100% - 40px);
        height: auto;
        min-height: 140px;
        padding: 24px;
        gap: 24px;
    }

    .agendar-contato-info {
        padding-left: 135px;
    }

    .agendar-contato-icone {
        width: 135px;
    }

    .agendar-contato-icone img {
        width: 150px;
    }

    .agendar-contato-botao a {
        min-width: 200px;
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* CELULARES */

@media (max-width: 700px) {
    .hero-contato {
        width: calc(100% - 28px);
        margin-inline: auto;
    }

    .esquerda-contato {
        padding: 0;
    }

    .titulo-contato,
    .titulo-formulario {
        font-size: 34px;
    }

    .descricao-contato {
        font-size: 16px;
    }

    .divisor-contato {
        width: min(300px, 100%);
    }

    .lista-contato {
        gap: 14px;
        padding: 16px 0;
    }

    .icone-contato {
        width: 56px;
    }

    .contato {
        font-size: 17px;
    }

    .secao-formulario {
        padding: 20px 0 40px;
    }

    .card-formulario {
        padding: 30px 18px 24px;
    }

    .divisor-formulario {
        width: min(230px, 80%);
    }

    .input-formulario,
    .textarea-formulario {
        padding: 15px 16px;
    }

    .textarea-formulario {
        min-height: 150px;
    }

    .agendar {
        width: calc(100% - 28px);
        margin: 35px auto 50px;
    }

    .agendar-esquerda {
        padding: 20px 16px 35px;
    }

    .agendar-esquerda h3 {
        font-size: 34px;
    }

    .container-conteudo-atendimentos {
        flex-direction: column;
        width: 100%;
    }

    .presencial,
    .online {
        width: 100%;
        gap: 15px;
    }

    .icone-atendimento {
        width: 72px;
    }

    .desc-atendimentos {
        max-width: 100%;
    }

    .divisor-atendimento-conteudo {
        flex-direction: row;
        align-self: auto;
        width: 100%;
        margin: 22px 0;
    }

    .divisor-atendimento-conteudo span {
        width: auto;
        height: 1px;
        flex: 1;
    }

    .agendar-direita {
        min-height: 230px;
    }

    .agendar-contato {
        flex-direction: column;
        align-items: stretch;
        width: calc(100% - 28px);
        height: auto;
        min-height: 0;
        padding: 25px 18px;
        gap: 18px;
    }

    .agendar-contato-info {
        padding-left: 0;
    }

    .agendar-contato-icone {
        left: 8px;
        bottom: -30px;
    }

    .agendar-contato-icone img {
        display: none;
    }

    .agendar-contato-botao,
    .agendar-contato-botao a {
        width: 100%;
    }

    .agendar-contato-botao a {
        min-width: 0;
        white-space: normal;
    }
}

/* CELULARES PEQUENOS */

@media (max-width: 480px) {
    .hero-contato {
        width: calc(100% - 24px);
    }

    .lista-contato {
        align-items: flex-start;
    }

    .icone-contato {
        width: 48px;
    }

    .card-formulario {
        padding-inline: 14px;
    }

    .presencial,
    .online {
        align-items: flex-start;
    }

    .icone-atendimento {
        width: 60px;
    }

    .titulo-atendimentos {
        font-size: 23px;
    }
}

.lista-contato {
    position: relative;
    border-bottom: none;
}

.lista-contato:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--cor-borda-suave);
}
