:root {
    /* Colors: */
    --unnamed-color-fff8e2: #fff8e2;
    --unnamed-color-6b5138: #6b5138;
    --unnamed-color-faf6ea: #faf6ea;
    --unnamed-color-b39070: #b39070;
    --swiper-theme-color: #6b5138;
}

* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body {
    background-color: var(--unnamed-color-faf6ea);
}

a {
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    font-size: 12px;
    text-decoration: none;
}

a:hover {
    opacity: 0.3;
}

.logo {
    width: 140px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--unnamed-color-b39070);
    height: 50px;
    width: 100%;
    border-radius: 0px 0px 20px 20px;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    letter-spacing: 1px;
    margin-left: 32px;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 20px;
    height: 2px;
    background: var(--unnamed-color-fff8e2);
    margin: 5px;
    transition: 0.3s;
}

@media (max-width: 999px) {
    body {
        overflow-x: hidden;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: 8vh;
        right: 0;
        width: 60%;
        height: 92vh;
        background: rgba(179, 144, 112, 0.8);
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: space-around;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        border-top-left-radius: 20px; /* Raio de 20px no canto superior esquerdo */
        border-top-right-radius: 0px; /* Raio de 20px no canto superior direito */
        border-bottom-left-radius: 20px; /* Raio de 10px no canto inferior esquerdo */
        border-bottom-right-radius: 0px;
        overflow: hidden;
    }

    .nav-list.active {
        display: block; /* Exibe quando ativo */
    }

    .nav-list.active li {
        margin-top: 40%;
    }

    .nav-list li {
        margin-left: 0;
        opacity: 0;
    }
    .mobile-menu {
        display: block;
    }
}

.nav-list.active {
    transform: translateX(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-4px, 5px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.home {
    background-image: url("../assets/img/home-nova.webp");
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    background-size: 100%;
    position: relative;
}

.home h1 {
    padding-top: 200px;
    margin-left: 7%;
    font-family: sans-serif;
    font-size: 32px;
    color: var(--unnamed-color-fff8e2);
    max-width: 320px;
}

.home p {
    padding-top: 10px;
    margin-left: 7%;
    font-size: 15px;
    color: var(--unnamed-color-fff8e2);
    max-width: 400px;
    line-height: 24px;
}

.botoes-home {
    margin-left: 6%;
}

.home a {
    height: 40px;
    width: 40px;
    z-index: 9999;
}

.botoes-home img {
    margin-left: 10px;
    margin-top: 26px;
    height: 40px;
    transition: transform 0.5s ease;
    z-index: 9999;
}

.botoes-home img:hover {
    transform: scale(1.1);
}

.botoes-home img:active {
    transform: scale(0.6);
}

.sobre {
    height: fit-content;
    padding: 5% 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination .swiper-pagination-bullet {
    color: #b39070 !important;
    background-color: #b39070;
}

#swiper3 .swiper-wrapper {
    width: 500px;
    margin-bottom: 30px;
}

#swiper3 .swiper {
    width: 200px;
    height: 200px;
}

#swiper3 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#swiper3 .swiper-slide img {
    display: block;
    width: 340px;
    height: 340px;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background-color: #ff0000;
}

.botao-sobre {
    width: 160px;
    height: 40px;
    margin-top: 12px;
    border: none;
    background-color: #c3a88b;
    color: #6b5138;
    border-radius: 10px;
    cursor: pointer;
}

.botao-sobre:hover {
    background-color: #6b5138;
    color: white;
}

.textos-sobre {
    width: 600px;
    margin: 0 10px;
}

.textos-sobre h1 {
    color: #6b5138;
    margin-bottom: 5%;
    font-size: 24px;
}

.textos-sobre p {
    color: #b39070;
    line-height: 20px;
    margin-bottom: 4%;
    font-size: 14px;
    max-width: 420px;
}

.tratamentos {
    align-content: center;
    display: block;
    height: fit-content;
    padding: 5% 0;
}

.botao-trat {
    background-color: #c3a88b;
    border: none;
    width: 160px;
    height: 40px;
    font-size: 12px;
    color: #6b5138;
    border-radius: 10px;
    display: flow-root;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.botao-trat:hover {
    background-color: #6b5138;
    color: white;
}

.tratamentos h1 {
    font-size: 24px;
    text-align: center;
    color: #6b5138;
    margin-top: 4%;
}

a .link-trat {
    width: 160px;
}
#swiper1 .swiper-wrapper {
    height: auto;
}

#swiper1 {
    margin-top: 4%;
    width: 900px;
    height: 350px;
    border-radius: 28px;
}

#swiper1 .swiper {
    width: 800px;
}

#swiper1 .swiper-slide {
    color: #faf6ea;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    background: var(--unnamed-color-b39070);
    display: block;
    justify-content: center;
    align-items: center;
    transition: ease-in-out;
    height: 320px;
}

