@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../assets/fonts/CormorantGaramond-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../assets/fonts/CormorantGaramond-Italic-VariableFont_wght.woff2') format('woff2');
    font-weight: 300 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../assets/fonts/Lato-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../assets/fonts/Lato-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --success: #15803D;
    --shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    --surface: #AD2030;
    --secondary: #EAB04E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: #FAFAF9;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.sr-only{
    position: absolute;
    width: 1px; height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4px;
}

.contrast {
    color: var(--surface);
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5em;

    h2 {
        font-family: "Cormorant Garamond", sans-serif;
        font-size: clamp(2.2em, 3.5vw, 3em);
    }

    p {
        color: #57534E;
    }
}

.tag {
    color: #7A5010;
    font-weight: 600;
    background: #FDF5E6;
    padding: 8px 12px;
    border: 1px solid #EAB04E;
    width: max-content;
    border-radius: 30px;
}


.whatsapp-fixed-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-fixed-btn:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60%;
    height: 60%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* Animations */
.fade-up {
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes letterAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealImage {
    from {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes spin {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.slide-in-skew {
    opacity: 0;
    transform: translate(-50px, 50px) scale(0.9) skewY(5deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-skew.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) skewY(0deg);
}


/* Header */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 4%;
    gap: 1em;
    background: #FFF;
    z-index: 999;
}

#navbar.shadow {
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;

    span {
        font-family: "Cormorant Garamond";
        font-size: 1.4em;
        font-weight: 700;
    }
}

.btn-mobile {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 6;

    .close-menu {
        position: absolute;
        top: 0;
        right: 0;
        display: none;
    }

    .open-menu {
        display: none;
    }

}

#navigation {
    display: flex;
    gap: 1.4em;
    position: relative;
    z-index: 5;
    transition: 0.3s ease-out;

    li {
        display: flex;
        align-items: center;

        a {
            font-size: 1em;
            color: #57534E;
            font-weight: 500;
            transition: 0.3s ease;
        }

        a:hover {
            color: rgb(21, 128, 61);
        }
    }

    .schedule {
        display: inline-block;
        background: var(--success);
        color: #FFF;
        padding: 10px 16px;
        border-radius: 30px;
        transition: transform 0.3s ease;
    }

    .schedule:hover {
        color: #FFF;
        transform: translateY(-4px) scale(1.05);
    }
}

/* Hero */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    white-space: nowrap;
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
}

.hero-title.is-visible .letter {
    animation: letterAppear 0.4s ease forwards;
}

.hero-image {
    opacity: 0;
    animation: revealImage 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
    will-change: transform, opacity;

    img {
        width: 100%;
    }
}

.hero-content {
    padding: 0 4%;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    position: relative;
    z-index: 3;

    h1 {
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: clamp(3em, 5vw, 4.5em);
        font-weight: 550;
        line-height: 1;
    }

    .contrast {
        font-style: italic;
        color: #C9892A;
    }

    p {
        color: #57534E;
        font-size: 1.1em;
        line-height: 1.5;
    }

    small {
        text-transform: uppercase;
    }
}

