/* ══════════════════════════════════════════
   AW HOME — CSS
   Design System: Instrument Sans · #0D0D0D · #FAFAF9
   ══════════════════════════════════════════ */

/* ── Announcement Bar ── */
.aw-ann {
    position: relative;
    background: #0D0D0D;
    color: #fff;
    text-align: center;
    height: 40px;
    overflow: hidden;
    z-index: 100;
}

.aw-ann__item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
    padding: 0 16px;
}

.aw-ann__item.is-active {
    opacity: 1;
    transform: translateY(0);
}

a.aw-ann__item:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ══════════════════════════════════════════
   Hero Banner
   ══════════════════════════════════════════ */
.aw-hero {
    position: relative;
    width: 100%;
    height: clamp(420px, 47vw, 720px);
    overflow: hidden;
    background: #0D0D0D;
}

.aw-hero__slides {
    position: absolute;
    inset: 0;
}

.aw-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    z-index: 1;
}

.aw-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.aw-hero__bg {
    position: absolute;
    inset: 0;
}

.aw-hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.aw-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aw-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, .72) 0%,
        rgba(0, 0, 0, .35) 45%,
        transparent 75%
    );
    z-index: 1;
}

.aw-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.aw-hero__tag {
    display: inline-block;
    width: fit-content;
    padding: 5px 14px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(12px);
}

.aw-hero__slide.is-active .aw-hero__tag {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease .2s, transform .5s ease .2s;
}

.aw-hero__title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 700;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -.04em;
    text-transform: uppercase;
    margin: 0 0 18px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
}

.aw-hero__slide.is-active .aw-hero__title {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease .35s, transform .6s cubic-bezier(.16,1,.3,1) .35s;
}

.aw-hero__subtitle {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
    margin: 0 0 28px;
    max-width: 440px;
    opacity: 0;
    transform: translateY(14px);
}

.aw-hero__slide.is-active .aw-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease .5s, transform .5s ease .5s;
}

.aw-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 0 28px;
    height: 52px;
    background: #fff;
    color: #0D0D0D;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s, transform .1s;
    opacity: 0;
    transform: translateY(14px);
}

.aw-hero__slide.is-active .aw-hero__cta {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease .6s, transform .5s ease .6s;
}

.aw-hero__cta:hover {
    background: #EFEFED;
}

.aw-hero__link-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    background: transparent;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
}

.aw-hero__link-overlay:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -6px;
}

.aw-hero__cta:active {
    transform: scale(.97);
}

.aw-hero__cta svg {
    display: block;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.aw-hero__cta:hover svg {
    transform: translateX(3px);
}

/* ── Nav ── */
.aw-hero__nav {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.aw-hero__dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.aw-hero__dot {
    width: 8px;
    height: 3px;
    background: rgba(255, 255, 255, .35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .3s ease;
}

.aw-hero__dot.is-active {
    width: 32px;
    background: #fff;
}

.aw-hero__dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, .6);
}

.aw-hero__progress {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, .15);
    overflow: hidden;
    border-radius: 1px;
}

.aw-hero__progress-bar {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 1px;
}

.aw-hero__counter {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    display: flex;
    gap: 3px;
    letter-spacing: .04em;
}

.aw-hero__counter-current {
    color: #fff;
    font-weight: 700;
}

.aw-hero__counter-sep {
    opacity: .4;
}