#swiper1 .swiper-slide:hover {
    background-color: #6b5138;
    transition: 20ms;
}

#swiper1 .swiper-slide img {
    margin-top: 10%;
    height: 30px;
    margin-bottom: 2%;
}

#swiper1 .swiper-slide h2 {
    margin-bottom: 4%;
}

#swiper1 .swiper-slide p {
    width: 250px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.carrossel h2 {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.carrossel p {
    margin-top: 10px;
    width: 230px;
    font-size: 12px;
    text-align: center;
    font-weight: 100;
    line-height: 18px;
    margin-left: auto;
    margin-right: auto;
}

.carrossel button {
    background: none;
    border: none;
    margin: 20px;
    cursor: pointer;
}

.carrossel button img {
    height: 30px;
}

.diferenciais {
    display: block;
    align-items: center;
    text-align: center;
    height: fit-content;
    padding: 5% 0;
}

.diferenciais h1 {
    color: #6b5138;
    font-size: 24px;
}

.diferenciais p {
    color: #b39070;
    margin-top: 5px;
    font-size: 15px;
}

.bloco-dif {
    margin-top: 40px;
    display: flex;
    background-color: #b39070;
    height: 280px;
}

.bloco-dif .linha {
    background-color: #d3bda6;
    height: 150px;
    width: 2px;
    align-self: center;
}

.bloco-dif h2 {
    color: #faf6ea;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.bloco-dif p {
    color: #fff8e2;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    width: 240px;
    margin-top: 10px;
}

.bloco img {
    width: 22px;
}

.bloco {
    margin: auto;
}

.videos-insta {
    display: block;
    text-align: center;
    height: fit-content;
    padding: 5% 0;
}

.videos-insta h1 {
    color: #6b5138;
    font-size: 24px;
}

.videos-insta p {
    color: #b39070;
    margin-top: 5px;
    font-size: 15px;
}

.videos {
    display: flex;
    width: 700px;
    margin: auto;
    gap: 10px;
    margin-bottom: 5%;
}

.videos a img {
    height: 240px;
    margin-top: 50px;
}

.videos a img:hover {
    transform: scale(1.1);
    transition: ease-out;
}

.videos a {
    margin: auto;
}

.videos-insta button {
    background-color: #c3a88b;
    border: none;
    width: 160px;
    height: 40px;
    color: #6b5138;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.videos-insta button:active {
    transform: scale(0.9);
}

.videos-insta button:hover {
    background-color: #6b5138;
    color: white;
}

.banner {
    position: relative;
    height: fit-content;
    padding: 5% 0;
    display: flex;
    align-items: center;
}

.fundo-banner {
    background-image: url("../assets/img/banner-desktop.webp");
    width: 100%;
    height: 100%;
    padding: 5% 0;
    background-repeat: no-repeat;
    background-position: 100%;
    border-radius: 40px;
    background-position: center 20%;
    background-size: cover;
}

.cont-banner {
    margin-top: 12%;
    margin-left: 6%;
}

.banner button {
    position: relative;
    z-index: 1;
    background-color: #faf6ea;
    border: none;
    width: 160px;
    height: 40px;
    color: #6b5138;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.banner button:hover {
    background-color: #b39070;
    color: white;
}

.banner button:active {
    transform: scale(0.9);
}

.banner p {
    font-size: 15px;
    position: relative;
    z-index: 1;
    height: 130px;
    width: 460px;
    color: #6b5138;
    line-height: 22px;
}

.banner img {
    width: 100%;
    z-index: 0;
    position: absolute;
}

.cont-trat {
    display: flex;
}

.title-hof {
    text-align: center;
    margin-top: 60px;
}

.title-hof h1 {
    color: #6b5138;
    font-size: 24px;
}

.title-hof p {
    color: #b39070;
    margin-top: 8px;
    font-size: 14px;
}

.swiper-wrapper {
    margin-bottom: 50px;
}

#swiper2 {
    width: 760px;
}

#swiper2 .swiper {
    width: 60%;
    height: 100%;
}

#swiper2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: #faf6ea;
    margin-top: 40px;
    width: 60%;
}

#swiper2 .swiper-slide img {
    display: block;
    width: 250px;
    height: auto;
    object-fit: cover;
    margin-top: 0px;
}

#swiper2 .swiper-slide h3 {
    color: #6b5138;
    text-align: left;
    margin-bottom: 20px;
    font-size: 18px;
}

#swiper2 .swiper-slide p {
    color: #b39070;
    width: 320px;
    text-align: left;
    font-size: 15px;
}

#swiper2 .swiper-slide div {
    margin-left: 30px;
    margin-bottom: 50px;
}

#swiper2 .swiper-button-next {
    color: #b39070;
}

#swiper2 .swiper-button-prev {
    color: #b39070;
}