.cta-buttons {
    display: flex;
    gap: 1em;
    align-items: center;

    .schedule {
        background: var(--success);
        color: #FFF;
        padding: 12px;
        border-radius: 30px;
        transition: transform 0.3s ease;
    }

    .schedule:hover {
        transform: translateY(-4px) scale(1.05);
    }

    .see-treatments-wrapper {
        position: relative;
    }

    .see-treatments-wrapper::before {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 1px;
        background: rgb(87, 83, 78);
        margin-top: 10px;
        transition: all 0.3s ease;
    }

    .see-treatments-wrapper:hover::before {
        width: 88%;
    }

    .see-treatments {
        color: #57534E;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

}


/* Main */
#benefits {
    background: #FFF;
    padding: 6em 0;

    .container {
        display: flex;
        align-items: center;
        gap: 2em;
    }

    .benefit-image {
        border-radius: 50px;
        position: relative;
        display: block;
        z-index: 1;

        img {
            width: 100%;
            border-radius: 50px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
    }

    .benefit-image::before {
        content: "";
        position: absolute;
        top: 10px;
        left: -10px;
        width: 100%;
        height: 100%;
        border: 2px solid rgba(202, 138, 4, .5);
        border-radius: 50px;
        z-index: -1;
    }

    .text-content {
        width: 50%;

        p {
            line-height: 1.4;
        }
    }

    .list-benefits {
        display: flex;
        flex-direction: column;
        gap: 1em;

        li {
            display: flex;
            align-items: center;
            gap: 12px;

            span {
                color: rgb(68, 64, 60);
                font-weight: 500;
            }
        }
    }
}

#treatments {
    padding: 5em 0;

    .treatments-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1em;

        .small {
            text-transform: uppercase;
            color: var(--surface);
            font-weight: 600;
            font-size: 0.9em;
        }

        h2 {
            font-size: 3em;
            font-weight: 500;
            font-family: "Cormorant Garamond", sans-serif;
        }

        p {
            color: #57534E;
            font-size: 1.1em;
            width: 90%;
            margin: 0 auto;
        }
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 20px;
        margin-top: 2em;
        align-items: start;

        .card {
            width: 100%;
            min-height: 700px;
            background: #FFF;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            display: flex;
            flex-direction: column;
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;

            .image-card {
                img {
                    width: 100%;
                    aspect-ratio: 3 / 3;
                    object-fit: cover;
                }
            }

            .time {
                display: flex;
                align-items: center;
                gap: 6px;
                background: #FFF;
                padding: 6px 8px;
                border-radius: 30px;
                position: absolute;
                top: 1rem;
                left: 5%;

                img {
                    width: 18px;
                }

                span {
                    color: #454545;
                    font-size: 0.8em;
                    font-weight: 600;
                }
            }

            .line {
                width: 15%;
                height: 1.80px;
                background: #FACC15;
                transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
            }

            .price-container {

                small {
                    font-size: 0.7rem;
                    color: #B09060;
                }

                .price {
                    margin-top: 3px;
                    font-size: 1.5rem;
                    color: #7D4E10;
                    font-weight: 600;
                }
            }

            .text-card {
                display: flex;
                flex-direction: column;
                gap: 1em;
                padding: 20px;
                flex-grow: 1;

                h3 {
                    font-family: "Cormorant Garamond", sans-serif;
                    font-weight: 800;
                    font-size: 1.5em;
                }

                .description {
                    color: #57534E;
                    line-height: 1.3;
                    height: 80px;
                    overflow: hidden;
                    position: relative;
                    transition: height 0.4s ease-in-out;

                    .benefits {
                        border: 1px solid rgba(87, 83, 78, 0.4);
                        padding: 10px;
                        margin: 1rem 0;
                        border-radius: 12px;

                        .title-benefit {
                            margin-bottom: 10px;
                            color: #000;
                            font-weight: 600;
                        }

                        .benefit {
                            display: flex;
                            align-items: center;
                            gap: 4px;
                            margin-bottom: 8px;
                        }
                    }

                    .price {
                        margin: 8px 0;

                        .value {
                            color: #292929;
                            font-size: 1.1rem;
                            font-weight: 600;
                        }
                    }
                }

                .description::before {
                    content: '';
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(to bottom, rgba(255, 255, 255, 0),
                            #FFFFFF);
                }

                .see-more {
                    color: var(--surface);
                    font-size: 1rem;
                    font-weight: 600;
                    background: none;
                    border: none;
                    cursor: pointer;
                    text-align: left;
                    margin-top: auto;
                }

                .cta-reserve {
                    display: inline-block;
                    /* border: 1px solid #E7E5E4; */
                    /* color: #57534E; */
                    border: 1px solid #15803D;
                    color: #15803D;
                    padding: 10px;
                    text-align: center;
                    font-weight: 600;
                    border-radius: 8px;
                    transition: background 0.3s ease;
                }

                .cta-reserve:hover {
                    color: #FFF;
                    background: #15803D;
                }
            }
        }

        .card.active .description::before {
            background: none;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .card:hover .line {
            width: 100%;
        }

        .card:nth-child(2) {
            .time {
                left: auto;
                right: 5%;
            }
        }
    }

    #domicile-two {
        padding-top: 3em;
        scroll-margin-top: 80px;
    }

    .cards:last-child .card:nth-child(2) {
        .time {
            right: auto;
            left: 15px;
        }
    }

}

