* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #3B5278;
    --secondary: #D4776A;
    --secondary-light: #E8A99F;
    --terciary: #85c2b6;
    --terciary-light: #EEF6F5;
    --default-black: #555555;
    --default-white: rgba(255, 255, 255, 0.6);

    --timeline-bg-card: rgba(255, 255, 255, 0.05);
    --timeline-border-card: rgba(255, 255, 255, 0.1);
    --timeline-text-color: #ffffff;
    --timeline-text-muted: #b3b3b3;
    --timeline-line-empty: rgba(255, 255, 255, 0.15);
    --timeline-line-active: #ff7a59;
}

html{
    scroll-behavior: smooth;
}

p,
small,
button,
a,
h4,
li,
address {
    font-family: "DM Sans", serif;
    font-weight: 400;
}

a,
p {
    color: var(--default-black);
}


h1,
h2,
h3 {
    font-family: "Cormorant Garamond", sans-serif;
}

body {
    background-color: #FDFCFB;
    min-height: 300vh;
}

.nav-content,
#sobre-mim,
.cards-services,
#FAQ,
#mapa-e-informacoes {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.cta-whatsapp {
    background: var(--secondary);
    color: #FFF;
    padding: 10px 20px;
    border-radius: 30px;
    width: max-content;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0, 0.6);
    z-index: 8;
    display: none;
}

.overlay.visible {
    display: block;
}

.menu-mobile,
.close-menu {
    color: #000;
}

.contrast {
    font-style: italic;
}

.title-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;

    small {
        text-transform: uppercase;
    }

    h2 {
        margin: 1rem 0;
        font-size: 2rem;
        font-weight: 500;
    }
}

.title-content.light {
    small {
        letter-spacing: 1px;
        color: var(--terciary);
    }

    h2 {
        color: #FFFFFF;
    }

    .contrast {
        letter-spacing: 1px;
        color: var(--secondary-light);
    }

    p {
        color: var(--default-white);
    }
}

.title-content.dark {
    small {
        letter-spacing: 1px;
        color: var(--secondary);
    }

    h2 {
        color: var(--primary);
    }

    .contrast {
        color: var(--secondary);
    }

    p {
        color: var(--default-black);
    }
}

.modal{
    background: #FFFFFF;
    border: none;
    padding: 3rem 2rem 2rem;
    z-index: 100;
    max-width: 360px;
    width: 95%;
    position: fixed;
    margin: auto;
    border-radius: 8px;

    .btnClose{
        position: absolute;
        top: 15px; right: 15px;
        font-size: 1.2rem;
        font-family: "DM Sans", serif;
        background: none; border: none;
        cursor: pointer;
        color: #999999;
        font-weight: 600;
    }

    h3, div{
        font-family: "DM Sans", serif
    }

    h3{
        color: #26394C;
        font-size: 1.2rem;
    }

    .name-service{
        color: #464343;
        font-weight: 500;
        margin-top: 6px;
    }

    .line{
        width: 100%;
        height: 1px;
        background-color: rgba(128, 128, 128, .35);
        margin: 1rem 0;
    }

    .time-and-investment{
        display: flex;
        align-items: center;
        gap: 1rem;
        background: #FCF8F7;
        padding: 12px;
        border-radius: 8px;
        margin: 1rem 0;

        .container{
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex-grow: 1;

            p{
                text-transform: uppercase;
                font-size: .9rem;
                color: var(--default-black);
                font-weight: 450;
            }
            .time-session,
            .price{
                color: #26394C;
                font-weight: 600;
            }
        }

        .vertical-line{
            width: 1px;
            height: 40px;
            background: rgba(128, 128, 128, 0.35);
        }

        .time{ text-align: start; }
        .investment{ text-align: end; }
    }

    .cta-whatsapp{
        border-radius: 8px;
        width: 100%;
    }
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

/* Animation */
.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);
}