/* Ken Burns */
@keyframes aw-ken-burns {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.aw-hero__slide.is-active .aw-hero__bg img {
    animation: aw-ken-burns 8s ease-out forwards;
}

.aw-hero__slide:not(.is-active) .aw-hero__bg img {
    animation: none;
    transform: scale(1);
}

/* ── Toggle por slide: animações desligadas ── */
.aw-hero__slide--no-anim.is-active .aw-hero__bg img,
.aw-hero__slide--no-anim .aw-hero__bg img {
    animation: none !important;
    transform: none !important;
}

.aw-hero__slide--no-anim .aw-hero__tag,
.aw-hero__slide--no-anim .aw-hero__title,
.aw-hero__slide--no-anim .aw-hero__subtitle,
.aw-hero__slide--no-anim .aw-hero__cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .aw-hero {
        height: clamp(500px, 130vw, 700px);
    }

    .aw-hero__overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 0, 0, .35) 45%,
            rgba(0, 0, 0, .12) 100%
        );
    }

    .aw-hero__content {
        padding: 0 24px 60px;
        justify-content: flex-end;
    }

    .aw-hero__tag {
        margin-bottom: 14px;
        font-size: 9px;
    }

    .aw-hero__title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .aw-hero__subtitle {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .aw-hero__cta {
        height: 46px;
        padding: 0 22px;
        font-size: 11px;
    }

    .aw-hero__nav {
        bottom: 24px;
        left: 24px;
        gap: 12px;
    }

    .aw-hero__dot.is-active {
        width: 24px;
    }

    .aw-hero__progress {
        width: 40px;
    }

    .aw-ann__item {
        font-size: 10px;
        letter-spacing: .06em;
    }
}

/* ── Tablet ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .aw-hero__content {
        padding: 0 48px;
    }

    .aw-hero__nav {
        left: 48px;
    }

    .aw-hero__title {
        font-size: 48px;
    }
}


/* ══════════════════════════════════════════
   Categories Grid — 3+3 symmetrical
   ══════════════════════════════════════════ */
.aw-cats {
    padding: 60px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.aw-cats__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.aw-cats__label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #BBB;
    display: block;
    margin-bottom: 8px;
}

.aw-cats__title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0D0D0D;
    letter-spacing: -.03em;
    text-transform: uppercase;
    margin: 0;
}

.aw-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.aw-cat-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
    aspect-ratio: 4/3;
    background: #1a1a1a;
}

.aw-cat-card__img {
    position: absolute;
    inset: 0;
}

.aw-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.aw-cat-card:hover .aw-cat-card__img img {
    transform: scale(1.05);
}

.aw-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}

.aw-cat-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.aw-cat-card__name {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.aw-cat-card__arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
    color: #fff;
}

.aw-cat-card__arrow svg {
    stroke: #fff;
}

.aw-cat-card:hover .aw-cat-card__arrow {
    background: rgba(255,255,255,.5);
}
}

.aw-cat-card__arrow svg {
    stroke: #fff;
}

.aw-cat-card:hover .aw-cat-card__arrow {
    background: rgba(255,255,255,.35);
}

/* Categories Mobile — horizontal scroll */
@media (max-width: 767px) {
    .aw-cats {
        padding: 40px 0;
    }

    .aw-cats__header {
        padding: 0 16px;
        margin-bottom: 20px;
    }

    .aw-cats__title {
        font-size: 24px;
    }

    .aw-cats__grid {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px;
    }

    .aw-cats__grid::-webkit-scrollbar {
        display: none;
    }

    .aw-cat-card {
        flex: 0 0 44vw;
        aspect-ratio: 3/4;
        scroll-snap-align: start;
    }

    .aw-cat-card__content {
        padding: 14px;
    }

    .aw-cat-card__name {
        font-size: 13px;
    }

    .aw-cat-card__arrow {
        width: 30px;
        height: 30px;
    }

    .aw-cat-card__arrow svg {
        width: 13px;
        height: 13px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .aw-cats {
        padding: 48px 24px;
    }

    .aw-cats__title {
        font-size: 28px;
    }

    .aw-cats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .aw-cat-card {
        aspect-ratio: 3/2;
    }
}


/* ══════════════════════════════════════════
   USP Bar — Vertical Ticker
   ══════════════════════════════════════════ */
.aw-usp {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    z-index: 50;
}

.aw-usp__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .4s ease, transform .4s ease;
    padding: 0 16px;
}

.aw-usp__slide.is-active {
    opacity: 1;
    transform: translateY(0);
}

.aw-usp__slide.is-leaving {
    opacity: 0;
    transform: translateY(-100%);
}

.aw-usp__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.aw-usp__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 767px) {
    .aw-usp__text {
        font-size: 10px !important;
        letter-spacing: .04em;
    }
}


/* ══════════════════════════════════════════
   CTA Banner
   ══════════════════════════════════════════ */