#plains {
    margin: 2rem 0 0;

    .plains-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;

        .small {
            text-transform: uppercase;
            color: var(--success);
            font-weight: 600;
            font-size: 0.9em;
        }

        h2 {
            font-size: 3em;
            font-weight: 500;
            font-family: "Cormorant Garamond", sans-serif;
        }

        p {
            color: #57534E;
            font-size: 1.1em;
            width: 90%;
            margin: 0 auto;
        }
    }

    .badge {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2rem auto 3rem;
        background: #FFF;
        padding: 8px;
        width: 280px;
        border-radius: 100px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

        button {
            flex-basis: 50%;
            text-align: center;
            justify-content: center;
            padding: 10px;
            border-radius: 100px;
            cursor: pointer;
            color: #656565;
            border: none;
            background: none;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
        }

        button.active {
            background: var(--surface);
            color: #FFF;
        }
    }

    .plain {
        padding: 0 1rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(120px);
        transition: all 0.8s ease;

        .all-inclusive {
            background: #FFFFFF;
            border: 1px solid #B5B5B5;
            padding: 20px;
            border-radius: 20px;

            .title {
                text-transform: uppercase;
                color: #656565;
                margin-bottom: 20px;
            }

            .tags {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;

                .tag {
                    font-weight: 500;
                }
            }
        }

        .cards-plain {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 3rem 0;

            .card-plain {
                max-width: 380px;
                width: 100%;
                position: relative;
                border-radius: 20px;
                padding: 20px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                border: 1px solid #C5C3C3;
                overflow: hidden;
                align-self: stretch;
                box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
                transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;

                >* {
                    position: relative;
                    z-index: 3;
                }

                .icon {
                    font-size: 2rem;
                }

                h4 {
                    font-family: "Cormorant Garamond", sans-serif;
                    font-size: 2rem;
                }

                .desc {
                    font-weight: 300;
                    line-height: 1.3;
                }

                .line {
                    width: 30px;
                    height: 2px;
                    background: #EAB04E;
                }

                .price {
                    color: #847C7C;
                    font-size: 1.1rem;

                    .value {
                        color: #000;
                        font-size: 2rem;
                        font-weight: 500;
                    }
                }

                small {
                    color: #5e5858;
                    font-weight: 600;
                }

                .list {
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                    margin-bottom: 1rem;

                    li {
                        display: flex;
                        align-items: center;
                        gap: 8px;

                        svg {
                            margin-top: 3px;
                            width: 8px;
                            fill: var(--secondary);
                        }
                    }
                }

                .economy {
                    color: var(--success);
                    font-weight: 600;
                    width: max-content;
                    background: #EAF3DE;
                    padding: 8px 14px;
                    border-radius: 12px;
                    border: 1px solid #e6ebe0;
                    margin: 1rem 0;
                    margin-top: auto;
                }

                .cta-whatsapp {
                    display: block;
                    padding: 10px;
                    border: 2px solid var(--success);
                    width: 100%;
                    text-align: center;
                    border-radius: 12px;
                    color: var(--success);
                    font-size: 1rem;
                    font-weight: 600;
                    transition: background 0.3s ease, color 0.3s ease;
                }

                .cta-whatsapp:hover {
                    background: var(--success);
                    color: #FFFFFF;
                }

                .justify {
                    font-size: .7rem;
                    text-align: center;
                    line-height: 1.3;
                    font-weight: 400;
                    color: #9b9898;
                }

            }

            .card-plain:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            }

            .card-plain::before {
                content: '';
                position: absolute;
                inset: 0;
                background: rgba(255, 255, 255, 0.90);
            }

            .card-plain:nth-child(2) {
                border: 2px solid var(--success);
            }

            .card-plain {
                background-repeat: no-repeat;
                background-size: cover;
            }
        }

        .view-other-service {
            background: var(--success);
            border: none;
            color: #FFFFFF;
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 1rem;
            margin: 2rem auto;
            cursor: pointer;
            width: max-content
        }
    }

    .plain.active {
        max-height: 3000px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    #plain-space {
        .cards-plain {
            .card-plain:nth-child(1) {
                background: #FFFFFF url('../assets/bem-cuidar.webp');
                background-position: right;
            }

            .card-plain:nth-child(2) {
                background: #FFFFFF url('../assets/leveza-continua.webp');
                background-position: center;
            }

            .card-plain:nth-child(3) {
                background: #FFFFFF url('../assets/presenca-total.webp');
                background-position: center;
            }
        }
    }

    #plain-home {
        .card-plain {
            background: #FFFFFF url('../assets/plano-domiciliar.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .card-plain::before {
            background: rgba(255, 255, 255, 0.95);
        }
    }
}

