header {
    display: none !important;
    padding: 14px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(248, 246, 243, 0.077);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(31, 31, 31, 0.08);
    

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    .logo img {
        width: 60px;
    }

    .links {
        position: fixed;
        inset: 0;
        min-height: 100dvh;
        z-index: 1100;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;

        background: rgba(0, 0, 0, 0.95);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 280ms ease, transform 280ms ease;
    }

    .links a {
        text-decoration: none;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-secondary);
    }

    .button {
        position: fixed;
        left: 24px;
        right: 24px;
        bottom: 32px;
        z-index: 1101;

        opacity: 0;
        pointer-events: none;
        transform: translateY(16px);
        transition: opacity 280ms ease, transform 280ms ease;
    }

    .button button {
        width: 100%;
        padding: 18px 30px;
        border-radius: 14px;
        border: none;

        font-size: 1rem;
        font-weight: bold;
        color: var(--text-secondary);
        background: var(--btn-gradient);
    }

    .mobile-menu button {
        border: 0;
        background: transparent;
        padding: 0;
        display: grid;
        place-items: center;
    }

    .mobile-menu img {
        width: 30px;
        filter: brightness(0) invert(1);
    }
}

header.menu-open .links,
header.menu-open .button {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

header.menu-open .mobile-menu {
    z-index: 1102;
}

header.menu-open {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

@media (min-width: 992px) {
    header {
        .links,
        .button {
            position: static;
            inset: auto;
            opacity: 1;
            pointer-events: auto;
            transform: none;
            background: transparent;
            transition: none;
            z-index: auto;
        }

        .links {
            flex-direction: row;
            gap: 24px;
        }

        .links a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
        }

        .button {
            left: auto;
            right: auto;
            bottom: auto;
        }

        .button button {
            width: auto;
            padding: 12px 18px;
            font-size: 0.875rem;
        }

        .mobile-menu {
            display: none;
        }
    }
}

main {
    .hero {
        background-image: url('../images/bg-mobilee.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        padding: 0 16px 40px;

        display: flex;
        align-items: flex-end;
        justify-content: center;

        .title {
            max-width: 100%;

            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            color: var(--text-tertiary);

            h1 {
                font-size: 1.75rem;
                font-weight: bold;

                color: var(--text-secondary);
            }

            p:last-of-type {
                font-size: 1rem;
                font-weight: 400;
    
                color: var(--text-secondary);
            }

            .button {
                margin-top: 20px;
                width: 100%;
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
    
                button,
                a {
                    width: 90%;
                    padding: 18px 0 ;
                    border-radius: 14px;
                    border: none;
    
                    font-size: 1rem;
                    font-weight: bold;
                    color: var(--text-secondary);
                    background: var(--btn-gradient);
                    text-decoration: none;
                    text-align: center;
                    box-sizing: border-box;
                }  
            }
        }
    }

    .differencials {
        padding: 0 16px;

        margin-top: 64px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .image {
            width: 90%;

            img {
                width: 100%;
                border-radius: 12px;
            }
        }

        .text {
            max-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: center;

            .title {
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;

                p:first-of-type {
                    font-size: 1rem;
                    font-weight: 500;
                    color: var(--text-detail);
                }

                h2 {
                    font-size: 1.5rem;
                    font-weight: 600;
                    color: var(--text-primary);
                }

                p:last-of-type {
                    font-size: 1rem;
                    font-weight: 500;
                    color: var(--text-tertiary);
                }
            }
        }

        .infos {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            text-align: center;
            align-items: center;
            justify-content: center;

            .info {
                span {
                    font-size: 1.25rem;
                    font-weight: 600;
                    color: var(--text-quaternary);
                }

                p {
                    font-size: 1rem;
                    font-weight: 500;
                    color: var(--text-primary);
                }
            }
        }

        .button {
            margin-top: 20px;
            width: 100%;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            button,
            a {
                width: 80%;
                padding: 18px 0;
                border-radius: 14px;
                border: none;

                font-size: 1rem;
                font-weight: bold;
                color: var(--text-secondary);
                background: var(--btn-gradient);
                text-decoration: none;
                text-align: center;
                box-sizing: border-box;
            } 
        }
    }

    .products {
        padding: 0 16px;

        margin-top: 64px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .title {
            text-align: center;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;

            p:first-of-type {
                font-size: 1rem;
                font-weight: 500;
                color: var(--text-detail);
            }

            h2 {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--text-primary);
            }

            p:last-of-type {
                font-size: 1rem;
                font-weight: 500;
                color: var(--text-tertiary);
            }
        }

        .all-types {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            
            .type {
                width: 80%;
                max-width: 100%;
                height: 40vh;
                border-radius: 12px;

                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                gap: 10px;
                padding: 20px;

                h3 {
                    font-size: 1rem;
                    color: var(--text-secondary);
                    font-weight: 600;
                }

                p {
                    font-size: 0.875rem;
                    color: var(--text-quinary);
                    font-weight: 400;
                }
            }

            #type1 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image2.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            #type2 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image3.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            #type3 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image4.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            #type4 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image5.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            #type5 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image6.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }
            
        }

        .button {
            margin-top: 20px;
            width: 100%;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            button,
            a {
                width: 80%;
                padding: 18px 0;
                border-radius: 14px;
                border: none;

                font-size: 1rem;
                font-weight: bold;
                color: var(--text-secondary);
                background: var(--btn-gradient);
                text-decoration: none;
                text-align: center;
                box-sizing: border-box;
            } 
        }
    }

    .locations {
        padding: 0 16px;

        margin-top: 64px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .title {
            text-align: center;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;

            p:first-of-type {
                font-size: 1rem;
                font-weight: 500;
                color: var(--text-detail);
            }

            h2 {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--text-primary);
            }

            p:last-of-type {
                font-size: 1rem;
                font-weight: 500;
                color: var(--text-tertiary);
            }
        }

        .all-units {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            
            .unit {
                width: 80%;
                max-width: 100%;
                height: 40vh;
                border-radius: 12px;

                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                gap: 10px;
                padding: 20px;

                h3 {
                    font-size: 1rem;
                    color: var(--text-secondary);
                    font-weight: 600;
                }

                p {
                    font-size: 0.875rem;
                    color: var(--text-quinary);
                    font-weight: 400;
                }
            }

            #unit1 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image7.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            #unit2 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image8.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            #unit3 {
                background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image9.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }
        }

        .button {
            margin-top: 20px;
            width: 100%;
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            button,
            a {
                width: 100%;
                padding: 18px 0;
                border-radius: 14px;
                border: none;

                font-size: 0.875rem;
                font-weight: bold;
                color: var(--text-secondary);
                background: var(--btn-gradient);
                text-decoration: none;
                text-align: center;
                box-sizing: border-box;
            } 
        }
    }

    .about {
        padding: 0 16px;

        margin-top: 64px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .image {
            width: 80%;

            image {
                width: 100%;
            }
        }

        .title {
            text-align: center;
            margin-top: 30px;

            h2 {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--text-primary);
            }
        }

        .description {
            margin-top: 20px;
            p {
                font-size: 1rem;
                font-weight: 500;
                color: var(--text-tertiary);
                text-align: center;
            }
        }

        .button {
            margin-top: 20px;
            width: 100%;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            button,
            a {
                width: 80%;
                padding: 18px 0;
                border-radius: 14px;
                border: none;

                font-size: 1rem;
                font-weight: bold;
                color: var(--text-secondary);
                background: var(--btn-gradient);
                text-decoration: none;
                text-align: center;
                box-sizing: border-box;
            } 
        }
    }

    .cta {
        width: 90%;
        background-color: var(--text-detail);
        padding: 10px 20px;
        border-radius: 12px;
        margin: 48px auto;
        text-align: center;

        .title {
            text-align: center;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;

            p:first-of-type {
                font-size: 1rem;
                font-weight: 400;
                color: var(--text-secondary);
            }

            h2 {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--text-secondary);
            }

            p:last-of-type {
                font-size: 1rem;
                font-weight: 400;
                color: var(--text-secondary);
            }
        }

        .button {
            margin-top: 20px;
            width: 100%;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            button,
            a {
                width: 90%;
                padding: 18px 0 ;
                border-radius: 14px;
                border: none;

                font-size: 1rem;
                font-weight: bold;
                color: var(--text-secondary);
                background: var(--btn-gradient);
                text-decoration: none;
                text-align: center;
                box-sizing: border-box;
            }  
        }
    }
}

footer {
    background-color: var(--footer-bg);
    padding: 20px;

    p {
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--text-secondary);
        text-align: center;
    }
}