/* =============================================
   NOMA CLOTHING — style.css v4
   Paleta: Fundo Branco, textos pretos.
   ============================================= */

   

:root {
    --fundo: #ece5da;
    --fundo-elevado: #f5efe6;
    --fundo-cartao: #f8f3eb;
    --preto: #161311;
    --grafite: #2a2420;
    --cinza-escuro: #3b332d;
    --cinza-medio: #6f655e;
    --cinza-claro: #968b83;
    --borda: rgba(22,19,17,0.09);
    --borda-hover: rgba(22,19,17,0.18);
    --sombra-suave: 0 18px 45px rgba(34, 26, 21, 0.08);
    --sombra-media: 0 22px 60px rgba(34, 26, 21, 0.12);
    --sombra-forte: 0 34px 90px rgba(20, 14, 11, 0.2);
    --vermelho: #e03030;
    --amarelo: #b9924f;
    --fonte-titulo: 'Syne', sans-serif;
    --fonte-display: 'Bebas Neue', sans-serif;
    --fonte-texto: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.42), transparent 34%),
        linear-gradient(180deg, #f2ece3 0%, var(--fundo) 42%, #e8e0d4 100%);
    color: var(--preto);
    font-family: var(--fonte-texto);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
html, body { cursor: auto; }

/* =============================================
   CURSOR
   ============================================= */
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--preto);
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999; pointer-events: none;
}
.cursor-outline {
    width: 28px; height: 28px;
    border: 1px solid rgba(8,8,8,0.35);
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99998; pointer-events: none;
    transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease;
}



/* =============================================
   1. ESTRUTURA DO CONTAINER (O PAU DE TUDO)
   ============================================= */
