:root {
    --main-bg-pastel: #b1914f;
    --main-bg-preto: #1c1c1c;
    --main-bg-gradiente: linear-gradient(0.9turn, #f0c163, #947028, #7c5402);

    scroll-behavior: smooth;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
}

body {
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: "Titillium Web", serif;
}

ul, li {
    font-family: "Montserrat", serif;
}

h1 {
    font-size: 1.9rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-weight: bold;
}

p {
    line-height: 20px;
}

p, a {
    font-family: "Montserrat", serif;
}

body > header {
    margin-top: 60px;
}

ul li {
    margin-bottom: 10px;
}

body > header > nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #282828;
    color: white;
    border-radius: 55px;
    max-width: 1000px;
    margin: 0 auto;
}

body > header > nav a {
    color: white;
    text-decoration: none;
}

body > header > nav h1 {
    font-size: 1.3rem;
    text-align: center;
}

body > header > nav span {
    color: #c19a55;
    font-weight: 700;
    font-size: 1.5rem;
}

.section-principal > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.section-principal p {
    max-width: 430px;
}

.section-principal img {
    max-width: 550px;
}

.section-principal b {
    color: #b1914f;
    font-weight: 700;
}

.section-sobre {
    background-color: black;
    color: white;
    margin: 0;
}

.section-sobre > div {
    padding: 100px 50px;
}

.section-sobre > div img {
    max-width: 350px;
    padding-bottom: 50px;
}

.section-sobre > div > div {
    display: flex;
    gap: 50px;
}

.section-sobre > div > div a {
    margin-top: 40px;
    display: block;
    background-image: linear-gradient(21deg, rgb(136 114 17), rgb(227 175 65));
    text-decoration: none;
    color: black;
    padding: 20px 50px;
    text-align: center;
    border-radius: 20px 0px;
    font-weight: 600;
}

.titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #b1914f;
}

.treatments > div {
    display: flex;
    gap: 80px;
    padding: 50px 50px;
}

.treatments > div img {
    border-radius: 50px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
    max-width: 400px;
}

.treatments > div b {
    font-weight: 600;
}

.lista-icons > div {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.category {
    font-size: 1.2em;
    font-weight: bold;
    background: #f2f2f2;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.price-table th, .price-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.price-table th {
    background: #e0e0e0;
    text-align: left;
}
.price-table tr:nth-child(even) {
    background: #f9f9f9;
}
.highlight {
    font-weight: bold;
    color: #555;
}

footer {
    text-align: center;
    margin-top: 100px;
    padding: 100px;
    background-color: black;
    color: white;
}
.header-mobile {
    display: none;
}


@media (max-width: 1000px) {
    .section-principal > div {
        flex-direction: column;
    }
    .section-sobre > div > div {
        flex-direction: column;
    }

    .treatments > div {
        flex-direction: column;
    }

    .header-desktop {
        display: none;
    }

    .section-principal img {
        max-width: 100%;
    }

    .section-sobre > div img {
        width: 100%;
        padding-bottom: 50px;
    }

    .treatments > div img {
        border-radius: 50px 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
        width: 100%;
    }

    .price-div {
        padding: 30px;
    }

    .header-mobile {
        display: block;
    }

    header {
        background-color: #fff;
        padding: 10px 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: relative;
    }
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu {
        display: flex;
        gap: 20px;
    }
    .menu a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
    }
    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
    }
    .close-menu {
        display: none;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        align-items: center;
    }
    .menu.active {
        display: flex;
                padding: 170px 0px;
                gap: 60px;
                top: 0;
    }
    .menu-toggle {
        display: block;
    }
    .close-menu {
        display: block;
    }

    body > header {
        margin-top: 7px;
    }

    .section-sobre > div > div {
        gap: 0px;
    }

    .treatments > div {
        gap: 10px;
    }

    footer {
        padding: 50px 30px;
    }

}