#testimonials {
    padding: 4em 4%;
    position: relative;
    background-color: transparent;

    .testimonials-text-container {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin-bottom: 3em;

        h2 {
            font-size: 2.2em;
            font-size: 3em;
            font-weight: 500;
            font-family: "Cormorant Garamond", sans-serif;
        }

        .overall-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #FFF;
            padding: 8px;
            border: 1px solid #E7E5E4;
            border-radius: 30px;
            max-width: 400px;
            gap: 10px;
            margin: 0 auto;

            p {
                font-weight: 600;
                font-size: 0.9em;
            }

            span {
                color: #A8A29E;
                font-size: 0.8em;
            }

            .reviews {
                display: flex;
                align-items: center;
                gap: 1px;
            }
        }
    }

    .swiper-container-inner {
        width: 100%;
        overflow: visible;
    }

    .mySwiper {
        width: 100%;
        overflow: hidden;
        padding: 20px 0 60px 0;
    }

    .testimonial-card {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5em;
        background: #FFF;
        padding: 25px;
        border-radius: 15px;
        box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
        margin-bottom: 20px;

        .comment {
            color: #57534E;
            line-height: 1.4;

            a {
                display: block;
                color: #57534E;
                font-weight: 600;
            }
        }

        .client {
            display: flex;
            align-items: center;
            gap: 10px;

            .photo_client {
                width: 38px;
                height: 38px;
                display: flex;
                justify-content: center;
                align-items: center;
                border: 2px solid #f8f3f3;
                border-radius: 50%;

                img {
                    width: 100%;
                }
            }

            .name-client {
                p {
                    font-size: 0.9em;
                }

                p:first-child {
                    font-weight: 600;
                }

                p:last-child {
                    color: #A8A29E;
                    font-size: 0.8em;
                    margin-top: 2px;
                }
            }
        }
    }

    .swiper-pagination {
        bottom: 10px !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #D6D3D1;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: var(--secondary) !important;
        width: 25px;
        border-radius: 5px;
    }
}

#about-us {
    width: 100%;
    height: 100%;
    padding: 5em 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
    position: relative;
    z-index: 2;
    overflow: hidden;

    .about-us-text-container {
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin-bottom: 3em;
        width: 50%;
        color: #FFF;
        position: relative;

        h2 {
            font-size: 3em;
            font-weight: 500;
            font-family: "Cormorant Garamond", sans-serif;
        }

        .small {
            color: var(--success);
            text-transform: uppercase;
            font-size: 0.9em;
            font-weight: 600;
        }

        .contrast {
            color: #d8283c;
        }
    }

    .description {
        display: flex;
        flex-direction: column;
        gap: 1.5em;
        line-height: 1.7;

        p {
            font-size: 1.1em;
            font-weight: 500;
        }

        .cta-whatsapp {
            padding: 8px;
            border: 1px solid #FFF;
            border-radius: 30px;
            width: 160px;
            text-align: center;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .cta-whatsapp:hover {
            background: rgb(173, 255, 47);
            border: 1px solid rgb(173, 255, 47);
            color: #000;
        }
    }

    .professional-image {
        img {
            width: 100%;
        }
    }

}

#about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('../assets/about-us-background.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -2;
}

#about-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

#gallery-photos {
    padding: 5em 4%;

    .photos-text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin-bottom: 3em;

        .small {
            text-transform: uppercase;
            color: var(--success);
            font-weight: 600;
            font-size: 1em;
        }

        h2 {
            font-size: 3em;
            font-weight: 500;
            font-family: "Cormorant Garamond", sans-serif;
        }

        p {
            color: #57534E;
            font-size: 1.1em;
        }
    }

    .carousel {
        margin: 3rem 0 0;
        padding-left: 1rem;
        overflow: hidden;
        display: flex;
        gap: 1rem;
        align-items: center;
        position: relative;

        .carousel-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: spin 20s infinite linear;
            transform: translate(calc(-100% - 1rem));
        }

        .container-img-carousel {
            img {
                border-radius: 12px;
            }
        }
    }

    .carousel::before {
        content: '';
        position: absolute;
        inset: 0;

        background: linear-gradient(to right, #FAFAF9 0%, rgba(248, 244, 244, 0) 10%, rgba(248, 244, 244, 0) 90%, #FAFAF9 100%);
        z-index: 4;
    }

}