.hof {
    height: fit-content;
    padding: 5% 0;
}
.botoes-hof {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 9%;
}

.carousel-btn {
    background: #d3bda6;
    width: 25px;
    height: 35px;
    border: none;
    border-radius: 6px;
    display: flex;
    cursor: pointer;
    margin: 10px;
    transition: all 0.2s ease;
}

.carousel-btn:active {
    transform: scale(0.9);
}

.carousel-btn img {
    height: 22px;
    margin: 7px;
}

.contato {
    background-color: #6b5138;
    padding: 0px;
    border-radius: 50px 50px 0px 0;
}

.footer__title h1 {
    color: #faf6ea;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    margin-top: 50px;
    padding-top: 80px;
}

.footer__form {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    width: 200px;
}

form {
    height: fit-content;
}

.cont {
    height: fit-content;
    display: contents;
}

input {
    background-color: #b39070;
    border: none;
    border-radius: 8px;
    height: 42px;
    width: 320px;
    margin-bottom: 10px;
    padding-left: 16px;
    color: #faf6ea;
}

textarea {
    background-color: #b39070;
    color: #faf6ea;
    border: none;
    border-radius: 8px;
    height: 100px;
    width: 320px;
    margin-bottom: 10px;
    padding-left: 16px;
    padding-top: 12px;
    resize: none;
}

input:focus {
    outline: none;
}

input::placeholder {
    color: #e6d4c1;
}

textarea::placeholder {
    color: #e6d4c1;
}

textarea:focus {
    outline: none;
}

.footer__form button {
    background-color: #d3bda6;
    border: none;
    border-radius: 4px;
    height: 30px;
    width: 100px;
    color: #6b5138;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer__form button:active {
    transform: scale(0.9);
}

.footer__form button:hover {
    background-color: #e6d4c1;
}

.grid-ctt {
    display: flex;
    margin-top: 80px;
}

.footer__contact-info {
    margin-top: 0;
    color: #e6d4c1;
    margin-left: auto;
    margin-right: auto;
    height: 250px;
}

.footer__contact-info p {
    margin-bottom: 10px;
    margin-top: 20px;
    width: 390px;
    font-size: 13px;
    line-height: 21px;
    font-weight: 100;
}

.footer__contact-info img {
    margin-right: 14px;
    height: 20px;
}

.footer__contact-info a {
    color: #fff8e2;
}

.redes-sociais img {
    height: 34px;
}

footer {
    width: 100%;
    height: 30px;
    height: fit-content;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--unnamed-color-b39070);
    padding: 0 0 2%;
}

footer .container {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: -moz-fit-content;
    height: 100px;
}

footer .container img {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}

footer .copyrights {
    display: grid;
    place-items: center;
    text-align: center;
}