header {
    overflow: hidden;

    nav {
        width: 100%;
        background: rgba(253, 252, 251, .9);
        backdrop-filter: blur(6px);
        border-bottom: 1px solid rgb(0, 0, 0, .08);
    }

    .nav-content {
        display: flex;
        align-items: center;
        padding: 1.1rem;
        justify-content: space-between;
        gap: 1rem;
    }

    .logo {
        display: flex;
        gap: 10px;
        align-items: center;

        img {
            width: 52px;
        }

        .text-content {
            p {
                font-family: "Cormorant Garamond", sans-serif;
                font-weight: 700;
                font-size: 1.3rem;
                color: var(--primary);
            }

            small {
                color: var(--terciary);
                letter-spacing: 2px;
            }
        }
    }

    .menu-mobile {
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        display: none;
    }

    #navigation,
    #mobile-menu-container {
        display: flex;
        gap: 10px;

        .list-button {
            display: none;
        }

        a {
            padding: 10px;
        }
    }

    #mobile-menu-container {
        z-index: 13;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background: var(--terciary-light);
        padding: 6rem 2rem 3rem;
        height: 100dvh;
        gap: 1rem;
        transform: translateX(300px);
        transition: transform 0.3s ease-in-out;

        .cta-whatsapp {
            display: flex;
        }

        .close-menu {
            position: absolute;
            top: 5%;
            right: 10%;
            display: flex;
            border: none;
            background: none;
        }
    }

    #mobile-menu-container.opened {
        transform: translateX(0px);
    }


    .hero {
        width: 100%;
        min-height: 100vh;
        margin-left: 64px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;

        .hero-content {
            flex-basis: 50%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-right: 2rem;

            small {
                color: var(--terciary);
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            h1 {
                color: var(--primary);
                font-size: clamp(2.5rem, 5vw + 1em, 4rem);
                font-weight: 500;
                line-height: 1.1;
                text-wrap: balance;

                .contrast {
                    color: var(--secondary);
                    font-style: italic;
                }
            }

            p {
                width: 80%;
            }

            .cta-buttons {
                display: flex;
                align-items: center;
                gap: 1rem;

                .view-services {
                    color: #3B5278;
                    padding: 10px 12px;
                    border-radius: 30px;
                    border: 1px solid rgba(59, 82, 120, 0.5);
                }
            }
        }

        .hero-image {
            position: relative;
            max-width: 620px;
            height: 100%;
            flex-basis: 50%;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, #FDFCFB 10%,
                    rgba(253, 252, 251, 0) 40%);
        }
    }
}