.aw-cta {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #0D0D0D;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.aw-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.aw-cta__label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

.aw-cta__title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin: 0;
    line-height: 1.1;
}

.aw-cta__subtitle {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin: 0;
    max-width: 420px;
}

.aw-cta__buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.aw-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    height: 46px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background .15s;
}

.aw-cta__btn--white {
    background: #fff;
    color: #0D0D0D;
}

.aw-cta__btn--white:hover {
    background: #EFEFED;
}

.aw-cta__btn--whatsapp {
    background: #25D366;
    color: #fff;
}

.aw-cta__btn--whatsapp:hover {
    background: #1DB954;
}

@media (max-width: 767px) {
    .aw-cta {
        min-height: 300px;
    }

    .aw-cta__title {
        font-size: 28px;
    }

    .aw-cta__content {
        padding: 40px 20px;
    }

    .aw-cta__btn {
        height: 42px;
        font-size: 10px;
        padding: 0 18px;
    }
}


/* ══════════════════════════════════════════
   Shop by Size
   ══════════════════════════════════════════ */
.aw-sz {
    padding: 60px 48px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Instrument Sans', sans-serif;
}

.aw-sz__title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0D0D0D;
    letter-spacing: -.03em;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 32px;
}

/* Tabs */
.aw-sz-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 28px;
    border-bottom: 1.5px solid #EFEFED;
}

.aw-sz-tab {
    padding: 10px 24px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1.5px;
    transition: all .15s;
}

.aw-sz-tab:hover {
    color: #0D0D0D;
}

.aw-sz-tab--active {
    color: #0D0D0D;
    border-bottom-color: #0D0D0D;
}

/* Groups */
.aw-sz-group {
    margin-bottom: 20px;
    text-align: center;
}

.aw-sz-group-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #BBB;
    margin-bottom: 10px;
}

.aw-sz-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.aw-sz-btn {
    height: 42px;
    min-width: 52px;
    padding: 0 16px;
    border: 1px solid #E0E0DE;
    background: #fff;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0D0D0D;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s;
}

.aw-sz-btn:hover {
    border-color: #0D0D0D;
    background: #F5F5F3;
    color: #0D0D0D;
}

/* Mobile */
@media (max-width: 767px) {
    .aw-sz {
        padding: 40px 16px;
    }

    .aw-sz__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .aw-sz-tab {
        padding: 8px 16px;
        font-size: 11px;
    }

    .aw-sz-grid {
        gap: 6px;
    }

    .aw-sz-btn {
        height: 38px;
        min-width: 44px;
        padding: 0 12px;
        font-size: 12px;
    }
}


/* ══════════════════════════════════════════
   Mosaic Banners — 3 panels
   ══════════════════════════════════════════ */
.aw-mosaic {
    width: 100%;
    overflow: hidden;
}

.aw-mosaic__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.aw-mosaic__card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
    aspect-ratio: 4/5;
    background: #1a1a1a;
}

.aw-mosaic__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.aw-mosaic__card:hover .aw-mosaic__media {
    transform: scale(1.04);
}

.aw-mosaic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
    pointer-events: none;
}

.aw-mosaic__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.aw-mosaic__title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.aw-mosaic__arrow {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}

.aw-mosaic__card:hover .aw-mosaic__arrow {
    background: rgba(255,255,255,.25);
}

/* ── Mosaic Mobile — carousel with peek ── */
@media (max-width: 767px) {
    .aw-mosaic__track {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px;
        grid-template-columns: none;
    }

    .aw-mosaic__track::-webkit-scrollbar {
        display: none;
    }

    .aw-mosaic__card {
        flex: 0 0 85vw;
        scroll-snap-align: start;
        aspect-ratio: 4/5;
    }

    .aw-mosaic__content {
        padding: 16px;
    }

    .aw-mosaic__title {
        font-size: 14px;
    }

    .aw-mosaic__arrow {
        width: 32px;
        height: 32px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .aw-mosaic__track {
        padding: 0 24px;
    }

    .aw-mosaic__card {
        aspect-ratio: 2/3;
    }
}

/* ── Override: remove search icon hover ── */
.aw-search__trigger:hover {
    opacity: 1 !important;
    transform: none !important;
}