footer .copyrights .copy {
    display: flex;
    align-items: center;
    gap: 0 0.8rem;
    font-size: 0.45rem;
    opacity: 1;
    color: #fff;
    font-size: 10px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

footer .copyrights .copy svg {
    width: 1rem;
    height: auto;
}

@media (max-width: 800px) {
    footer {
        padding: 0 0 5%;
    }
}

/* tamanho maior que 1004px*/

@media (min-width: 1350px) and (max-width: 2000px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: var(--unnamed-color-b39070);
        height: 65px;
        width: 100%;
        border-radius: 0px 0px 20px 20px;
    }

    .home {
        background-image: url("../assets/img/home-nova.webp");
        background-repeat: no-repeat;
        height: 100vh;
        width: 100%;
        background-size: 100%;
        z-index: -1;
        position: relative;
    }

    .home h1 {
        padding-top: 20%;
        margin-left: 9%;
        font-family: sans-serif;
        font-size: 36px;
        color: var(--unnamed-color-fff8e2);
        max-width: 380px;
    }

    .home p {
        padding-top: 18px;
        margin-left: 9%;
        font-size: 20px;
        color: var(--unnamed-color-fff8e2);
        max-width: 480px;
        line-height: 24px;
    }

    .botoes-home {
        margin-left: 9%;
    }

    .botoes-home img {
        margin-left: 10px;
        margin-top: 32px;
        height: 60px;
        transition: transform 0.5s ease;
    }

    .sobre {
        height: 80vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .botao-sobre {
        width: 200px;
        height: 50px;
        margin-top: 20px;
        border: none;
        background-color: #c3a88b;
        color: #6b5138;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
    }

    .tudo-sobre {
        height: 500px;
        display: flex;
        margin: auto;
        margin-bottom: 5%;
        margin-top: 8%;
    }

    .textos-sobre {
        width: 800px;
        margin-top: 2%;
        margin-left: 3%;
    }

    .textos-sobre h1 {
        color: #6b5138;
        margin-bottom: 5%;
        font-size: 30px;
    }

    .textos-sobre p {
        color: #b39070;
        line-height: 25px;
        margin-bottom: 2%;
        font-size: 18px;
        max-width: 620px;
    }

    #swiper3 .swiper-slide img {
        display: block;
        width: 60vh;
        height: 60vh;
        object-fit: cover;
    }

    .tratamentos {
        align-content: center;
        display: block;
        height: 80vh;
        text-align: center;
        margin-bottom: 0%;
    }

    .botao-trat {
        background-color: #c3a88b;
        border: none;
        width: 200px;
        height: 50px;
        font-size: 16px;
        color: #6b5138;
        border-radius: 10px;
        display: flow-root;
        margin-left: auto;
        margin-right: auto;
        margin-top: 4%;
        cursor: pointer;
    }

    .tratamentos h1 {
        font-size: 30px;
        text-align: center;
        color: #6b5138;
        margin-top: 4%;
    }

    .carrossel {
        display: flex;
        width: 1095px;
        height: 360px;
        cursor: pointer;
        margin: auto;
        margin-top: 5%;
    }

    .slide {
        transition: all 0.3s ease;
    }

    .bloco-trat {
        display: flex;
        background-color: #b39070;
        border-radius: 28px;
        width: 980px;
        height: 400px;
        align-content: center;
        color: #fff8e2;
        justify-content: center;
        gap: 20px;
        transition: transform 0.5s ease;
    }

    .bloco-trat img {
        margin-top: 16%;
        width: 24px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .bloco-trat div {
        margin-left: 1.5px;
    }

    .carrossel h2 {
        margin-top: 12px;
        font-size: 20px;
        font-weight: 600;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .carrossel p {
        margin-top: 20px;
        width: 250px;
        font-size: 14px;
        text-align: center;
        font-weight: 100;
        line-height: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .carrossel button {
        background: none;
        border: none;
        margin: 20px;
        margin-top: 5%;
        cursor: pointer;
    }

    .carrossel button img {
        height: 30px;
    }

    .diferenciais {
        display: block;
        align-items: center;
        text-align: center;
        margin-bottom: 8%;
    }

    .diferenciais h1 {
        color: #6b5138;
        font-size: 30px;
    }

    .diferenciais p {
        color: #b39070;
        margin-top: 5px;
        font-size: 20px;
    }

    .bloco-dif {
        background-color: #b39070;
        width: 100%;
        height: 390px;
        margin-top: 50px;
        margin-bottom: 60px;
        display: flex;
        gap: 0px;
    }

    .bloco-dif .linha {
        background-color: #d3bda6;
        height: 200px;
        width: 2px;
        align-self: center;
    }

    .bloco-dif h2 {
        color: #faf6ea;
        font-size: 20px;
        font-weight: 500;
        margin-top: 10px;
    }

    .bloco-dif p {
        color: #fff8e2;
        font-size: 16px;
        font-weight: 300;
        line-height: 26px;
        width: 340px;
        margin-top: 10px;
    }

    .bloco img {
        width: 26px;
    }

    .videos-insta h1 {
        color: #6b5138;
        font-size: 30px;
        margin-top: 10%;
    }

    .videos-insta p {
        color: #b39070;
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .videos {
        display: flex;
        width: 920px;
        height: 50vh;
        margin: auto;
        gap: 25px;
        margin-bottom: 3%;
        text-align: center;
    }

    .videos a img {
        height: 350px;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .videos-insta button {
        background-color: #c3a88b;
        border: none;
        width: 200px;
        height: 50px;
        font-size: 16px;
        color: #6b5138;
        border-radius: 10px;
        margin-bottom: 60px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .banner {
        position: relative;
        display: block;
        margin-top: 0;
    }

    .banner button {
        position: relative;
        z-index: 1;
        background-color: #faf6ea;
        border: none;
        width: 200px;
        height: 50px;
        font-size: 16px;
        margin-top: 30px;
        color: #6b5138;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-left: 50px;
    }

    .banner p {
        font-size: 20px;
        position: relative;
        z-index: 1;
        height: 130px;
        width: 580px;
        color: #6b5138;
        line-height: 28px;
        margin-left: 50px;
        padding-top: 10%;
    }

    .fundo-banner div {
        margin-left: 0%;
    }

    .cont-banner {
        margin-left: 0px;
        margin-top: 0%;
    }

    .banner img {
        width: 100%;
        z-index: 0;
        position: absolute;
    }

    .hof {
        position: relative;
        margin-top: 70px;
    }

    .hof h1 {
        text-align: center;
        font-size: 30px;
        margin-bottom: 8px;
        margin-top: 40px;
        color: #6b5138;
    }

    .hof h3 {
        text-align: center;
        font-size: 20px;
        color: #b39070;
        font-weight: 400;
        margin-bottom: 40px;
    }

    #swiper2 .swiper {
        width: 80%;
        height: 80%;
    }

    #swiper2 .swiper-wrapper {
        width: 400px;
    }

    #swiper2 .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        display: flex;
        background-color: #faf6ea;
        margin-top: 40px;
    }

    #swiper2 .swiper-slide img {
        display: block;
        width: 250px;
        height: auto;
        object-fit: cover;
        margin-top: 10px;
    }

    #swiper2 .swiper-slide h3 {
        color: #6b5138;
        text-align: left;
        margin-bottom: 20px;
        font-size: 18px;
    }

    #swiper2 .swiper-slide p {
        color: #b39070;
        width: 380px;
        text-align: left;
        font-size: 15px;
    }

    #swiper2 .swiper-slide div {
        margin-left: 30px;
    }

    .carousel-btn img {
        height: 28px;
        margin: 16px;
    }

    .carousel-item h3 {
        text-align: left;
        font-size: 16px;
        color: #b39070;
        font-weight: 400;
        margin-left: 40px;
    }

    .carousel-item h3 {
        text-align: left;
        font-size: 20px;
        color: #b39070;
        font-weight: 400;
        margin-left: 40px;
    }

    .footer__form {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 40px;
        width: 200px;
    }

    .cont {
        display: contents;
    }

    input {
        background-color: #b39070;
        border: none;
        border-radius: 8px;
        height: 55px;
        width: 390px;
        margin-bottom: 10px;
        padding-left: 16px;
        font-size: 16px;
        color: #faf6ea;
    }

    textarea {
        background-color: #b39070;
        color: #faf6ea;
        border: none;
        border-radius: 8px;
        height: 130px;
        width: 390px;
        margin-bottom: 10px;
        padding-left: 16px;
        padding-top: 12px;
        resize: none;
        font-size: 16px;
    }

    .footer__form button {
        background-color: #d3bda6;
        border: none;
        border-radius: 8px;
        height: 45px;
        width: 160px;
        color: #6b5138;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .footer__title h1 {
        font-size: 26px;
        width: 800px;
        line-height: 34px;
    }

    .footer__contact-info p {
        font-size: 20px;
        line-height: 28px;
        width: 500px;
    }

    .redes-sociais a img {
        height: 58px;
        margin-top: 4%;
    }
}

