@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #080808;
    --secondary-color: #ececec;
    --contrast-color: #FF9C03;
    --light-contrast-color: #ffa51f;
    --text-color: #333333;
    --whatsappColor: #189d0e;
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: montserrat;
}

a {
    text-decoration: none;
}

body {
    background-color: var(--primary-color);
}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 80px;
    padding: 10px 20px;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    top: 0;
    z-index: 10;

    #logo {
        height: 50%;

        img {
            height: 100%;
        }
    }

    nav {
        gap: 10px;
        max-width: 1200px;

        display: flex;

        .navOp {
            padding: 5px 10px;
            border-radius: 999px;
            color: var(--secondary-color);
            display: none;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease all;

            &:hover {
                background-color: var(--contrast-color);
                color: var(--primary-color);
                font-weight: 500;
            }
        }


        #whatsapp {
            border: 2px solid var(--whatsappColor);
            font-weight: 500;
            

            &:hover {
                background-color: var(--whatsappColor);
            }
        }

        #call {
            border: 2px solid var(--contrast-color);
            font-weight: 500;
            display: flex;
        }
    }
}

.cta {
    flex: 1;
    gap: 5px;
    height: 40px;
    display: flex;
    font-weight: 600;
    align-items: center;
    border-radius: 999px;
    justify-content: center;
    color: var(--primary-color);
    width: clamp(50px, 100%, 400px);
    background-color: var(--contrast-color);
    transition: 0.2s ease;

    .icon {
        height: 20px;
    }

    &.loc {
        background: url('images/maps.webp');

        .icon {
            height: 25px;
            fill: rgb(41, 96, 248);
        }
    }

    &:hover {
        opacity: 80%;
    }
}

main {
    top: 79px;
    position: relative;
}

#hero {
    display: flex;
    min-height: 100dvh;
    background: var(--primary-color);
    justify-content: center;
    align-items: center;


    .content {
        display: flex;
        width: clamp(400px, 80%, 1200px);
        justify-content: center;
        align-items: center;
        position: relative;
        flex-direction: column;

        img {
            width: clamp(200px, 30%, 400px)
        }

        .texts {
            z-index: 1;
            text-align: center;
            width: 100%;

            h2 {
                font-size: 18px;
                color: var(--secondary-color);
                font-weight: 400;
            }

            h1 {
                font-size: 35px;
                color: var(--contrast-color);
            }

            h3 {
                font-size: 20px;
                color: var(--secondary-color);
                font-weight: 500;
                padding: 5px 2px;
                border-top: 1px solid var(--light-contrast-color);
                border-bottom: 1px solid var(--light-contrast-color);
                text-shadow: 0px 0px 2px var(--contrast-color);
            }

            #ctaHero {
                margin: 20px 0px;
                display: flex;
                width: 100%;
                gap: 20px;
            }
        }
    }
}

.title {
    color: var(--contrast-color);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 4px;
    text-shadow: 0px 0px 70px var(--light-contrast-color);
}

.subtitle {
    color: var(--secondary-color);
    font-size: 30px;
}

.description {
    color: #a0a0a0;
    font-size: 17px;
}