main {
    .phases {
        display: flex;
        gap: 1rem;
        width: 100%;
        background-color: #F5F5F4;
        padding: 1rem;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;

        p {
            color: var(--primary);
            text-transform: uppercase;
        }
    }

    .reception {
        position: relative;
        width: 100%;
        min-height: 600px;
        padding: 120px 20px;
        box-sizing: border-box;
        margin: 10rem 0;

        >* {
            position: relative;
            z-index: 3;
        }

        .content {
            .cards {
                max-width: 1200px;
                margin: 3rem auto;

                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
                gap: 1.4rem;

                .card {
                    display: flex;
                    align-items: center;
                    background: rgba(250, 250, 250, .10);
                    backdrop-filter: blur(6px);
                    border-radius: 10px;
                    overflow: hidden;

                    img {
                        width: 92px;
                        height: 100%;
                        aspect-ratio: 9 / 16;
                        object-fit: cover;
                        /* object-position: center right; */
                    }

                    p {
                        color: #FFFFFF;
                        padding: 1rem;
                        line-height: 1.3;
                    }
                }

                .card:nth-child(even) {
                    flex-direction: row-reverse;

                }
            }

            .text {
                text-align: center;

                p {
                    color: var(--default-white);
                    margin: 1rem 1.4rem;
                    line-height: 1.4;
                }


                .cta-whatsapp {
                    margin: 0 auto;
                }
            }
        }
    }

    .reception::before {
        content: "";
        position: absolute;
        top: -20px;
        bottom: -20px;
        left: 0;
        right: 0;
        z-index: 1;

        background-color: #5B7290;
        opacity: 0.3;

        mask-image:
            url("../assets/waves-top.svg"),
            url("../assets/waves-bottom.svg");
        mask-position: top center, bottom center;
        mask-repeat: no-repeat;

        mask-size: 1920px auto, 1920px auto;

        -webkit-mask-image:
            url("../assets/waves-top.svg"),
            url("../assets/waves-bottom.svg");
        -webkit-mask-position: top center, bottom center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 1920px auto, 1920px auto;

        pointer-events: none;
    }

    .reception::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;

        background-image: url("../assets/bg-reception.webp");
        background-repeat: repeat;
        background-position: center;

        mask-image:
            url("../assets/waves-top.svg"),
            linear-gradient(#000, #000),
            url("../assets/waves-bottom.svg");
        mask-position: top center, center, bottom center;
        mask-repeat: no-repeat;
        mask-size: 1920px auto, 100% calc(100% - 80px), 1920px auto;

        -webkit-mask-image:
            url("../assets/waves-top.svg"),
            linear-gradient(#000, #000),
            url("../assets/waves-bottom.svg");
        -webkit-mask-position: top center, center, bottom center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 1920px auto, 100% calc(100% - 80px), 1920px auto;

        pointer-events: none;
    }

    #sobre-mim {
        display: flex;
        align-items: flex-start;
        gap: 5rem;
        margin-bottom: 10rem;

        .image-content {
            position: relative;
            width: 100%;

            .main-img {
                border-radius: 16px;
                max-width: 396px;
                width: 100%;
            }

            .wais-iii {
                position: absolute;
                bottom: -20%;
                right: -60px;
                max-width: 300px;
                width: 100%;
            }
        }

        .content {
            display: flex;
            flex-direction: column;
            gap: 1rem;

            .title-content {
                text-align: left;
                margin: 0 0;
            }

            blockquote {
                border-left: 3px solid var(--secondary);

                p {
                    font-family: "Cormorant Garamond", sans-serif;
                    font-size: 1.4rem;
                    font-weight: 500;
                    font-style: italic;
                    color: var(--primary);
                    padding-left: 1rem;
                }
            }
        }



    }

    #servicos {
        background: var(--terciary-light) url('../assets/bg-services.webp');
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 600px;
        position: relative;
        padding: 3rem 1rem;

        >* {
            position: relative;
            z-index: 3;
        }

        .cards-services {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;

            .service {
                width: 340px;
                overflow: hidden;
                border-radius: 20px;
                background: #FFFFFF;

                .image-container {
                    position: relative;

                    img {
                        width: 100%;
                    }

                    .tag-modality {
                        position: absolute;
                        left: 20px;
                        bottom: 20px;
                        background: #FFF;
                        padding: 4px 12px;
                        border-radius: 8px;
                        display: flex;
                        align-items: center;
                        gap: 6px;
                        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

                        span {
                            font-family: "DM Sans", serif;
                            font-size: 0.8rem;
                            font-weight: 600;
                            color: var(--default-black);
                        }
                    }
                }

                .content {
                    padding: 1.2rem;

                    h3 {
                        font-size: 1.4rem;
                        color: var(--primary);
                        margin-bottom: 1rem;
                        font-weight: 700;
                    }

                    .text-container {
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        position: relative;
                        height: 100px;
                        overflow: hidden;
                        transition: height 0.4s ease-in-out;

                        .block {
                            display: flex;
                            align-items: flex-start;
                            gap: 8px;
                            background-color: #FFF1F2;
                            padding: 1rem;
                            border: 2px solid #FFE4E6;
                            border-radius: 10px;
                            margin: 10px 0;

                            svg {
                                flex-shrink: 0;
                                color: #FF2056;
                            }

                            .emphasis {
                                color: #8B0836;
                                font-size: 0.9rem;
                                font-weight: 600;
                            }
                        }

                        .block.observation,
                        .block.identify {
                            flex-direction: column;
                            background: rgba(240, 253, 250, 0.5);
                            border: 1px solid rgba(11, 79, 74, .2);

                            h4 {
                                font-weight: 800;
                                font-size: 0.9rem;
                                color: rgb(12, 70, 66);
                            }

                            ul {
                                display: flex;
                                flex-direction: column;
                                gap: 10px;
                            }

                            li {
                                color: rgba(0, 95, 90, 0.9);
                                font-size: 0.9rem;
                                font-weight: 500;
                                position: relative;
                            }

                            li::before {
                                content: '●';
                                padding-right: 4px;
                                color: rgb(0, 213, 189);
                            }
                        }

                        .block.identify {
                            background: rgb(248, 250, 252);
                            border: 1px solid rgba(49, 65, 88, .2);

                            h4 {
                                color: rgb(49, 65, 88);
                            }

                            li {
                                color: rgb(69, 85, 108);
                            }

                            li:before {
                                color: rgb(132, 148, 172);
                            }
                        }

                        .modality {
                            display: flex;
                            gap: 8px;
                            align-items: center;

                            svg {
                                color: var(--terciary);
                            }

                            .text {
                                small {
                                    color: var(--default-black);
                                    text-transform: uppercase;
                                    font-size: 0.9rem;
                                }

                                p {
                                    color: #000000;
                                    margin-top: 4px;
                                }
                            }
                        }

                        .see-less,
                        .see-more {
                            color: var(--secondary);
                            font-weight: 600;
                            background: none;
                            border: none;
                            cursor: pointer;
                            font-size: 1.1rem;
                            text-align: start;
                            padding-bottom: 1.4rem;
                        }

                        .see-more {
                            position: absolute;
                            bottom: 0;
                            padding: 10px 0;
                        }
                    }

                    .text-container.expanded {
                        .see-more {
                            display: none;
                        }
                    }

                    .text-container::before {
                        content: '';
                        position: absolute;
                        inset: 0;
                        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFFFFF 50%);
                    }

                    .text-container.expanded::before {
                        background: none;
                        pointer-events: none;
                    }

                    .nextSection {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        color: var(--primary);
                        border-top: 1px solid #edf3f8;
                        padding-top: 1.4rem;
                        font-weight: 500;
                    }

                    .btn-container {
                        margin: 1.4rem 0;

                        display: flex;
                        flex-direction: column;
                        gap: 10px;

                        .values,
                        .cta-whatsapp {
                            width: 100%;
                            padding: 8px;
                            border-radius: 8px;
                        }

                        .values {
                            background: none;
                            border: 1px solid var(--primary);
                            color: var(--primary);
                            font-size: 0.9rem;
                            font-weight: 500;
                            cursor: pointer;
                        }
                    }
                }
            }

            .service:nth-child(4) {
                h3 {
                    height: 60px;
                }
            }
        }
    }

    #servicos::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(238, 246, 245, 0.8);
        z-index: 2;
    }

    #como-funciona {
        position: relative;
        width: 100%;
        min-height: 600px;
        padding: 120px 20px;
        box-sizing: border-box;
        margin: 10rem 0;

        >* {
            position: relative;
            z-index: 3;
        }

        .timeline-container {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 1rem;
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .timeline-line-bg,
        .timeline-line-progress {
            position: absolute;
            left: 1rem;
            width: 4px;
            top: 1.5rem;
            bottom: 1.5rem;
            margin: 0 calc(1.5rem - 2px);
            border-radius: 4px;
        }

        .timeline-line-bg {
            background-color: var(--timeline-line-empty);
            z-index: 1;
        }

        .timeline-line-progress {
            background-color: var(--timeline-line-active);
            z-index: 2;
            height: 0%;
            will-change: height;
            transition: height 0.1s ease-out;
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            position: relative;
            z-index: 3;
            width: 100%;
        }

        .timeline-badge-wrapper {
            width: 3rem;
            min-width: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .timeline-number {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background-color: #24344d;
            border: 2px solid var(--timeline-line-empty);
            color: var(--timeline-text-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .timeline-item.active .timeline-number {
            border-color: var(--timeline-line-active);
            background-color: var(--timeline-line-active);
        }

        .timeline-card {
            background: var(--timeline-bg-card);
            border: 1px solid var(--timeline-border-card);
            border-radius: 12px;
            padding: 1.5rem 2rem;
            flex-grow: 1;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .timeline-card small{
            color: var(--terciary);
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            background-color: rgba(125, 191, 178, .10);
            margin-bottom: 10px;
            display: block;
            width: max-content;
            border-radius: 30px;
            font-size: 0.7rem;
        }

        .timeline-card h3 {
            color: var(--timeline-text-color);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .timeline-card p {
            color: var(--timeline-text-muted);
            font-size: 1rem;
            line-height: 1.6;
        }

        .cta-whatsapp{
            margin: 0 auto;
            padding: 14px 20px;
        }

        @media (max-width: 768px) {
            .timeline-container {
                gap: 2.5rem;
                margin: 2.5rem auto;
            }

            .timeline-badge-wrapper {
                width: 2.2rem;
                min-width: 2.2rem;
            }

            .timeline-line-bg,
            .timeline-line-progress {
                top: 1.1rem;
                bottom: 1.1rem;
                margin: 0 calc(1.1rem - 2px);
            }

            .timeline-number {
                width: 2.2rem;
                height: 2.2rem;
                font-size: 0.95rem;
            }

            .timeline-item {
                gap: 1.2rem;
            }

            .timeline-card {
                padding: 1.2rem;
            }

            .timeline-card h3 {
                font-size: 1.15rem;
            }

            .timeline-card p {
                font-size: 0.9rem;
            }
        }
    }

    #como-funciona::before {
        content: "";
        position: absolute;
        top: -20px;
        bottom: -20px;
        left: 0;
        right: 0;
        z-index: 1;

        background-color: #5B7290;
        opacity: 0.3;

        mask-image:
            url("../assets/waves-top.svg"),
            url("../assets/waves-bottom.svg");
        mask-position: top center, bottom center;
        mask-repeat: no-repeat;

        mask-size: 1920px auto, 1920px auto;

        -webkit-mask-image:
            url("../assets/waves-top.svg"),
            url("../assets/waves-bottom.svg");
        -webkit-mask-position: top center, bottom center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 1920px auto, 1920px auto;

        pointer-events: none;
    }

    #como-funciona::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;

        background: var(--primary);
        background-repeat: repeat;
        background-position: center;

        mask-image:
            url("../assets/waves-top.svg"),
            linear-gradient(#000, #000),
            url("../assets/waves-bottom.svg");
        mask-position: top center, center, bottom center;
        mask-repeat: no-repeat;
        mask-size: 1920px auto, 100% calc(100% - 80px), 1920px auto;

        -webkit-mask-image:
            url("../assets/waves-top.svg"),
            linear-gradient(#000, #000),
            url("../assets/waves-bottom.svg");
        -webkit-mask-position: top center, center, bottom center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: 1920px auto, 100% calc(100% - 80px), 1920px auto;

        pointer-events: none;
    }

    #FAQ {
        .title-content {
            h2 {
                text-wrap: balance;
            }
        }

        .questions {
            margin: 4rem 0;

            .faq-container {
                border-bottom: 1px solid rgba(0, 0, 0, .2);
                margin: 1rem 0;

                .question {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 10px;
                    cursor: pointer;
                    margin-bottom: 1rem;

                    .more {
                        color: var(--terciary);
                        font-size: 1.3rem;
                        font-weight: 800;
                        transition: transform 0.3s ease;
                    }

                    h3 {
                        font-size: 1.3rem;
                        color: var(--primary);
                    }
                }

                .response {
                    display: grid;
                    grid-template-rows: 0fr;
                    transition: grid-template-rows 0.3s ease;

                    p {
                        line-height: 1.3;
                    }

                    .response-content {
                        overflow: hidden;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 1rem;
                        padding: 0;
                        transition: padding 0.3s ease;
                    }
                }
            }

            .faq-container.open {
                .more {
                    transform: rotate(45deg);
                }

                .response {
                    grid-template-rows: 1fr;

                    .response-content {
                        padding: 1rem 0;
                    }
                }
            }
        }
    }

    #depoimentos {
        margin: 6rem 0;
        background-color: #FDF3F2;
        padding: 3rem 1rem;

        .testimonials-slider-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
        }

        .testimonials-container {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 20px 0;
            scrollbar-width: none;
        }

        .testimonials-container::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            flex: 0 0 100%;
            scroll-snap-align: center;
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 280px;
            box-sizing: border-box;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
        }

        .nav-btn {
            background: #ffffff;
            border: 1px solid #eaeaea;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #2b3a4a;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
        }

        .nav-btn:hover {
            background: #e07a5f;
            color: #fff;
            border-color: #e07a5f;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .client-avatar,
        .avatar-fallback {
            width: 32px;
            height: 32px;
            object-fit: cover;
        }

        .avatar-fallback {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
        }

        .client-name {
            color: #1a1a1a;
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
        }

        .testimonial-text {
            color: #555555;
            font-size: 0.925rem;
            line-height: 1.6;
            margin: 0 0 16px 0;
            flex-grow: 1;
        }

        .google-link {
            display: inline-block;
            color: #1a1a1a;
            font-size: 0.875rem;
            font-weight: 700;
            text-decoration: underline;
            margin-bottom: 16px;
        }

        .stars-container {
            display: flex;
            gap: 4px;
            margin-top: auto;
        }

        .star-icon {
            width: 21px;
            height: 20px;
            display: inline-block;
            background-color: #FFBB29;
            clip-path: path('M10.8597 0.479681C10.7096 0.186746 10.4057 0 10.0761 0C9.74656 0 9.44264 0.186746 9.29251 0.479681L6.59751 5.75983L0.742471 6.6899C0.416581 6.74116 0.145617 6.97185 0.0430896 7.28675C-0.0594376 7.60166 0.0247813 7.94586 0.255467 8.1802L4.44444 12.3728L3.52169 18.2279C3.47043 18.5538 3.60591 18.8833 3.87321 19.0774C4.14052 19.2714 4.49204 19.3007 4.78863 19.1506L10.0761 16.4629L15.3599 19.1506C15.6529 19.3007 16.008 19.2714 16.2753 19.0774C16.5426 18.8833 16.6781 18.5574 16.6269 18.2279L15.7005 12.3728L19.8894 8.1802C20.1238 7.94586 20.2043 7.60166 20.1018 7.28675C19.9993 6.97185 19.732 6.74116 19.4024 6.6899L13.551 5.75983L10.8597 0.479681Z');
        }

        @media (min-width: 768px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 12px);
            }
        }

        @media (min-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(33.333% - 16px);
                scroll-snap-align: start;
            }
            .slider-controls {
                display: none;
            }
        }
    }

    #mapa-e-informacoes {

        .content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin: 3rem 0;

            .text-container {
                display: flex;
                flex-direction: column;
                gap: 2rem;
                align-items: flex-start;

                .text {
                    display: flex;
                    align-items: center;
                    gap: 1rem;

                    .icon {
                        padding: 8px;
                        background-color: var(--terciary-light);
                        border-radius: 8px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                    .info-container {
                        p {
                            text-transform: uppercase;
                            letter-spacing: 1px;
                            margin-bottom: 4px;
                        }

                        .info {
                            color: var(--primary);
                            font-weight: 600;
                            font-style: normal;
                        }
                    }
                }

                div {
                    font-family: "DM Sans", serif;
                }
            }

            .google-maps {
                iframe {
                    border-radius: 20px;
                    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
                }
            }
        }

        .cta-whatsapp {
            margin: 0 auto;
        }
    }

    #cta-final {
        background: #FFF url('../assets/bg-end-cta-with-blur.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        min-height: 100vh;
        position: relative;
        margin: 6rem 0 0;

        display: flex;
        align-items: center;
        justify-content: center;

        >* {
            position: relative;
            z-index: 3;
        }

        .title-content {
            padding: 0 1rem;

            h2 {
                font-size: clamp(2.4rem, 2rem + 1.4vw, 3.5rem);
                font-weight: 600;
            }

            .cta-whatsapp {
                margin: 1rem auto 0;
            }
        }
    }

    #cta-final::before {
        content: '';
        position: absolute;
        z-index: 2;
        inset: 0;
        background: rgba(59, 82, 120, 0.9);
    }
}

