Reset básico * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: transparent;
    color: #fff;
    overflow-x: hidden;
}

.brand-title {
    position: fixed;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fff;
    z-index: 1100;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}


.background-container {
    background-image: url('images/velvet-shears.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 2s ease-in;
    z-index: -1;
}

.background-container.fade-in {
    opacity: 1;
}

.scroll-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #fff;
    font-weight: bold;
    padding: 0.8rem 1rem;
    overflow: hidden;
    z-index: 1000;
}

.scroll-text {
    display: inline-block;
    white-space: nowrap;
    min-width: 100%;
    animation: scrollText 25s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.scroll-text a {
    color: #fff;
    margin-left: 2rem;
    text-decoration: none;
}

.scroll-text a:hover {
    text-decoration: underline;
}

.scroll-text a i {
    margin-left: 1rem;
    font-size: 1.2rem;
    color: #ffcad4;
}

.scroll-text a:hover i {
    color: #fff;
}

.menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon span {
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 2rem;
    transition: left 0.4s ease;
    z-index: 1050;
    list-style: none;
}

.menu.active {
    left: 0;
}

.menu li {
    margin: 2rem 0;
    font-size: 1.2rem;
}

.menu li a {
    color: #fff;
    text-decoration: none;
}

.menu li a:hover {
    color: #ffcad4;
}


.catalog-sheet {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1200;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1rem 5rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}


.catalog-sheet img {
    max-width: 90%;
    max-height: 60vh;
    margin: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


.contact-sheet {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(6px);
    z-index: 1300;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    animation: fadeIn 0.5s ease forwards;
}

.contact-sheet h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.contact-sheet p {
    margin: 0.5rem 0;
    color: #eee;
}

.close-contact {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.close-catalog {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .background-container {
        background-image: url('images/velvet-shears.png');
        background-repeat: no-repeat;
        background-size: cover;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 2s ease-in;
        z-index: -1;
    }

    .brand-title {
        font-size: 1.8rem;
        top: 10px;
        right: 15px;
        padding: 6px 12px;
    }

    .menu-icon {
        top: 10px;
        left: 15px;
        width: 25px;
        height: 20px;
    }

    .menu-icon span {
        height: 3px;
    }

    .menu {
        width: 200px;
        padding: 1.5rem;
    }

    .menu li {
        margin: 1.5rem 0;
        font-size: 1rem;
    }

    .scroll-banner {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .scroll-text a {
        margin-left: 1rem;
    }

    .catalog-sheet {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1200;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 1rem 5rem;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }



    .catalog-sheet img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .close-catalog {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
    }
}