#services {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 100%;
    padding: 20px 0px;

    .content {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 5px;

        .title {
            color: var(--contrast-color);
            text-transform: uppercase;
            font-size: 15px;
            letter-spacing: 4px;
            text-shadow: 0px 0px 70px var(--light-contrast-color);
        }

        .subtitle {
            color: var(--secondary-color);
            font-size: 30px;
        }

        .cardsContainer {
            &.offer {
                display: grid;
                grid-template-rows: repeat(6, 1fr);
                gap: 20px;
                margin: 20px 0px;

                .card {
                    padding: 25px 15px;
                    border-radius: 20px;
                    border: 1px solid color-mix(in oklab, white 10%, transparent);
                    background: color-mix(in oklab, white 3%, transparent);
                    display: flex;
                    gap: 10px;
                    flex-direction: column;
                    position: relative;
                    transition: 0.3s ease all;

                    .marker {
                        height: 8px;
                        width: clamp(20px, 20%, 60px);
                        border-radius: 999px;
                        position: relative;
                        background-color: var(--light-contrast-color);
                    }

                    .description {
                        color: var(--secondary-color);
                        font-size: 18px;
                        font-weight: 500;
                    }

                    &:hover {
                        transform: translateY(-5px);
                    }
                }
            }

            &.services {
                text-align: center;
                grid-template-rows: repeat(3, 1fr);

                .card {
                    padding: 20px 10px;
                    border-radius: 20px;
                    border: 1px solid #ff9a0331;
                    color: var(--secondary-color);
                    background: linear-gradient(to bottom, #ff9a0311, #080808da, #080808);
                    margin: 15px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                .title {
                    color: var(--secondary-color);
                    margin: 10px 0px;
                    font-weight: 800;

                }

                .desc {
                    padding: 0px 10%;
                }

                .whatsapp {
                    color: var(--secondary-color);
                    width: max-content;
                    padding: 10px 15px;
                    margin: 10px;
                    font-weight: 500;
                    border-radius: 999px;
                    background-color: var(--whatsappColor);
                    transition: 0.2s ease all;

                    &:hover {
                        opacity: 0.8;
                    }
                }
            }
        }
    }
}

#trabalho {
    width: 100%;
    display: flex;
    justify-content: center;

    .title {
        width: 100%;
    }

    .subtitle {
        width: 100%;
    }

    .description {
        width: 100%;
    }

    .info a {
        color: inherit;
        text-decoration: none;
    }

    .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: clamp(200px, 80%, 1200px);
        align-items: center;

        .imageSlider {
            --radius: 24px;
            --shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
            --overlay: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .05));

            width: clamp(260px, 100%, 430px);
            position: relative;
            margin: 20px 0;
            user-select: none;
        }

        .sliderViewport {
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .sliderTrack {
            display: flex;
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }

        .slide {
            min-width: 100%;
            position: relative;
            aspect-ratio: 9 / 16;
            overflow: hidden;
            background: #111;
        }

        .slide img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .sliderBtn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            padding: 0;

            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            cursor: pointer;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 30px;
            color: #fff;
            background: rgba(0, 0, 0, 0.42);
            backdrop-filter: blur(6px);
            transition: 0.2s ease;
        }

        .sliderBtn:hover {
            background: rgba(0, 0, 0, 0.62);
            transform: translateY(-50%) scale(1.06);
        }

        .sliderBtn:disabled {
            opacity: 0.35;
            cursor: not-allowed;
            transform: translateY(-50%) scale(1);
        }

        .sliderBtn.prev {
            left: 12px;
        }

        .sliderBtn.next {
            right: 12px;
        }

        .sliderDots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
        }

        .sliderDots button {
            width: 10px;
            height: 10px;
            border: none;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: 0.25s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .sliderDots button.active {
            width: 28px;
            background: #111;
        }

        @media (max-width: 480px) {
            .sliderBtn {
                width: 40px;
                height: 40px;
                font-size: 26px;
            }

            .slide .desc {
                font-size: 0.88rem;
                padding: 14px;
            }
        }
    }
}