.header-container {
    position: sticky;
    top: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

/* Estado Compacto (Ao rolar) */
.header-container.compact {
    flex-direction: column;
    gap: 5px;
    top: 10px;
}

/* =============================================
   2. PÍLULA INSTAGRAM
   ============================================= */
.instagram-pill {
    background: linear-gradient(135deg, #161311 0%, #322922 100%);
    color: #fff8f1;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(22, 19, 17, 0.18);
}

.header-container.compact .instagram-pill {
    padding: 8px 15px;
    background: rgba(22,19,17,0.88);
    transform: scale(0.9);
}

/* Lógica de troca de texto na pílula */
.header-container.compact .insta-text-long { display: none; }
.header-container:not(.compact) .insta-text-short { display: none; }

/* =============================================
   3. HEADER PRINCIPAL (NOMA)
   ============================================= */
header {
    background: rgba(248, 243, 235, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    border: 1px solid rgba(22,19,17,0.06);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 30px;
    height: 60px;
    width: 90%;
    max-width: 1100px;
    transition: all 0.4s ease;
    box-shadow: 0 16px 40px rgba(34, 26, 21, 0.08);
}

.header-container.compact header {
    width: 80%;
    height: 50px;
    box-shadow: 0 18px 36px rgba(34, 26, 21, 0.12);
}

.logo img { height: 45px; width: auto; transition: height 0.4s ease; }
.header-container.compact .logo img { height: 32px; }

/* Links do Header */
.nav-link {
    font-size: 0.65rem;
    color: var(--grafite) !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

.nav-link:hover {
    color: var(--preto) !important;
    opacity: .76;
}

/* Lógica de troca: Instagram por WhatsApp no canto direito */
.link-wpp { display: none !important; }
.header-container.compact .link-insta { display: none !important; }
.header-container.compact .link-wpp { display: block !important; color: #25D366 !important; }

/* =============================================
   4. BARRA DE CATEGORIAS (CAT-NAV)
   ============================================= */
.cat-nav {
    position: sticky;
    top: 135px; /* Posição inicial */
    z-index: 1900;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 1000px;
    margin: 10px auto;
    padding: 5px 0;
    background: rgba(245, 239, 230, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(22,19,17,0.05);
    transition: all 0.4s ease;
    box-shadow: 0 18px 32px rgba(34, 26, 21, 0.08);
}

/* Quando o header encolhe, a barra de categorias sobe junto */
.header-container.compact + .cat-nav {
    top: 95px; 
}

.cat-link {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 700;
    color: rgba(8,8,8,0.4);
    padding: 12px 20px;
    text-decoration: none;
    position: relative;
    transition: color .2s ease;
}

.cat-link:hover, .cat-link.active { color: #000; }
.cat-link::after {
    content: ''; position: absolute; bottom: 8px; left: 50%;
    transform: translateX(-50%); width: 0; height: 2px;
    background: #000; transition: width .3s ease;
}
.cat-link:hover::after, .cat-link.active::after { width: 30%; }
/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    height: 90vh; min-height: 580px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,0.4), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0));
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(22,19,17,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,19,17,0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-grid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(236,229,218,0.34), rgba(236,229,218,0.72)),
        url("img/optimized/hero-world-office.webp") 30% 0% / cover no-repeat;
    opacity: 0.22;
    filter: blur(1.2px) saturate(0.68) contrast(0.82) brightness(1.06);
    mix-blend-mode: multiply;
    transform: scale(1);
    border-radius: 0;
}
.hero-grid-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(236,229,218,0.28) 0%, rgba(236,229,218,0.08) 24%, rgba(236,229,218,0.05) 74%, rgba(236,229,218,0.3) 100%),
        radial-gradient(circle at 52% 42%, rgba(255,255,255,0.16) 0%, rgba(236,229,218,0.06) 36%, rgba(236,229,218,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--cinza-claro);
    margin-bottom: 20px;
    font-weight: 500;
}
.hero-title {
    font-family: var(--fonte-display);
    font-size: clamp(5rem, 17vw, 15rem);
    line-height: 0.88;
    text-transform: uppercase;
    display: flex; flex-direction: column;
    margin-bottom: 44px;
    color: var(--preto);
}
.btn-hero {
    display: inline-block;
    padding: 15px 34px;
    background: linear-gradient(135deg, var(--preto) 0%, #3a2f28 100%);
    color: #fff8f1;
    font-family: var(--fonte-titulo);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: 1px solid rgba(22,19,17,0.12);
    cursor: none;
    border-radius: 999px;
    box-shadow: 0 18px 30px rgba(22, 19, 17, 0.16);
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(22, 19, 17, 0.2);
}

.hero-scroll-hint {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    opacity: 0.3; z-index: 2;
}
.hero-scroll-hint span { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 4px; }
.scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(to bottom, var(--preto), transparent);
    animation: spulse 2s ease-in-out infinite;
}
@keyframes spulse {
    0%,100% { opacity:.3; transform: scaleY(1); }
    50%      { opacity:1;  transform: scaleY(.65); }
}

/* =============================================
   EDITORIAL STRIP
   ============================================= */
.editorial-strip {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #161311 0%, #2a2420 100%);
    border-top: 1px solid rgba(22,19,17,0.08);
    border-bottom: 1px solid rgba(22,19,17,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 4%;
}

.strip-item span:last-child {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.87);
    font-weight: 500;
}

.strip-div {
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.strip-num {
    display: none;
}


/* =============================================
   COLECAO HEADER
   ============================================= */
.colecao-header {
    padding: 64px 5% 28px;
    border-bottom: 1px solid var(--borda);
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
}
.colecao-header-inner {
    max-width: 1200px; margin: 0 auto;
    display: block;
}
.label-tag {
    font-size: 0.58rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--cinza-claro);
    font-weight: 600; display: block; margin-bottom: 8px;
}
.colecao-desc {
    font-size: 0.75rem; color: rgba(8,8,8,0.4);
    max-width: 260px; line-height: 1.9;
}
.colecao-title {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--preto);
}

/* =============================================
   GRID DE PRODUTOS
   ============================================= */
.grid-produtos {
    max-width: 1200px; margin: 0 auto;
    padding: 40px 5% 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.produto-destaque { grid-column: span 1; }
.grid-produtos .produto:nth-child(2) { grid-column: span 1; }
.grid-produtos .produto:nth-child(3) { grid-column: span 1; }
.grid-produtos .produto:nth-child(4) { grid-column: span 1; }
.produto { display: flex; flex-direction: column; cursor: none; }

.produto-img-wrap {
    position: relative; 
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #f7f1e9 0%, #e8ddd0 100%);
    aspect-ratio: 9/16;
    margin-bottom: 12px;
    border: 1px solid rgba(22,19,17,0.06);
    box-shadow: var(--sombra-suave);
}

.produto-img-wrap .foto-1,
.produto-img-wrap .foto-2 {
    position: absolute;
    inset: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.5s ease, transform .9s var(--ease);
    will-change: transform;
}

.produto-img-wrap .foto-1 { opacity: 1; }
.produto-img-wrap .foto-2 { opacity: 0; }

.produto:hover .foto-1 { opacity: 0; transform: scale(1.07); }
.produto:hover .foto-2 { opacity: 1; transform: scale(1.07); }

.produto-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(22,19,17,0.58) 0%, rgba(22,19,17,0.12) 45%, transparent 70%);
    display: flex; align-items: flex-end;
    justify-content: center; padding-bottom: 18px;
    opacity: 0; z-index: 2;
    transition: opacity .3s ease;
}
.produto:hover .produto-overlay { opacity: 1; }