footer {
    background: #1E2B42;
    padding: 2rem;
    text-align: center;

    h3,
    .copy {
        color: var(--default-white);
    }

    h3 {
        font-weight: 500;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .copy {
        font-size: .8rem;
    }
}


/* Responsive */
@media (max-width: 1080px) {
    main {
        #sobre-mim {
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 2rem;

            .image-content {

                .main-img {
                    max-width: 100%;
                    width: 100%;
                }

                .wais-iii {
                    display: none;
                }
            }


        }
    }
}

@media (max-width: 960px) {
    header {
        nav {

            #navigation,
            .cta-whatsapp.desktop {
                display: none;
            }

            .nav-content {
                .logo {
                    img {
                        width: 42px;
                    }

                    .text-content {
                        p {
                            font-size: 1.2rem;
                        }

                        small {
                            font-size: .7rem;
                        }
                    }
                }
            }

            .menu-mobile {
                display: flex;
            }
        }

        .hero {
            width: 100%;
            min-height: 100vh;
            flex-direction: column-reverse;
            margin-left: 0;

            .hero-content {
                text-align: center;
                justify-content: center;
                align-items: center;
                padding: 0 1rem;
                margin-top: -3rem;
                position: relative;
                z-index: 2;

                small {
                    font-size: 0.7rem;
                    color: #5a9b8e;
                }

                p {
                    width: 100%;
                }

                .cta-buttons {
                    flex-direction: column;
                    width: 80%;

                    a {
                        width: 100%;
                    }
                }
            }

            .hero-image {
                position: relative;
                width: 100%;
                height: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                }
            }

            .hero-image::before {
                background: linear-gradient(to top, #FDFCFB,
                        rgba(253, 252, 251, 0) 70%);

            }
        }
    }

    main {
        .phases {
            display: none;
        }

        .content {
            .cards {
                .card.card:nth-child(even) {
                    flex-direction: row;
                }
            }
        }

        #servicos {
            .cards-services {

                .service:nth-child(4) {
                    h3 {
                        height: auto;
                    }
                }
            }
        }

        #mapa-e-informacoes {
            .content {
                flex-direction: column;
                align-items: flex-start;
                gap: 2rem;
            }

            .google-maps {
                width: 100%;

                iframe {
                    width: 100%;
                    height: 100%;
                    aspect-ratio: 1/1;
                }
            }
        }
    }
}