.whatsappWarning {
    padding: 20px;
    overflow: hidden;
    border-radius: 20px;
    border: color-mix(in srgb, oklch(72.3% 0.219 149.579) 20%, transparent) 1px solid;
    width: clamp(200px, 100%, 800px);
    background: linear-gradient(oklch(72.887% 0.21192 147.841 / 0.07), #0a410600);
    display: flex;
    flex-direction: column;
    align-items: center;

    .title {
        margin: 0;
        font-size: 11px;
        font-weight: 600;
        color: color-mix(in oklab, oklch(87.1% 0.15 154.449) 80%, transparent);
        letter-spacing: 2px;
        width: 100%;
        text-shadow: 0px 0px 30px #08080881;
    }

    .subtitle {
        margin: 10px 0px;
        width: 100%;
        font-size: 25px;
        font-weight: 800;
    }

    .text {
        width: 100%;
        font-size: 13px;
        color: color-mix(in oklab, white 75%, transparent);
    }

    .msg {
        padding: 10px;
        width: clamp(100px, 100%, 1200px);
        border: 1px solid color-mix(in srgb, #fff 10%, transparent);
        margin: 15px;
        background-color: color-mix(in oklab, var(--color-black) 30%, transparent);
        border-radius: 10px;

        .warning {
            color: #999b9a;
            font-weight: 400;
            font-size: 11px;
            margin: 0px 0px 5px 0px;
        }

        .message {
            color: color-mix(in oklab, white 90%, transparent);
            font-size: 14px;
        }

    }

    .cta {
        font-size: 15px;
        font-weight: 700;
        max-height: 40px;
        padding: 20px 0px;
        width: clamp(200px, 100%, 400px);
        background: oklch(72.3% 0.219 149.579);
    }

}

.text {
    font-size: 13px;
    color: color-mix(in oklab, white 75%, transparent);
}

.locWarning {
    padding: 20px;
    border-radius: 20px;
    width: clamp(200px, 100%, 800px);
    background: color-mix(in oklab, white 3%, transparent);
    border: 1px solid color-mix(in oklab, white 10%, transparent);
    display: flex;
    align-items: center;
    flex-direction: column;


    .text {
        font-size: 13px;
        color: color-mix(in oklab, white 75%, transparent);
    }

    .loc {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
        margin: 20px 0px;

        .info {
            background-color: color-mix(in oklab, black 30%, transparent);
            color: color-mix(in oklab, white 85%, transparent) !important;
            padding: 10px;
            font-size: 12px;
            border-radius: 15px;
            border: color-mix(in srgb, #fff 10%, transparent) 1px solid;
        }
    }

    .locButton {
        color: var(--primary-color);
        padding: 10px 40px;
        border-radius: 100px;
        font-weight: 700;
        width: fit-content;
        background-color: var(--secondary-color);
        transition: 0.2 ease all;

        &:hover {
            opacity: 0.8;
        }
    }
}

.loc.whats {
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;

    .content {
        width: clamp(300px, 90%, 1000px);
        ;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .title {
        font-size: 14px;
        width: 100%;
    }

    .subtitle {
        font-size: 25px;
        width: 100%;
        margin: 10px 0px;
    }

}

.feedbacks {
    width: 100%;
    padding: 50px 0px;
    display: flex;
    justify-content: center;

    .content {
        width: clamp(300px, 80%, 1200px);

        .text {
            margin: 10px 0px;
        }

        .cardFBWrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;

            .cardFB {
                width: 100%;
                font-size: 13px;
                padding: 15px;
                border-radius: 15px;
                color: color-mix(in oklab, white 65%, transparent);
                background-color: color-mix(in oklab, white 5%, transparent);
                border: 1px solid color-mix(in oklab, white 10%, transparent);

                .fb {
                    margin: 10px 0px;
                }

                svg {
                    width: 15px;
                    fill: var(--secondary-color);
                }

                .cliente {
                    color: var(--light-contrast-color);
                }
            }
        }
    }
}

.lastCta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    .content {
        padding: 20px;
        width: clamp(400px, 90%, 1000px);
        border-radius: 15px;
        border: 1px solid color-mix(in oklab, white 10%, transparent);
        background-color: color-mix(in oklab, white 5%, transparent);

        .title {
            font-size: 13px;
            color: color-mix(in oklab, oklch(86.189% 0.18235 152.476) 100%, transparent);
        }

        .subtitle {
            font-weight: 800;
        }

        .text {
            margin: 10px 0px;
        }

        .buttonsWrapper {
            gap: 10px;
            width: 100%;
            display: flex;

            a {
                font-size: 14px;
                font-weight: 700;
            }

            .whats {
                background-color: oklch(72.3% 0.219 149.579);
            }

            .cta {
                width: 80%;
                max-height: 50px;
            }

            .call {
                color: white;
                background-color: color-mix(in oklab, white 5%, transparent);
                border: 1px solid color-mix(in oklab, white 10%, transparent);
            }
        }
    }
}

.frequentQuestions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;

    .content {
        width: clamp(300px, 90%, 1000px);
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;

        .title {
            width: 100%;
        }

        .subtitle {
            width: 100%;
            font-size: 25px;
        }

        .questions {
            list-style-type: none;
            list-style-position: inside;
            padding: 0;

            li {
                gap: 5px;
                display: flex;
                padding: 10px;
                margin: 15px 0px;
                border-radius: 15px;
                flex-direction: column;
                background-color: color-mix(in oklab, white 5%, transparent);
                border: 1px solid color-mix(in oklab, white 15%, transparent);

                .question {
                    font-size: 14px;
                    color: color-mix(in oklab, white 85%, transparent);
                }

                .awnser {
                    font-size: 12px;
                    color: color-mix(in oklab, white 50%, transparent);
                }
            }
        }
    }
}

footer {
    width: 100%;
    padding: 20px 5px 0px 5px;
    background: color-mix(in oklab, white 5%, transparent);

    .copyright {
        width: 100%;
        text-align: center;
        font-size: 12px;
        padding: 10px 0px 0px 0px;
        color: color-mix(in oklab, white 80%, transparent);
        ;
    }

    .content {
        width: 100%;

        h1 {
            margin: 3px 0px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: color-mix(in oklab, white 40%, transparent);
        }

        a {
            font-size: 12px;
            color: color-mix(in oklab, white 70%, transparent);
        }

        p {
            font-size: 12px;
            margin: 3px 0px;
            color: color-mix(in oklab, white 70%, transparent);
        }

        .sections {
            display: flex;
            flex-direction: column;

            a {
                margin: 3px 0px;
            }
        }

        .localizacao {
            gap: 15px;
            display: flex;
            flex-direction: column;

            .loja {
                display: flex;
                flex-direction: column;

                a {
                    margin: 3px 0px;
                }

                #tel:hover {
                    color: var(--light-contrast-color);
                }

                #opLoc:hover {
                    color: var(--light-contrast-color);
                }

                #zap:hover {
                    color: var(--whatsappColor);
                }
            }

        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(50px, 100%, 400px);
            margin: 5px 0px;

            img {
                width: 50%;
            }

            .socialMedia {
                width: 100%;
                height: 40px;
                display: flex;
                padding: 0px 20px;
                justify-content: space-between;

                .icon {
                    display: flex;

                    svg {
                        width: 100%;
                        fill: white;
                    }

                    border-radius: 5px;

                }

                #facebook {
                    background-color: #0866ff;

                }

                #instagram {
                    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
                }

                #whatsapp {
                    background-color: #189d0e;
                }
            }
        }
    }
}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 1024px) {
    main {
        top: 0px;
        position: relative;
    }

    header {

        #logo {
            height: 100%;
        }

        nav {
            display: flex;

            .navOp{
                display: flex;
            }
        }
    }

    #hero {
        padding: 50px 0px;

        .content {
            flex-direction: row;

            .texts {
                text-align: left;
            }
        }
    }

    #services {

        .content {
            width: clamp(800px, 80%, 1200px);

            .subtitle {
                font-size: 35px;
            }

            .cardsContainer {
                &.offer {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    grid-template-rows: repeat(3, 1fr);

                    .card {
                        .marker {
                            width: 10%;
                        }
                    }
                }

                &.services {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    grid-template-rows: repeat(1, 1fr);
                }
            }
        }
    }

    #trabalho {

        .content {
            .imageCards {
                gap: 10px;
            }
        }
    }

    .loc.whats {
        .content {
            flex-direction: row;
        }
    }

    .feedbacks {
        .content {
            .cardFBWrapper {
                flex-direction: row;
            }
        }
    }

    .lastCta {
        .content {
            display: flex;

            .texts {
                width: 100%;
            }

            .buttonsWrapper {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
        }
    }

    footer {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .content {
            gap: 25px;
            width: clamp(200px, 100%, 1200px);
            display: flex;
            flex-direction: row;
            justify-content: space-between;

            .texts {
                width: 100%;
                display: flex;
                flex-direction: row;
                justify-content: space-evenly;
            }

            .logo {
                display: block;
                width: clamp(50px, 20%, 200px);

                img {
                    width: 100%;
                }

                .icon {
                    height: 30px;
                }
            }

            .localizacao {
                flex-direction: row;
            }

        }
    }
}