.btn-add-cart {
    background: rgba(248, 243, 235, 0.95); color: var(--preto);
    border: none; padding: 11px 22px;
    font-family: var(--fonte-titulo);
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    cursor: none;
    transform: translateY(10px);
    transition: transform .3s var(--ease), background .2s ease, box-shadow .25s ease;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(22,19,17,0.16);
}
.produto:hover .btn-add-cart { transform: translateY(0); }
.btn-add-cart:hover { background: #fff; box-shadow: 0 16px 30px rgba(22,19,17,0.2); }

.produto-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(22,19,17,0.92); color: #fff8f1;
    font-family: var(--fonte-titulo);
    font-size: 0.58rem; font-weight: 800;
    letter-spacing: 2px; padding: 6px 10px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(22,19,17,0.18);
}
.produto-badge.promo { background: var(--vermelho); color: #fff; }

.coming-soon-card {
    cursor: default;
}

.coming-soon-card .produto-img-wrap::after {
    content: "EM BREVE...";
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 190px;
    padding: 16px 20px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: rgba(22,19,17,0.76);
    backdrop-filter: blur(12px);
    color: #fff8f1;
    font-family: var(--fonte-titulo);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    z-index: 3;
    box-shadow: 0 22px 34px rgba(22,19,17,0.22);
}

.coming-soon-card .foto-1,
.coming-soon-card .foto-2 {
    filter: blur(14px) saturate(0.74);
    transform: scale(1.08);
}

.coming-soon-card .produto-overlay {
    opacity: 1;
    background: rgba(22,19,17,0.08);
}

.coming-soon-card .btn-add-cart {
    background: rgba(248, 243, 235, 0.88);
}

.coming-soon-card:hover .foto-1,
.coming-soon-card:hover .foto-2 {
    opacity: 1;
    transform: scale(1.04);
}

.coming-soon-card a[aria-disabled="true"] {
    pointer-events: none;
}

.produto-info {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 10px;
}
.produto-info-left { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.produto-nome { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; line-height: 1.3; color: var(--preto); }
.produto-categoria { font-size: 0.62rem; color: var(--cinza-claro); text-transform: uppercase; letter-spacing: 1px; }
.produto-preco { font-size: 0.72rem; font-weight: 400; color: rgba(8,8,8,0.45); white-space: nowrap; flex-shrink: 0; margin-top: 1px; }

.catalog-carousel {
    display: block;
    max-width: 1320px;
    padding-top: 56px;
    position: relative;
}

.catalog-carousel::before {
    content: "";
    position: absolute;
    inset: 70px 8% 42px;
    border-radius: 42px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.28), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(22,19,17,0.05));
    border: 1px solid rgba(22,19,17,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
    z-index: 0;
}

.carousel-shell {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-track {
    position: relative;
    width: min(1120px, 100%);
    height: 700px;
    margin: 0 auto;
}

.carousel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(31vw, 360px);
    transition: transform .65s var(--ease), opacity .45s ease, filter .45s ease;
    transform-origin: center center;
    cursor: pointer;
}

.carousel-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 72%;
    height: 34px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(22,19,17,0.2) 0%, rgba(22,19,17,0.02) 70%, transparent 100%);
    filter: blur(16px);
    z-index: -1;
}

.carousel-card .produto-info {
    opacity: .58;
    transition: opacity .3s ease;
}

.carousel-card.is-active {
    z-index: 4;
}

.carousel-card.is-active .produto-info {
    opacity: 1;
}

.carousel-card.is-active .produto-img-wrap {
    box-shadow: var(--sombra-forte);
}

.carousel-card.is-prev,
.carousel-card.is-next {
    z-index: 3;
}

.carousel-card.is-prev .produto-img-wrap,
.carousel-card.is-next .produto-img-wrap {
    box-shadow: 0 18px 42px rgba(22,19,17,0.12);
}

.carousel-card.is-hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.carousel-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(22,19,17,0.08);
    background: rgba(248,243,235,0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
    box-shadow: 0 18px 30px rgba(22,19,17,0.12);
}

.carousel-arrow:hover {
    border-color: rgba(22,19,17,0.18);
    background: #fffaf4;
    box-shadow: 0 24px 40px rgba(22,19,17,0.16);
}

.carousel-arrow-left {
    left: max(0px, calc(50% - 580px));
}

.carousel-arrow-right {
    right: max(0px, calc(50% - 580px));
}

.carousel-status {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin: 18px auto 0;
    max-width: 980px;
    padding: 0 10px;
}

.carousel-status-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cinza-claro);
    font-weight: 700;
}

.carousel-status-copy {
    font-size: 0.78rem;
    line-height: 1.8;
    color: rgba(8,8,8,0.55);
    text-align: right;
}

.launch-info,
.size-guide-home,
.detail-story,
.drop-follow {
    padding: 0 5% 88px;
}

.launch-grid,
.size-guide-home,
.detail-story,
.drop-follow-card {
    max-width: 1200px;
    margin: 0 auto;
}

.launch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.launch-card {
    background: rgba(248,243,235,0.72);
    border: 1px solid rgba(22,19,17,0.06);
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--sombra-suave);
    backdrop-filter: blur(10px);
}

.launch-card h3,
.size-guide-head h2,
.detail-story-head h2,
.drop-follow-card h2 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--preto);
    margin-bottom: 16px;
}

.launch-card p,
.size-guide-head p,
.detail-story-head p,
.detail-copy p,
.drop-follow-card p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: rgba(22,19,17,0.62);
}

