/* --- DESIGN PAGE (faixa em loop + introdução) --- */

/* Faixa de palavras em loop */
.marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #c59d5f 0%, #3a2b14 100%);
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 48px;
    white-space: nowrap;
    animation: marquee-scroll 110s linear infinite;
}

.marquee-track span {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.85rem, 1.4vw, 1.05rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Introdução (título + texto) */
.design-intro {
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 20px 100px;
    text-align: left;
}

.design-heading {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 4.2vw, 2.6rem);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #c59d5f 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.design-text {
    color: #e6e0d4;
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .design-intro { text-align: center; }
}

/* Vitrine de peças de design, em duas colunas rolando em loop pro lado */
.design-showcase {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.design-showcase-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 24px;
    animation: design-showcase-scroll 70s linear infinite;
}

.design-showcase-track-2 {
    animation-direction: reverse;
    animation-duration: 78s;
}

.design-showcase-item {
    flex: none;
    height: 320px;
    padding: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c59d5f 0%, #ffffff 100%);
    transition: transform 0.3s ease;
}

.design-showcase-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.design-showcase-item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

@keyframes design-showcase-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
    .design-showcase-item { height: 220px; }
}

/* Chamada final */
.design-cta {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 20px 120px;
    text-align: center;
}

.design-cta-heading {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #c59d5f 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.design-cta-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    background: linear-gradient(90deg, #c59d5f 0%, #3a2b14 100%);
    color: #f2f0eb;
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.design-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.9s ease;
}

.design-cta-button:hover {
    transform: scale(1.04);
}

.design-cta-button:hover::before {
    left: 125%;
}

.design-cta-arrow {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}