#faq {
    padding: 5em 4%;
    background-color: #FFFFFF;
}

#faq .faq-text-content {
    text-align: center;
    margin-bottom: 3em;
}

#faq .faq-text-content h2 {
    font-size: 3em;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 500;
}

#faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#faq details {
    background: #FFF;
    border: 1px solid #E7E5E4;
    border-radius: 8px;
}

#faq summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 18px 25px;
    font-weight: 600;
    color: #1C1917;
    cursor: pointer;
    user-select: none;
    line-height: 1.3;
}

#faq summary::-webkit-details-marker,
#faq summary::marker {
    display: none;
}

#faq .view-service {
    color: var(--success);
    font-weight: 600;
}

#faq details[open] {
    border-color: #6E5759;
}

#faq details[open] summary {
    color: #6E5759;
}

#faq .faq-icon {
    width: 14px;
    height: 14px;
    fill: #A8A29E;
}

#faq details[open] .faq-icon {
    transform: rotate(180deg);
    fill: #2D5A27;
}

#faq p {
    padding: 0 25px 20px;
    color: #57534E;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Footer */
#main-footer {
    background-color: #1C1917;
    color: #A8A29E;
    padding: 5em 4% 2em;
    font-family: sans-serif;

    a {
        color: #A8A29E;
    }

    a:hover {
        color: #FFFF;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3em;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2em;
    color: #FFF;
    margin-bottom: 0.8em;
}

.footer-column h4 {
    color: #FFF;
    font-size: 1.2em;
    margin-bottom: 1.5em;
    font-weight: 500;
}

.footer-column p {
    line-height: 1.6;
    font-size: 0.95em;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5em;
}

.social-links a {
    color: #A8A29E;
    background: rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: #2D5A27;
    color: #FFF;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2em;
    font-size: 0.9em;
}

.contact-list img {
    filter: brightness(0.7);
}

.hours-table {
    width: 100%;
    font-size: 0.9em;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table .time {
    text-align: right;
    color: #FFF;
}

.hours-table .time-closed {
    text-align: right;
    color: #57534E;
}

.map-box {
    border-radius: 12px;
    overflow: hidden;
    filter: grayscale(0.5);
}

.footer-bottom {
    max-width: 1200px;
    margin: 4em auto 0;
    padding-top: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
    font-size: 0.8em;
}

.footer-bottom p:last-child {
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    #faq .faq-text-content h2 {
        font-size: 2.2em;
    }

    #faq summary {
        padding: 15px 20px;
        font-size: 0.95em;
    }

    #faq p {
        padding: 0 20px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 890px) {
    #navbar {
        .open-menu {
            display: flex;
        }
    }

    #navigation {
        flex-direction: column;
        height: 100dvh;
        position: fixed;
        right: -300px;
        top: 0;
        width: 260px;
        background: #FFF;
        padding: 80px 40px;
        gap: 1.2em;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);

        li {
            border-bottom: 1px solid #eeeaea;
            padding-bottom: 1.5em;
        }

        li:last-child {
            margin-top: 1em;
            border-bottom: none;
        }
    }

    #navigation.active {
        display: flex;
        right: 0px;
    }

    .hero {
        width: 100%;
        background-image: url('../assets/hero-liane.webp');
        min-height: 100vh;
        background-size: cover;
        background-position: right;
        position: relative;
        z-index: 1;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #FFF;
        z-index: 2;
        opacity: 0.6;
    }

    .hero-image {
        display: none;
    }

    .hero-content {
        width: 100%;
        justify-content: center;
        align-items: center;

        h1,
        p {
            text-align: center;
        }
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    #benefits {
        .container {
            width: 90%;
            flex-direction: column;

            .text-content {
                width: 100%;
            }
        }

        .benefit-image {
            width: 100%;
        }
    }


    #about-us {
        flex-direction: column-reverse;

        .about-us-text-container {
            width: 100%;
        }
    }
}


@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding-top: 80px;
    }

    .hero-image {
        img {
            height: 120vh;
        }
    }
}