.launch-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.launch-step {
    background: rgba(255,255,255,0.34);
    border: 1px solid rgba(22,19,17,0.05);
    border-radius: 24px;
    padding: 18px;
}

.launch-step strong,
.detail-copy strong {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 8px;
    color: var(--preto);
}

.launch-step p {
    font-size: 0.82rem;
    line-height: 1.8;
}

.launch-card-highlight {
    background: linear-gradient(180deg, rgba(42,36,32,0.95), rgba(22,19,17,0.96));
    color: #f8f3eb;
}

.launch-card-highlight h3,
.launch-card-highlight .label-tag,
.launch-card-highlight p {
    color: #f8f3eb;
}

.launch-card-highlight p {
    color: rgba(248,243,235,0.72);
}

.launch-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.size-guide-home {
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
}

.size-guide-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 28px;
}

.size-guide-head p {
    max-width: 420px;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.size-card {
    background: rgba(248,243,235,0.78);
    border: 1px solid rgba(22,19,17,0.06);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--sombra-suave);
}

.size-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(22,19,17,0.92);
    color: #fff8f1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.size-card strong {
    display: block;
    font-family: var(--fonte-titulo);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
}

.size-card p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--cinza-claro);
    margin-bottom: 8px;
}

.size-card small {
    font-size: 0.82rem;
    color: rgba(22,19,17,0.66);
}

.size-guide-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.size-guide-note span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.34);
    border: 1px solid rgba(22,19,17,0.06);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grafite);
}

.detail-story-head {
    max-width: 720px;
    margin-bottom: 26px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.detail-card {
    background: rgba(248,243,235,0.74);
    border: 1px solid rgba(22,19,17,0.06);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
}

.detail-card img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
}

.detail-copy {
    padding: 20px 22px 24px;
}

.drop-follow-card {
    padding: 36px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(22,19,17,0.96) 0%, rgba(50,41,34,0.96) 100%);
    color: #fff8f1;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    box-shadow: var(--sombra-media);
}

.drop-follow-card .label-tag,
.drop-follow-card h2,
.drop-follow-card p {
    color: #fff8f1;
}

.drop-follow-card p {
    color: rgba(248,243,235,0.72);
    max-width: 720px;
}

.drop-follow-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366 0%, #1fa955 100%);
    color: #f6fff9;
    box-shadow: 0 24px 40px rgba(37, 211, 102, 0.24);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.whatsapp-float i {
    font-size: 1.15rem;
}