@media (max-width: 780px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: var(--unnamed-color-b39070);
        height: 50px;
        width: 100%;
        border-radius: 0px 0px 20px 20px;
    }

    .home {
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 0px;
        top: 0;
    }

    .home h1 {
        font-size: 24px;
        width: 250px;
        padding-top: 140px;
    }

    .home p {
        font-size: 14px;
        width: 300px;
        line-height: 20px;
    }

    #swiper3 .swiper-wrapper {
        width: 400px;
        margin-bottom: 30px;
    }

    #swiper3 .swiper {
        width: 200px;
        height: 200px;
    }

    #swiper3 .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #swiper3 .swiper-slide img {
        display: block;
        width: 250px;
        height: 250px;
        object-fit: cover;
    }

    .textos-sobre {
        width: 500px;
        margin: 0 0px;
    }

    .textos-sobre h1 {
        color: #6b5138;
        margin-bottom: 3%;
        font-size: 20px;
    }

    .textos-sobre p {
        color: #b39070;
        line-height: 20px;
        margin-bottom: 2%;
        font-size: 13px;
        max-width: 350px;
    }

    .tratamentos h1 {
        font-size: 20px;
    }

    .tratamentos {
        margin-bottom: 20px;
    }

    #swiper1 {
        margin-top: 4%;
        width: 700px;
        height: auto;
        border-radius: 28px;
    }

    #swiper1 .swiper {
        width: 200px;
    }

    #swiper1 .swiper-slide {
        color: #faf6ea;
        text-align: center;
        font-size: 11px;
        line-height: 16px;
        background: var(--unnamed-color-b39070);
        display: block;
        justify-content: center;
        align-items: center;
        transition: ease-in-out;
        height: 300px;
    }

    #swiper1 .swiper-slide:hover {
        background-color: #6b5138;
        transition: 20ms;
    }

    #swiper1 .swiper-slide img {
        margin-top: 10%;
        height: 25px;
        margin-bottom: 2%;
    }

    #swiper1 .swiper-slide p {
        width: 200px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #swiper1 .swiper-slide h2 {
        font-size: 14px;
    }

    .botao-sobre {
        width: 150px;
        height: 40px;
        font-size: 12px;
        margin-top: 10px;
        border: none;
        background-color: #c3a88b;
        color: #6b5138;
        border-radius: 10px;
        cursor: pointer;
    }

    .diferenciais {
        margin-bottom: 0;
    }

    .diferenciais h1 {
        font-size: 20px;
    }

    .bloco-dif {
        height: 250px;
    }

    .bloco-dif p {
        font-size: 11px;
        line-height: 17px;
        width: 200px;
    }

    .diferenciais h2 {
        font-size: 14px;
    }

    .videos-insta h1 {
        font-size: 20px;
    }

    .banner p {
        font-size: 13px;
        line-height: 20px;
        width: 350px;
    }

    .cont-banner {
        margin-top: 70px;
    }

    .cont-banner button {
        width: 140px;
        height: 38px;
        margin-top: 10px;
    }

    .hof h1 {
        font-size: 20px;
    }

    #swiper2 {
        width: 620px;
    }

    #swiper2 .swiper-wrapper {
        height: 300px;
    }

    #swiper2 .swiper {
        width: 100%;
        height: 60%;
    }

    #swiper2 .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        display: flex;
        background-color: #faf6ea;
        margin-top: 40px;
        margin-bottom: 50px;
    }

    #swiper2 .swiper-slide img {
        display: block;
        width: 200px;
        height: auto;
        object-fit: cover;
        margin-top: 0px;
    }

    #swiper2 .swiper-slide h3 {
        color: #6b5138;
        text-align: left;
        margin-bottom: 20px;
        font-size: 15px;
        margin-top: 30px;
    }

    #swiper2 .swiper-slide p {
        color: #b39070;
        width: 300px;
        text-align: left;
        font-size: 13px;
    }

    #swiper2 .swiper-slide div {
        margin-left: 30px;
        margin-top: 0px;
    }

    div #swiper2 .swiper-slide .swiper-slide-prev {
        margin: 0px;
    }

    #swiper2 .swiper-button-next {
        color: #b39070;
        font-size: 12px;
    }

    #swiper2 .swiper-button-prev {
        color: #b39070;
    }

    .footer {
        height: 500px;
    }

    .footer__container {
        height: 450px;
    }

    .footer__logo {
        height: 50px;
    }

    .footer__logo img {
        padding-top: 0;
    }

    .grid-ctt {
        height: 200px;
        margin-top: 40px;
    }

    .footer__form button {
        background-color: #d3bda6;
        border: none;
        border-radius: 4px;
        height: 30px;
        width: 100px;
        color: #6b5138;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .footer__contact-info {
        margin-top: 0;
        color: #e6d4c1;
        margin-left: auto;
        margin-right: auto;
        height: 250px;
    }

    .footer__contact-info p {
        margin-bottom: 10px;
        margin-top: 20px;
        width: 300px;
        font-size: 13px;
        line-height: 21px;
        font-weight: 100;
    }

    .footer__form {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 40px;
        width: 200px;
    }

    .cont {
        display: contents;
    }

    input {
        background-color: #b39070;
        border: none;
        border-radius: 8px;
        height: 40px;
        width: 260px;
        margin-bottom: 10px;
        padding-left: 16px;
        color: #faf6ea;
    }

    textarea {
        background-color: #b39070;
        color: #faf6ea;
        border: none;
        border-radius: 8px;
        height: 80px;
        width: 260px;
        margin-bottom: 10px;
        padding-left: 16px;
        padding-top: 12px;
        resize: none;
    }

    .footer__title h1 {
        color: #faf6ea;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        width: 540px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        margin-top: 30px;
        padding-top: 60px;
    }

    .footer__bottom {
        height: 30px;
    }

    .footer__bottom p {
        padding-top: 8px;
        font-size: 10px;
    }
}