.help-widget {
    position: fixed;
    right: 22px;
    bottom: 88px;
    z-index: 1201;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.help-trigger,
.help-chip,
.help-close {
    border: none;
    cursor: pointer;
}

.help-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(248,243,235,0.96);
    border: 1px solid rgba(22,19,17,0.08);
    box-shadow: var(--sombra-suave);
    color: var(--preto);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.help-panel {
    width: min(360px, calc(100vw - 28px));
    background: rgba(248,243,235,0.98);
    border: 1px solid rgba(22,19,17,0.08);
    border-radius: 28px;
    box-shadow: var(--sombra-media);
    padding: 18px;
}

.help-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.help-panel-head strong {
    font-family: var(--fonte-titulo);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(22,19,17,0.08);
    color: var(--preto);
}

.help-panel-copy {
    font-size: 0.84rem;
    line-height: 1.8;
    color: rgba(22,19,17,0.62);
    margin-bottom: 14px;
}

.help-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.help-chip {
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.44);
    border: 1px solid rgba(22,19,17,0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .8px;
    color: var(--grafite);
}

.help-direct-link {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--preto) 0%, #3a2f28 100%);
    color: #fff8f1;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   LOOKBOOK
   ============================================= */
.lookbook { padding: 0 5% 80px; max-width: 1200px; margin: 0 auto; }
.lookbook-header {
    padding-top: 64px; border-top: 1px solid var(--borda);
    margin-bottom: 28px;
}
.lookbook-header h2 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    text-transform: uppercase; letter-spacing: 1px;
    margin-top: 10px; color: var(--preto);
}
.lookbook-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px; height: 78vh; min-height: 480px;
}
.lookbook-big { position: relative; overflow: hidden; border-radius: 3px; }
.lookbook-img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center top;
    transition: transform .8s var(--ease);
}
.lookbook-big:hover .lookbook-img,
.lookbook-item:hover .lookbook-img { transform: scale(1.04); }
.lookbook-caption {
    position: absolute; bottom: 22px; left: 22px;
}
.lookbook-caption span { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 4px; color: rgba(244,242,238,0.6); font-weight: 600; display: block; margin-bottom: 4px; }
.lookbook-caption p { font-family: var(--fonte-titulo); font-size: 1.3rem; text-transform: uppercase; color: #fff; }
.lookbook-col { display: flex; flex-direction: column; gap: 10px; }
.lookbook-item { flex: 1; overflow: hidden; border-radius: 3px; }
.lookbook-item .lookbook-img { height: 100%; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    display: flex; align-items: stretch;
    border-top: 1px solid var(--borda);
    border-bottom: 1px solid var(--borda);
    background: linear-gradient(180deg, rgba(247,241,233,0.95), rgba(236,229,218,0.95));
}
.trust-item {
    flex: 1; display: flex;
    align-items: center; gap: 14px;
    padding: 26px 4%;
}
.trust-item + .trust-item { border-left: 1px solid var(--borda); }
.trust-item i { font-size: 1.1rem; color: rgba(8,8,8,0.3); flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: var(--amarelo); }
.trust-item span { font-size: 0.62rem; color: var(--cinza-claro); }

/* =============================================
   FOOTER
   ============================================= */
footer {
    padding: 64px 5% 28px;
    border-top: 1px solid var(--borda);
    background: linear-gradient(180deg, #161311 0%, #0e0c0b 100%);
    color: #f5efe6;
}
.footer-top {
    display: flex; justify-content: space-between;
    gap: 60px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-brand { max-width: 220px; display: flex; flex-direction: column; gap: 14px; }
.footer-logo { height: 34px; width: auto; }
.footer-brand p { font-size: 0.7rem; color: rgba(244,242,238,0.4); line-height: 1.9; }
.footer-links { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(244,242,238,0.3); font-weight: 600; margin-bottom: 4px; }
.footer-col a { font-size: 0.72rem; color: rgba(244,242,238,0.45); cursor: none; transition: color .2s ease; letter-spacing: .3px; }
.footer-col a:hover { color: var(--fundo); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; opacity: .25; }
.footer-insta { font-size: 1rem; color: rgba(244,242,238,0.3); cursor: none; transition: color .2s ease; }
.footer-insta:hover { color: var(--fundo); }

/* =============================================
  0.6rem; color: var(--cinza-claro); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }

.btn-checkout {
    width: 100%;
    background: var(--preto); color: var(--fundo);
    border: 1px solid var(--preto);
    padding: 15px;
    font-family: var(--fonte-titulo);
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: none;
    transition: background .2s ease, color .2s ease;
}
.btn-checkout:hover { background: transparent; color: var(--preto); }

#cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    display: none; z-index: 9998;
    backdrop-filter: blur(3px);
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
    .header-container {
        position: static;
        top: auto;
        gap: 8px;
        padding: 12px 12px 0;
    }
    .header-container.compact {
        gap: 8px;
        top: auto;
    }
    .instagram-pill {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.58rem;
        letter-spacing: 1px;
    }
    .header-container.compact .instagram-pill {
        transform: none;
        padding: 10px 16px;
    }
    .header-container.compact .insta-text-long {
        display: inline;
    }
    .header-container.compact .insta-text-short {
        display: none;
    }
    header {
        width: 100%;
        height: auto;
        min-height: 52px;
        padding: 12px 16px;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        border-radius: 22px;
    }
    .header-container.compact header {
        width: 100%;
        height: auto;
    }
    .header-left,
    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    .logo img,
    .header-container.compact .logo img {
        height: 34px;
    }
    .nav-link {
        font-size: 0.58rem;
        letter-spacing: 1.1px;
    }
    .link-wpp {
        display: block !important;
        color: #25D366 !important;
    }
    .cat-nav {
        position: static;
        width: calc(100% - 28px);
        margin: 8px auto 0;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 6px;
        gap: 2px;
        scrollbar-width: none;
    }
    .cat-nav::-webkit-scrollbar {
        display: none;
    }
    .cat-link {
        flex: 0 0 auto;
        padding: 11px 12px;
    }
    .hero {
        min-height: auto;
        height: auto;
        padding: 54px 16px 38px;
        align-items: flex-start;
    }
    .hero-grid-bg::before {
        inset: 0;
        opacity: 0.14;
        background-position: 24% 0%;
        background-size: cover;
        filter: blur(1.4px) saturate(0.64) contrast(0.8) brightness(1.05);
    }
    .hero-content {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .hero-label {
        font-size: 0.54rem;
        letter-spacing: 2.4px;
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: clamp(3.2rem, 17vw, 5.4rem);
        margin-bottom: 22px;
        line-height: 0.88;
    }
    .btn-hero {
        width: 100%;
        max-width: none;
        padding: 14px 18px;
        font-size: 0.68rem;
        letter-spacing: 1.4px;
        line-height: 1.2;
    }
    .hero-scroll-hint {
        display: none;
    }
    .editorial-strip {
        margin-top: 8px;
    }
    .strip-item {
        padding: 16px 14px;
    }
    .colecao-header-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .grid-produtos { display: flex; flex-direction: column; gap: 28px; padding: 28px 4% 56px; }
    .launch-info,
    .size-guide-home,
    .detail-story,
    .drop-follow {
        padding: 0 4% 56px;
    }
    .launch-grid,
    .detail-grid,
    .size-grid,
    .payment-shell {
        grid-template-columns: 1fr;
    }
    .launch-card,
    .drop-follow-card,
    .payment-card,
    .payment-side {
        padding: 26px;
    }
    .launch-steps {
        grid-template-columns: 1fr;
    }
    .size-guide-head,
    .drop-follow-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .drop-follow-actions,
    .launch-actions {
        width: 100%;
        justify-content: flex-start;
    }
    .catalog-carousel {
        padding-top: 12px;
    }
    .catalog-carousel::before {
        inset: 40px 0 30px;
        border-radius: 28px;
    }
    .carousel-shell {
        min-height: auto;
        padding: 0 0 10px;
        display: block;
    }
    .carousel-track {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        height: auto;
        width: 100%;
        overflow: visible;
        padding: 6px 2px 14px;
    }
    .carousel-card,
    .carousel-card.is-active,
    .carousel-card.is-prev,
    .carousel-card.is-next,
    .carousel-card.is-hidden {
        position: static;
        min-width: 0;
        width: 100%;
        max-width: none;
        transform: none !important;
        opacity: 1;
        filter: none;
        pointer-events: auto;
    }
    .carousel-card .produto-info {
        opacity: 1;
    }
    .carousel-card::after {
        bottom: -14px;
        width: 80%;
        height: 24px;
    }
    .carousel-arrow,
    .carousel-status {
        display: none;
    }
    .lookbook-grid { grid-template-columns: 1fr; height: auto; }
    .lookbook-big { height: 55vw; min-height: 280px; }
    .lookbook-col { flex-direction: row; height: 38vw; }
    .trust-bar { flex-wrap: wrap; }
    .trust-item { width: 50%; flex: none; }
    .trust-item:nth-child(3) { border-left: none; }
    .footer-top { flex-direction: column; gap: 36px; }
    .footer-links { gap: 28px; flex-wrap: wrap; }
   
    .editorial-strip { flex-wrap: wrap; }
    .strip-item { width: 50%; border-bottom: 1px solid var(--borda); }
    .strip-div { display: none; }
    .about-noma {
        padding: 56px 4% 54px;
    }
    .about-container {
        gap: 28px;
    }
    .about-text p {
        font-size: 0.88rem;
        line-height: 1.75;
    }
    .trust-item {
        padding: 20px 16px;
    }
    .coming-soon-card .produto-img-wrap::after {
        min-width: 170px;
        padding: 14px 18px;
        font-size: 0.74rem;
        letter-spacing: 1.6px;
    }
    .payment-page-wrap {
        padding: 26px 4% 56px;
    }
    .payment-card h1,
    .payment-side h2 {
        font-size: clamp(1.45rem, 8vw, 2.2rem);
        margin-bottom: 12px;
    }
    .payment-summary {
        margin: 20px 0;
        padding: 18px;
        gap: 10px;
    }
    .payment-actions {
        gap: 10px;
        margin-top: 18px;
    }
    .payment-actions .btn-about,
    .payment-actions .btn-outline {
        padding: 14px 18px;
        font-size: 0.72rem;
        letter-spacing: 1.4px;
    }
    .payment-status {
        margin-top: 18px;
        padding: 16px 18px;
        font-size: 0.84rem;
        line-height: 1.65;
    }
    .payment-note {
        margin-top: 16px;
        font-size: 0.68rem;
        letter-spacing: 0.8px;
    }
    .payment-side li {
        padding: 14px 16px;
        font-size: 0.8rem;
        line-height: 1.6;
    }
    footer {
        padding: 46px 5% 24px;
    }
    .help-widget {
        right: 14px;
        bottom: 84px;
    }
    .whatsapp-float {
        right: 14px;
        bottom: 18px;
        padding: 13px 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 10px 0;
    }
    .instagram-pill {
        display: none;
    }
    header {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        text-align: left;
        gap: 8px;
        padding: 10px 14px;
    }
    .header-left,
    .header-right {
        justify-content: center;
        flex-wrap: nowrap;
    }
    .header-left {
        display: none;
    }
    .header-right {
        justify-content: flex-end;
        gap: 0;
    }
    .header-right .link-insta {
        display: none !important;
    }
    .header-right .link-wpp {
        display: inline-flex !important;
    }
    .logo {
        justify-content: flex-start;
    }
    .logo img,
    .header-container.compact .logo img {
        height: 30px;
    }
    .cat-nav {
        width: calc(100% - 24px);
        margin-top: 6px;
        border-radius: 16px;
        padding: 5px;
    }
    .trust-item { width: 100%; }
    .trust-item + .trust-item { border-left: none; border-top: 1px solid var(--borda); }
    .hero {
        padding: 40px 12px 30px;
    }
    .hero-grid-bg::before {
        opacity: 0.12;
        background-position: 20% 0%;
        background-size: cover;
        filter: blur(1.5px) saturate(0.62) contrast(0.78) brightness(1.06);
    }
    .hero-title {
        font-size: clamp(2.7rem, 16vw, 4.2rem);
        margin-bottom: 18px;
    }
    .hero-label {
        letter-spacing: 2px;
        font-size: 0.5rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .btn-hero {
        font-size: 0.62rem;
        letter-spacing: 1px;
        padding: 13px 14px;
        border-radius: 20px;
    }
    .carousel-card,
    .carousel-card.is-active,
    .carousel-card.is-prev,
    .carousel-card.is-next,
    .carousel-card.is-hidden {
        min-width: 0;
        width: 100%;
        max-width: none;
    }
    .carousel-track {
        gap: 10px;
    }
    .produto-img-wrap,
    .collection-image,
    .about-bg {
        border-radius: 22px;
    }
    .cat-vazio {
        padding: 84px 6% 72px;
    }
    .collections-section {
        padding: 58px 5%;
    }
    .launch-card h3,
    .size-guide-head h2,
    .detail-story-head h2,
    .drop-follow-card h2 {
        font-size: clamp(1.35rem, 9vw, 2rem);
    }
    .size-card {
        padding: 20px;
    }
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        justify-content: center;
        padding: 0;
    }
    .help-trigger span {
        display: none;
    }
    .help-trigger {
        width: 54px;
        height: 54px;
        justify-content: center;
        padding: 0;
    }
    .coming-soon-card .produto-img-wrap::after {
        min-width: 150px;
        font-size: 0.68rem;
        padding: 12px 16px;
    }
    .cor-status {
        top: calc(100% + 6px);
        font-size: 0.5rem;
        padding: 4px 8px;
        letter-spacing: 0.9px;
    }
    .payment-page-wrap {
        padding: 18px 4% 46px;
    }
    .payment-card,
    .payment-side {
        border-radius: 24px;
        padding: 22px;
    }
    .payment-card h1,
    .payment-side h2 {
        font-size: clamp(1.3rem, 10vw, 1.9rem);
        line-height: 0.98;
    }
    .payment-card p,
    .payment-side p,
    .payment-status,
    .payment-summary li {
        font-size: 0.84rem;
        line-height: 1.7;
    }
    .payment-actions .btn-about,
    .payment-actions .btn-outline {
        min-height: 52px;
        font-size: 0.68rem;
        letter-spacing: 1.1px;
        padding: 14px 14px;
    }
    .carousel-status-copy,
    .colecao-desc {
        font-size: 0.74rem;
        line-height: 1.7;
    }
}

@media (max-width: 360px) {
    .nav-link {
        font-size: 0.54rem;
        letter-spacing: 0.9px;
    }
    .cat-link {
        padding: 11px 12px;
        font-size: 0.58rem;
    }
    .hero-title {
        font-size: clamp(2.45rem, 15vw, 3.8rem);
    }
    .btn-hero {
        font-size: 0.58rem;
        letter-spacing: 0.8px;
    }
    .btn-hero,
    .btn-about,
    .btn-outline,
    .btn-ver-colecao {
        width: 100%;
        justify-content: center;
    }
    .payment-actions .btn-about,
    .payment-actions .btn-outline {
        font-size: 0.64rem;
        letter-spacing: 0.9px;
    }
    .payment-summary {
        padding: 16px;
    }
}


.cat-vazio {
    display: none;
    text-align: center;
    padding: 120px 5%;
    background: rgba(248,243,235,0.45);
}

.cat-vazio-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--cinza-claro);
    margin-bottom: 16px;
}

.cat-vazio h3 {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 6vw, 5rem);
    text-transform: uppercase;
    color: var(--preto);
    margin-bottom: 12px;
}

.cat-vazio-sub {
    font-size: 0.75rem;
    color: var(--cinza-claro);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.cat-vazio-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--preto);
    border: 1px solid rgba(22,19,17,0.08);
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(248,243,235,0.92);
    cursor: none;
    transition: opacity .2s ease, transform .2s ease, box-shadow .25s ease;
    box-shadow: 0 14px 26px rgba(22,19,17,0.08);
}

.cat-vazio-insta:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 18px 32px rgba(22,19,17,0.12); }

/* ========================
   COLLECTIONS SECTION
   ======================== */
.collections-section {
    padding: 80px 5%;
    text-align: center;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.collections-section .section-title {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 6vw, 5rem);
    text-transform: uppercase;
    color: var(--preto);
    margin-bottom: 48px;
}

.collections-intro {
    max-width: 720px;
    margin: 0 auto 42px;
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(8,8,8,0.58);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.collection-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collection-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 500px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #f7f1e9 0%, #e8ddd0 100%);
    box-shadow: var(--sombra-suave);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.collection-item:hover .collection-image img {
    transform: scale(1.04);
}

.collection-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 28px;
    opacity: 0;
    transition: opacity .3s ease;
}

.collection-item:hover .overlay {
    opacity: 1;
}

.btn-ver-colecao {
    background: rgba(248,243,235,0.95);
    color: var(--preto);
    padding: 14px 28px;
    font-family: var(--fonte-titulo);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.28);
    cursor: none;
    transition: transform .25s ease, background .2s ease, color .2s ease, box-shadow .25s ease;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(22,19,17,0.16);
}

.btn-ver-colecao:hover {
    transform: translateY(-2px);
    background: #fffaf4;
    color: var(--preto);
}

.collections-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    background: transparent;
    color: var(--preto);
    font-family: var(--fonte-titulo);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(0,0,0,0.2);
    transition: border-color .25s ease, background .25s ease;
}

.btn-outline:hover {
    border-color: var(--preto);
    background: rgba(0,0,0,0.03);
}

.is-disabled {
    opacity: 0.52;
    pointer-events: none;
    cursor: default;
}

.opcao-btn.is-disabled {
    position: relative;
    padding-right: 18px;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.opcao-cor.is-disabled {
    position: relative;
    opacity: 0.56;
    filter: grayscale(0.14);
    cursor: not-allowed;
    overflow: visible;
}

.opcao-cor.is-disabled::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 2px;
    background: rgba(22,19,17,0.72);
    top: 50%;
    left: -20%;
    transform: rotate(-24deg);
}

.cor-status {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(22,19,17,0.92);
    color: #fff8f1;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.size-status {
    display: block;
    margin-top: 4px;
    font-size: 0.48rem;
    line-height: 1;
    letter-spacing: 1px;
    text-decoration: none;
}

.payment-page-wrap {
    padding: 52px 5% 90px;
}

.payment-shell {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.payment-card,
.payment-side {
    background: rgba(248,243,235,0.8);
    border: 1px solid rgba(22,19,17,0.06);
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--sombra-suave);
}

.payment-card h1,
.payment-side h2 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.payment-card p,
.payment-side p,
.payment-meta,
.payment-status,
.payment-summary li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(22,19,17,0.66);
}

.payment-summary {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.34);
    border: 1px solid rgba(22,19,17,0.05);
}

.payment-summary strong,
.payment-actions .btn-about,
.payment-actions .btn-outline {
    width: 100%;
    justify-content: center;
}

.payment-status {
    margin: 22px 0 0;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(22,19,17,0.05);
}

.payment-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.payment-note {
    margin-top: 22px;
    font-size: 0.76rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cinza-claro);
}

.payment-side ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.payment-side li {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.34);
    border: 1px solid rgba(22,19,17,0.05);
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(22,19,17,0.66);
}

.collection-info span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cinza-claro);
    font-weight: 600;
}

.collection-info h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--preto);
    margin: 6px 0;
}

.collection-info p {
    font-size: 0.72rem;
    color: var(--cinza-claro);
    line-height: 1.8;
}

.placeholder-img {
    width: 500px;
    height: 100%;
    background: #e8e6e2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img span {
    font-family: var(--fonte-display);
    font-size: 2rem;
    color: rgba(8,8,8,0.2);
    max-width: 500px;
    letter-spacing: 4px;
}


/* ========================
   EDITORIAL GRID
   ======================== */
.editorial-drop {
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.editorial-drop.visivel {
    opacity: 1;
    transform: translateY(0);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 6px;
}

.ed-item {
    overflow: hidden;
    border-radius: 4px;
    background: #e8e6e2;
}

.ed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(0.16,1,0.3,1);
}