@media (max-width: 500px) {
    nav {
        position: absolute;
        top: 20px;
        left: 0;
        z-index: 9999;
        display: flex;
        justify-content: space-around;
        align-items: center;
        background: none;
        height: 50px;
        width: 100%;
        border-radius: 0px 0px 20px 20px;
    }

    .home {
        background-image: url("../assets/img/home-mob.webp");
        background-repeat: no-repeat;
        width: 100%;
        background-size: 100%;
        z-index: -1;
        position: relative;
        align-items: center;
        align-content: center;
        text-align: center;
        overflow: hidden;
    }

    .home h1 {
        padding-top: 30%;
        margin-left: 9%;
        font-family: sans-serif;
        font-size: 22px;
        color: var(--unnamed-color-fff8e2);
        max-width: 80%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .home p {
        padding-top: 10px;
        margin-left: 9%;
        font-size: 12px;
        color: var(--unnamed-color-fff8e2);
        max-width: 80%;
        line-height: 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .botoes-home {
        margin-left: auto;
        margin-right: auto;
        margin-top: 70%;
        padding-bottom: 26%;
    }

    .botoes-home img {
        margin-left: 10px;
        margin-top: 26px;
        height: 40px;
        transition: transform 0.5s ease;
    }

    .sobre {
        width: 100%;
        display: block;
        justify-content: center;
        align-items: center;
        margin-top: 10%;
    }

    .botao-sobre {
        width: 160px;
        height: 40px;
        margin-top: 20px;
        margin-bottom: 40px;
        border: none;
        background-color: #c3a88b;
        color: #6b5138;
        border-radius: 10px;
        cursor: pointer;
    }

    .tudo-sobre {
        display: block;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .textos-sobre {
        width: 90%;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .textos-sobre h1 {
        color: #6b5138;
        margin-top: 40px;
        text-align: center;
    }

    .titulo-home {
        margin-left: auto;
        margin-right: auto;
    }

    .textos-sobre p {
        color: #b39070;
        line-height: 20px;
        margin-top: 20px;
        margin-bottom: 16px;
        font-size: 14px;
        max-width: 100%;
        text-align: center;
    }

    .contain-sobre {
        padding-left: 50px;
        /*display: flex;*/
        max-width: 800px;
    }

    .carousel-sobre {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
    }

    .tratamentos h1 {
        font-size: 24px;
        text-align: center;
        color: #6b5138;
        margin-top: 4%;
    }

    .tratamentos {
        padding-bottom: 60px;
        align-items: center;
        text-align: center;
    }

    .tratamentos h1 {
        font-size: 20px;
        width: 300px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }

    #swiper1 {
        margin-top: 4%;
        width: 90%;
        height: auto;
        border-radius: 28px;
    }

    #swiper1 .swiper {
        width: 800px;
        height: 100%;
    }

    #swiper1 .swiper-slide {
        color: #faf6ea;
        text-align: center;
        font-size: 13px;
        line-height: 20px;
        background: var(--unnamed-color-b39070);
        display: block;
        justify-content: center;
        align-items: center;
        transition: ease-in-out;
        height: auto;
    }

    #swiper1 .swiper-slide:hover {
        background-color: #6b5138;
        transition: 20ms;
    }

    #swiper1 .swiper-slide img {
        margin-top: 10%;
        height: 30px;
        margin-bottom: 2%;
    }

    #swiper1 .swiper-slide h2 {
        margin-bottom: 4%;
        font-size: 20px;
    }

    #swiper1 .swiper-slide p {
        width: 72%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5%;
    }

    .diferenciais {
        display: block;
        align-items: center;
        text-align: center;
        margin-bottom: 0%;
        padding-bottom: 20%;
    }

    .diferenciais h1 {
        color: #6b5138;
        font-size: 20px;
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .diferenciais p {
        color: #b39070;
        margin-top: 5px;
        font-size: 15px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .bloco-dif {
        background-color: #b39070;
        width: 90%;
        height: auto;
        margin-top: 40px;
        margin-bottom: 0px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        text-align: center;
        border-radius: 20px;
        padding-bottom: 10%;
    }

    .bloco-dif .linha {
        background-color: #d3bda6;
        margin-top: 20px;
        height: 3px;
        width: 250px;
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .bloco-dif h2 {
        color: #faf6ea;
        font-size: 14px;
        font-weight: 500;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .bloco-dif p {
        color: #fff8e2;
        font-size: 12px;
        font-weight: 300;
        line-height: 20px;
        width: 80%;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }

    .bloco img {
        padding-top: 22px;
        width: 22px;
    }

    .bloco {
        margin: auto;
    }

    .videos-insta {
        display: block;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .videos-insta h1 {
        color: #6b5138;
        font-size: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .videos-insta p {
        color: #b39070;
        margin-top: 5px;
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        margin-bottom: 20px;
    }

    .videos {
        display: block;
        flex-direction: column;
        align-items: center;
        width: 240px;
        margin: auto;
        gap: 0px;
        margin-bottom: 5%;
        margin-left: auto;
        margin-right: auto;
    }

    .videos a img {
        height: 240px;
        margin-top: 20px;
    }

    .videos a img:hover {
        transform: scale(1.1);
        transition: ease-out;
    }

    .videos a {
        margin: auto;
    }

    .videos-insta button {
        background-color: #c3a88b;
        border: none;
        width: 160px;
        height: 40px;
        color: #6b5138;
        border-radius: 10px;
        margin-bottom: 60px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .videos-insta button:active {
        transform: scale(0.9);
    }

    .videos-insta button:hover {
        background-color: #6b5138;
        color: white;
    }

    .banner {
        position: relative;
        width: 100%;
        display: block;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .fundo-banner {
        background-image: url("../assets/img/banner-mobile.webp");
        height: 800px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 100%;
    }

    .banner cont-banner {
        margin-left: 0;
        margin-right: 0;
        align-items: center;
        text-align: center;
    }

    .cont-banner {
        padding-top: 50px;
        align-items: center;
        text-align: center;
    }

    .banner div {
        margin-left: 0%;
        margin-right: 0%;
        margin-top: 0%;
    }

    .banner button {
        position: relative;
        z-index: 1;
        background-color: #faf6ea;
        border: none;
        width: 160px;
        height: 40px;
        color: #6b5138;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .banner button:hover {
        background-color: #b39070;
        color: white;
    }

    .banner button:active {
        transform: scale(0.9);
    }

    .banner p {
        font-size: 15px;
        position: relative;
        z-index: 1;
        height: auto;
        width: 80%;
        color: #6b5138;
        line-height: 22px;
        margin-left: auto;
        margin-right: auto;
    }

    .cont-trat {
        display: flex;
    }

    .hof {
        width: 100%;
    }

    .hof p {
        width: 80%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #swiper2 {
        display: block;
        height: 640px;
        margin-top: 5%;
        width: 100%;
    }

    #swiper2 .swiper {
        width: 100%;
        display: block;
    }

    #swiper2 .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: block;
        justify-content: center;
        align-items: center;
        display: block;
        background-color: #faf6ea;
        height: 400px;
    }

    #swiper2 .swiper-slide img {
        display: block;
        width: 65%;
        height: auto;
        margin-top: 0px;
        margin-left: auto;
        margin-right: auto;
    }

    #swiper2 .swiper-slide h3 {
        color: #6b5138;
        text-align: center;
        margin-bottom: 14px;
        margin-top: 40px;
        font-size: 16px;
        max-width: 180px;
        margin-left: auto;
        margin-right: auto;
    }

    #swiper2 .swiper-slide p {
        color: #b39070;
        width: 70%;
        text-align: center;
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #swiper2 .swiper-slide div {
        margin-left: auto;
        margin-right: auto;
        height: auto;
    }

    #swiper2 .swiper-button-next {
        right: 10px;
        transform: rotate(0deg);
    }

    #swiper2 .swiper-button-prev {
        left: 10px;
        transform: rotate(0deg);
    }

    .swiper-pagination .swiper-pagination-bullet {
        color: #b39070 !important;
        background-color: #b39070;
    }

    .footer {
        background-color: #6b5138;
        padding: 0px;
        border-radius: 50px 50px 0px 0;
        height: 100%;
        width: 100%;
    }

    .footer__title h1 {
        color: #faf6ea;
        font-weight: 400;
        font-size: 17px;
        line-height: 28px;
        text-align: center;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
        margin-top: 50px;
        padding-top: 80px;
    }

    .footer__container {
        height: 860px;
    }

    .footer__form {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 40px;
        width: 260px;
        height: auto;
        margin-bottom: 20%;
    }

    .cont {
        display: block;
    }

    input {
        background-color: #b39070;
        border: none;
        border-radius: 8px;
        height: 42px;
        width: 240px;
        margin-bottom: 10px;
        padding-left: 16px;
        color: #faf6ea;
    }

    textarea {
        background-color: #b39070;
        color: #faf6ea;
        border: none;
        border-radius: 8px;
        height: 100px;
        width: 240px;
        margin-bottom: 10px;
        padding-left: 16px;
        padding-top: 12px;
        resize: none;
    }

    input:focus {
        outline: none;
    }

    input::placeholder {
        color: #e6d4c1;
    }

    textarea::placeholder {
        color: #e6d4c1;
    }

    textarea:focus {
        outline: none;
    }

    .footer__form {
        padding-bottom: 0;
        align-items: center;
        text-align: center;
    }

    .footer__form button {
        background-color: #d3bda6;
        border: none;
        border-radius: 4px;
        height: 30px;
        width: 100px;
        color: #6b5138;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__form button:active {
        transform: scale(0.9);
    }

    .footer__form button:hover {
        background-color: #e6d4c1;
    }

    .grid-ctt {
        display: block;
        margin-top: 40px;
    }

    .footer__contact-info {
        margin-top: 0;
        color: #e6d4c1;
        margin-left: auto;
        margin-right: auto;
        height: 250px;
        width: 80%;
    }

    .footer__contact-info p {
        margin-bottom: 10px;
        margin-top: 20px;
        width: 90%;
        font-size: 12px;
        line-height: 21px;
        font-weight: 100;
    }

    .footer__contact-info img {
        margin-right: 14px;
        height: 16px;
    }

    .footer__contact-info a {
        color: #fff8e2;
        width: auto;
    }

    .redes-sociais img {
        height: 40px;
        margin-right: 20px;
        margin-top: 15px;
        margin-bottom: 40px;
    }

    .footer__logo {
        background-color: #b39070;
        height: 60px;
        border-radius: 40px 40px 0px 0px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        align-content: center;
    }

    .footer__logo img {
        height: 40px;
        display: block;
        margin: 0 auto;
        padding-top: 10px;
    }

    .footer__bottom {
        background-color: #e6d4c1;
        height: 40px;
        width: 100%;
        color: #6b5138;
        font-size: 12px;
        text-align: center;
    }

    .footer__bottom p {
        padding-top: 15px;
    }
}