.ed-item:hover img { transform: scale(1.05); }

.ed-grande  { grid-column: span 2; }
.ed-medio   { grid-column: span 1; }
.ed-pequeno { grid-column: span 1; }

/* Responsivo */
@media (max-width: 600px) {
    .collections-grid { grid-template-columns: 1fr; }
    .editorial-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .ed-grande { grid-column: span 2; }
}

.coming-soon .collection-image {
    height: 500px;
    aspect-ratio: unset;
    width: 100%;
    max-height: 500px;
    position: relative;
}

.coming-soon .placeholder-img {
    width: 100%;
    height: 100%;
}


.cor-cinza { background: #9a9a9a; }


/* =============================================
   SOBRE NOMA
   ============================================= */
.about-noma {
    padding: 80px 5%;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0)),
        #efe7dc;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-bg {
    position: relative;
    aspect-ratio: 9/12;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f1e9 0%, #e8ddd0 100%);
    box-shadow: var(--sombra-media);
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-header h2 {
    font-family: var(--fonte-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--preto);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(8,8,8,0.6);
    text-align: left;
}

.about-text strong {
    color: var(--preto);
    font-weight: 600;
}

.btn-about {
    display: inline-block;
    width: fit-content;
    padding: 15px 34px;
    background: linear-gradient(135deg, var(--preto) 0%, #3a2f28 100%);
    color: #fff8f1;
    font-family: var(--fonte-titulo);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(22,19,17,0.12);
    cursor: none;
    transition: transform .25s ease, box-shadow .25s ease;
    margin-top: 8px;
    border-radius: 999px;
    box-shadow: 0 18px 30px rgba(22,19,17,0.16);
}

.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(22,19,17,0.2);
}

/* Responsivo */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-bg {
        aspect-ratio: 3/4;
        max-width: 400px;
    }
}

.header-right {
    display: flex;
    justify-content: flex-end;
    gap: 28px;  /* AUMENTA O ESPAÇO */
}
