:root {
    --black: #050505;
    --black-2: #0b0b0b;
    --graphite: #111111;
    --graphite-2: #191919;
    --line: rgba(255, 255, 255, 0.12);
    --line-gold: rgba(199, 162, 75, 0.35);
    --gold: #c7a24b;
    --gold-dark: #8e6a24;
    --white: #ffffff;
    --gray: #989898;
    --gray-light: #d2d2d2;
    --container: 1360px;
    --header-height: 86px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-160%);
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.noise-layer {
    position: fixed;
    z-index: 900;
    inset: 0;
    pointer-events: none;
    opacity: .055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.top-marquee {
    position: relative;
    z-index: 1002;
    overflow: hidden;
    height: 34px;
    background: var(--gold);
    color: var(--black);
    border-bottom: 1px solid rgba(0, 0, 0, .28);
}

.top-marquee-track,
.brand-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 200%;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.top-marquee-track {
    height: 34px;
    gap: 24px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
}

.top-marquee-track span,
.top-marquee-track i {
    flex: 0 0 auto;
}

.top-marquee-track i {
    font-style: normal;
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    background: rgba(5, 5, 5, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled {
    height: 72px;
    background: rgba(5, 5, 5, .97);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.header-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    height: 100%;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 17px;
    letter-spacing: -.06em;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 21px;
    letter-spacing: .08em;
}

.brand-copy small {
    margin-top: 6px;
    color: var(--gray);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .19em;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 1.8vw, 28px);
}

.main-nav a {
    position: relative;
    color: #d9d9d9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold);
    transition: transform .28s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

.header-icon:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    color: var(--gold);
}

.header-icon svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform .3s ease, opacity .3s ease;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button:active {
    transform: translateY(0) scale(.98);
}

.button-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 12px 35px rgba(199, 162, 75, .12);
}

.button-gold:hover {
    background: #d5b560;
    box-shadow: 0 18px 42px rgba(199, 162, 75, .22);
}

.button-outline {
    border-color: rgba(255, 255, 255, .28);
    background: transparent;
    color: var(--white);
}

.button-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
}

.urban-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.urban-kicker::before {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.hero-street {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 120px);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(199, 162, 75, .09), transparent 30%),
        linear-gradient(110deg, #050505 0%, #080808 55%, #0f0f0f 100%);
}

.hero-street::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-ghost {
    position: absolute;
    z-index: -1;
    top: 6%;
    left: -2%;
    color: transparent;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: clamp(150px, 22vw, 390px);
    line-height: .8;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .035);
    user-select: none;
}

.hero-street-grid {
    display: grid;
    min-height: calc(100vh - 120px);
    grid-template-columns: minmax(0, .93fr) minmax(430px, 1.07fr);
    align-items: center;
    gap: 5vw;
    padding-block: 72px 86px;
}

.hero-street-copy {
    position: relative;
    z-index: 2;
}

.hero-street-copy h1,
.internal-hero h1,
.urban-heading h2,
.drop-overlay h2,
.kit-copy h2,
.about-copy h2,
.location-street-copy h2,
.story-copy h2,
.contact-panel h2,
.contact-form h2,
.catalog-cta h2,
.about-final-cta h2 {
    margin: 0;
    font-family: "Archivo Black", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .91;
    text-transform: uppercase;
}

.hero-street-copy h1 {
    margin-top: 28px;
    font-size: clamp(58px, 7.2vw, 120px);
}

.hero-street-copy h1 span,
.internal-hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
}

.hero-street-copy > p {
    max-width: 620px;
    margin: 30px 0 0;
    color: #bcbcbc;
    font-size: clamp(16px, 1.3vw, 20px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-signals {
    display: grid;
    max-width: 680px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 52px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.hero-signals span {
    color: var(--gray);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.hero-signals b {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 11px;
}

.hero-street-media {
    position: relative;
    min-height: 640px;
}

.hero-street-media::before {
    position: absolute;
    z-index: 1;
    top: -18px;
    right: -18px;
    bottom: 18px;
    left: 18px;
    content: "";
    border: 1px solid var(--line-gold);
}

.hero-street-media img {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .5);
    animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.035); }
}

.hero-tape {
    position: absolute;
    z-index: 4;
    padding: 10px 22px;
    background: rgba(218, 206, 168, .85);
    color: #161616;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.hero-tape-one {
    top: 8%;
    left: -7%;
    transform: rotate(-5deg);
}

.hero-tape-two {
    right: -5%;
    bottom: 10%;
    transform: rotate(4deg);
}

.hero-coordinate {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 22px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.brand-marquee {
    overflow: hidden;
    padding: 20px 0;
    border-block: 1px solid rgba(0, 0, 0, .2);
    background: var(--gold);
    color: var(--black);
}

.brand-marquee-track {
    gap: 30px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: clamp(21px, 2.1vw, 35px);
    line-height: 1;
    animation-duration: 24s;
}

.brand-marquee-track span,
.brand-marquee-track i {
    flex: 0 0 auto;
}

.brand-marquee-track i {
    font-size: .48em;
    font-style: normal;
}

.section {
    position: relative;
    padding: 122px 0;
}

.section-black {
    background: var(--black);
}

.section-concrete {
    overflow: hidden;
    background:
        linear-gradient(130deg, rgba(255,255,255,.025), transparent 40%),
        var(--graphite);
}

.section-concrete::after {
    position: absolute;
    right: -80px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    content: "";
    border: 1px solid rgba(199, 162, 75, .12);
    border-radius: 50%;
}

.urban-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: end;
    gap: 56px;
    margin-bottom: 54px;
}

.urban-heading h2 {
    margin-top: 18px;
    font-size: clamp(44px, 5.3vw, 88px);
}

.urban-heading > p,
.heading-action p {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
}

.heading-action {
    display: grid;
    gap: 20px;
    justify-items: start;
}

.text-link {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

.text-link:hover {
    transform: translateX(6px);
    color: #e1c373;
}

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

.urban-category {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid var(--line);
    background: var(--black);
}

.urban-category::after {
    position: absolute;
    inset: 0;
    content: "";
    box-shadow: inset 0 0 0 0 var(--gold);
    transition: box-shadow .35s ease;
}

.urban-category:hover::after {
    box-shadow: inset 0 0 0 4px var(--gold);
}

.urban-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .5s ease;
}

.urban-category:hover img {
    transform: scale(1.055);
    filter: contrast(1.08);
}

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

.product-card {
    position: relative;
    min-width: 0;
    border: 1px solid var(--line);
    background: var(--graphite);
    transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--line-gold);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
}

.product-media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 0;
    border: 0;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease), filter .45s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.045);
    filter: contrast(1.08);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    background: var(--gold);
    color: var(--black);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-quick {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px;
    transform: translateY(80px);
    background: rgba(5, 5, 5, .88);
    color: var(--white);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-align: center;
    opacity: 0;
    backdrop-filter: blur(8px);
    transition: transform .35s var(--ease), opacity .35s ease;
}

.product-card:hover .product-quick {
    transform: translateY(0);
    opacity: 1;
}

.product-content {
    padding: 20px 18px 18px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-meta span:last-child {
    color: var(--gray);
    text-align: right;
}

.product-content h3 {
    min-height: 52px;
    margin: 12px 0 8px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.25;
    text-transform: uppercase;
}

.product-size {
    color: var(--gray);
    font-size: 11px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.product-bottom strong {
    color: var(--white);
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.product-whatsapp {
    color: var(--gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
}

.drop-section {
    padding: 60px 0 120px;
    background: var(--black);
}

.drop-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 1px solid var(--line-gold);
}

.drop-card > img {
    width: 100%;
    min-height: 620px;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.drop-card:hover > img {
    transform: scale(1.025);
}

.drop-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(5,5,5,.95), rgba(5,5,5,.5) 45%, rgba(5,5,5,.05));
}

.drop-overlay {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(30px, 6vw, 90px);
    max-width: 620px;
    transform: translateY(-50%);
}

.drop-overlay h2 {
    margin-top: 22px;
    font-size: clamp(55px, 7.2vw, 112px);
}

.drop-overlay p {
    margin: 24px 0 32px;
    color: #c7c7c7;
    font-size: 17px;
}

.kit-section {
    overflow: hidden;
    background: var(--graphite);
}

.kit-section::before {
    position: absolute;
    top: 50%;
    right: -140px;
    width: 520px;
    height: 520px;
    content: "";
    transform: translateY(-50%) rotate(12deg);
    border: 1px solid rgba(199, 162, 75, .15);
}

.kit-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(44px, 7vw, 110px);
}

.kit-media {
    position: relative;
}

.kit-media::before {
    position: absolute;
    z-index: 0;
    top: -18px;
    right: 18px;
    bottom: 18px;
    left: -18px;
    content: "";
    border: 1px solid var(--line-gold);
}

.kit-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.kit-copy h2 {
    margin-top: 22px;
    font-size: clamp(58px, 7vw, 105px);
}

.kit-copy > p {
    margin: 28px 0;
    color: var(--gray-light);
}

.kit-list {
    display: grid;
    gap: 0;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.kit-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.kit-list span {
    color: var(--gold);
}

.about-street {
    background: var(--black);
}

.about-street-grid {
    display: grid;
    grid-template-columns: .55fr 1fr .55fr;
    align-items: center;
    gap: 40px;
}

.about-number {
    color: transparent;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: clamp(135px, 16vw, 260px);
    line-height: .8;
    -webkit-text-stroke: 1px rgba(199, 162, 75, .35);
}

.about-copy h2 {
    margin-top: 20px;
    font-size: clamp(50px, 6vw, 90px);
}

.about-copy p {
    margin: 24px 0 0;
    color: var(--gray);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 34px;
}

.about-stamp {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    transform: rotate(7deg);
    text-align: center;
}

.about-stamp span {
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 65px);
    line-height: .9;
}

.about-stamp small {
    display: block;
    max-width: 160px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .16em;
}

.instagram-section {
    background: var(--graphite);
}

.instagram-urban-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr;
    grid-template-rows: repeat(2, 300px);
    gap: 14px;
}

.instagram-urban-grid a {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

.instagram-urban-grid a:first-child {
    grid-row: span 2;
}

.instagram-urban-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease), filter .4s ease;
}

.instagram-urban-grid a:hover img {
    transform: scale(1.06);
    filter: contrast(1.1);
}

.features-section {
    padding-block: 70px;
    border-block: 1px solid var(--line);
    background: var(--black);
}

.features-urban {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.features-urban article {
    min-height: 200px;
    padding: 10px 30px 10px 0;
    border-right: 1px solid var(--line);
}

.features-urban article:not(:first-child) {
    padding-left: 30px;
}

.features-urban article:last-child {
    border-right: 0;
}

.features-urban span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
}

.features-urban h3 {
    margin: 50px 0 12px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1;
}

.features-urban p {
    margin: 0;
    color: var(--gray);
    font-size: 13px;
}

.location-street {
    padding: 120px 0;
    overflow: hidden;
    background: var(--gold);
    color: var(--black);
}

.location-street-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(40px, 7vw, 110px);
    align-items: center;
}

.location-street .urban-kicker {
    color: var(--black);
}

.location-street-copy h2 {
    margin-top: 20px;
    font-size: clamp(60px, 7vw, 108px);
}

.location-street-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 36px 0;
}

.location-street-info div {
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.28);
}

.location-street-info small,
.contact-data small,
.modal-specs small {
    display: block;
    margin-bottom: 8px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .15em;
}

.location-street-info strong {
    font-size: 13px;
    line-height: 1.5;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-street .button-gold {
    background: var(--black);
    color: var(--white);
}

.location-street .button-outline {
    border-color: rgba(0,0,0,.45);
    color: var(--black);
}

.location-street .button-outline:hover {
    border-color: var(--black);
    background: rgba(0,0,0,.06);
}

.urban-map {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
    overflow: hidden;
    border: 2px solid var(--black);
    background: #b58e39;
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(0,0,0,.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.35) 1px, transparent 1px);
    background-size: 48px 48px;
}

.map-road {
    position: absolute;
    height: 26px;
    background: var(--black);
}

.map-road-one {
    width: 130%;
    transform: rotate(-24deg);
}

.map-road-two {
    width: 120%;
    transform: rotate(33deg);
}

.map-pin-urban {
    position: relative;
    z-index: 2;
    display: grid;
    width: 118px;
    height: 118px;
    place-items: center;
    border: 5px solid var(--black);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--gold);
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 38px;
    box-shadow: 0 22px 50px rgba(0,0,0,.25);
}

.map-pin-urban small,
.map-pin-urban::before {
    transform: rotate(45deg);
}

.map-pin-urban small {
    position: absolute;
    bottom: 17px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .15em;
}

.urban-map > strong {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 22px;
    left: 24px;
    padding: 13px 16px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    letter-spacing: .12em;
    text-align: center;
}

.site-footer {
    padding: 80px 0 24px;
    background: #030303;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .65fr .85fr 1.05fr;
    gap: 50px;
}

.footer-brand h2 {
    margin: 22px 0 12px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
}

.footer-brand p,
.footer-column p {
    color: var(--gray);
    font-size: 13px;
}

.footer-column,
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column a {
    color: #d7d7d7;
    font-size: 12px;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-label {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-cta h3 {
    margin: 0 0 12px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 32px;
    line-height: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 70px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #696969;
    font-size: 10px;
}

.footer-bottom a {
    color: var(--gold);
}

.floating-whatsapp {
    position: fixed;
    z-index: 850;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--black);
    color: var(--gold);
    box-shadow: 0 16px 45px rgba(0,0,0,.4);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) rotate(-4deg);
    background: var(--gold);
    color: var(--black);
}

.floating-whatsapp svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.product-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
}

.product-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.86);
    backdrop-filter: blur(8px);
}

.modal-shell {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(1040px, 100%);
    max-height: calc(100vh - 48px);
    grid-template-columns: .95fr 1.05fr;
    overflow: auto;
    border: 1px solid var(--line-gold);
    background: var(--graphite);
    box-shadow: 0 40px 120px rgba(0,0,0,.65);
    transform: translateY(24px) scale(.98);
    transition: transform .35s var(--ease);
}

.product-modal.is-open .modal-shell {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(5,5,5,.9);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.modal-media {
    min-height: 600px;
    background: var(--black);
}

.modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 6vw, 78px);
}

.modal-kicker {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.modal-copy h2 {
    margin: 18px 0 14px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .98;
    text-transform: uppercase;
}

.modal-price {
    color: var(--gold);
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 25px;
    font-weight: 400;
}

.modal-copy > p {
    margin: 25px 0;
    color: var(--gray-light);
}

.modal-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.modal-specs div {
    padding: 16px;
    border: 1px solid var(--line);
}

.modal-specs small {
    color: var(--gold);
}

.modal-specs strong {
    font-size: 12px;
}

.modal-note {
    margin-top: 14px;
    color: #777;
    font-size: 10px;
}

.site-toast {
    position: fixed;
    z-index: 3000;
    right: 24px;
    bottom: 96px;
    max-width: 360px;
    padding: 16px 18px;
    transform: translateY(20px);
    border-left: 4px solid var(--gold);
    background: #181818;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
}

.site-toast.is-visible {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.internal-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 90px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(199,162,75,.08), transparent 38%),
        var(--black);
}

.internal-hero::after {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 400px;
    height: 400px;
    content: "";
    border: 1px solid rgba(199,162,75,.2);
    transform: rotate(18deg);
}

.internal-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .65fr;
    align-items: end;
    gap: 60px;
}

.internal-hero h1 {
    margin-top: 22px;
    font-size: clamp(58px, 7vw, 112px);
}

.internal-hero p {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
}

.catalog-section {
    background: var(--graphite);
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(500px, 1.7fr) auto;
    gap: 22px;
    align-items: end;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.catalog-search {
    display: grid;
    gap: 10px;
}

.catalog-search span,
.contact-form label > span {
    color: var(--gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
}

.catalog-search input,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: var(--black);
    color: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.catalog-search input {
    height: 50px;
    padding: 0 16px;
}

.catalog-search input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199,162,75,.08);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-buttons button {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: transparent;
    color: #c6c6c6;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.catalog-count {
    display: grid;
    justify-items: end;
}

.catalog-count strong {
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

.catalog-count span {
    color: var(--gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .14em;
}

.catalog-empty {
    padding: 60px 20px;
    border: 1px dashed var(--line-gold);
    color: var(--gray);
    text-align: center;
}

.catalog-cta {
    padding: 72px 0;
    background: var(--gold);
    color: var(--black);
}

.catalog-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.catalog-cta .urban-kicker {
    color: var(--black);
}

.catalog-cta h2 {
    margin-top: 12px;
    font-size: clamp(42px, 5vw, 72px);
}

.catalog-cta .button-gold {
    background: var(--black);
    color: var(--white);
}

.story-section {
    background: var(--graphite);
}

.story-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: clamp(50px, 9vw, 150px);
    align-items: center;
}

.story-number {
    color: rgba(255,255,255,.08);
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: clamp(60px, 8vw, 130px);
    line-height: .8;
    text-align: center;
}

.story-number span {
    display: block;
    color: transparent;
    font-size: 1.6em;
    -webkit-text-stroke: 1px var(--gold);
}

.story-copy h2 {
    margin-top: 22px;
    font-size: clamp(50px, 5.6vw, 88px);
}

.story-copy p {
    color: var(--gray-light);
}

.story-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.story-lines span {
    padding: 10px 14px;
    border: 1px solid var(--line-gold);
    color: var(--gold);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.values-section {
    background: var(--black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.values-grid article {
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--graphite);
}

.values-grid span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.values-grid h3 {
    margin: 120px 0 16px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
}

.values-grid p {
    color: var(--gray);
}

.about-final-cta {
    padding: 100px 0;
    background: var(--gold);
    color: var(--black);
    text-align: center;
}

.about-final-cta .urban-kicker {
    color: var(--black);
}

.about-final-cta h2 {
    margin: 20px auto 36px;
    font-size: clamp(45px, 6vw, 88px);
}

.about-final-cta > .container > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.about-final-cta .button-gold {
    background: var(--black);
    color: var(--white);
}

.about-final-cta .button-outline {
    border-color: rgba(0,0,0,.45);
    color: var(--black);
}

.contact-section {
    background: var(--graphite);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 20px;
}

.contact-panel,
.contact-form {
    padding: clamp(34px, 5vw, 70px);
    border: 1px solid var(--line);
    background: var(--black);
}

.contact-panel h2,
.contact-form h2 {
    margin-top: 20px;
    font-size: clamp(48px, 5vw, 78px);
}

.contact-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin: 40px 0;
}

.contact-data div {
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.contact-data small {
    color: var(--gold);
}

.contact-data strong,
.contact-data a {
    font-size: 13px;
}

.contact-data a {
    color: var(--gold);
}

.contact-form {
    display: grid;
    gap: 18px;
    background: #0e0e0e;
}

.contact-form label {
    display: grid;
    gap: 9px;
}

.contact-form input,
.contact-form select {
    height: 52px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
    padding: 14px 15px;
}

.contact-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

.contact-form > small {
    color: #777;
    font-size: 9px;
}

.reveal,
.reveal-item,
.reveal-group > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible,
.reveal-item.is-visible,
.reveal-group.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: .4s; }

[hidden] {
    display: none !important;
}

@media (max-width: 1180px) {
    .header-grid {
        grid-template-columns: 190px 1fr auto;
        gap: 18px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 9px;
    }

    .header-actions .button {
        display: none;
    }

    .hero-street-grid {
        grid-template-columns: 1fr .9fr;
    }

    .hero-street-media {
        min-height: 560px;
    }

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

    .urban-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .urban-category {
        min-height: 580px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr .8fr;
    }

    .footer-cta {
        grid-column: 1 / -1;
        padding-top: 30px;
        border-top: 1px solid var(--line);
    }

    .catalog-toolbar {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .catalog-count {
        justify-items: start;
    }
}

@media (max-width: 920px) {
    :root { --header-height: 74px; }

    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .site-header.is-scrolled {
        height: 68px;
    }

    .header-grid {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .main-nav {
        position: fixed;
        z-index: 1001;
        top: calc(34px + var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 30px 24px 60px;
        transform: translateX(100%);
        background: rgba(5,5,5,.99);
        visibility: hidden;
        transition: transform .35s var(--ease), visibility .35s ease;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav a {
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
        font-family: "Archivo Black", Arial, sans-serif;
        font-size: 25px;
        font-weight: 400;
    }

    .main-nav a::after {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hero-street-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-block: 72px 70px;
    }

    .hero-street-copy {
        max-width: 720px;
    }

    .hero-street-media {
        min-height: 620px;
    }

    .urban-heading,
    .internal-hero-grid,
    .kit-grid,
    .location-street-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .urban-heading {
        gap: 24px;
    }

    .kit-copy {
        order: -1;
    }

    .about-street-grid {
        grid-template-columns: .4fr 1fr;
    }

    .about-stamp {
        grid-column: 1 / -1;
        width: 240px;
        justify-self: center;
    }

    .features-urban {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-urban article:nth-child(2) {
        border-right: 0;
    }

    .features-urban article:nth-child(n+3) {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid var(--line);
    }

    .urban-map {
        min-height: 460px;
    }

    .contact-panel,
    .contact-form {
        padding: 40px;
    }
}

@media (max-width: 700px) {
    .top-marquee-track {
        gap: 16px;
        font-size: 9px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy small {
        font-size: 7px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .section {
        padding: 86px 0;
    }

    .hero-street-copy h1 {
        font-size: clamp(50px, 15.2vw, 74px);
    }

    .hero-street-copy > p {
        font-size: 15px;
    }

    .hero-buttons {
        display: grid;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-signals {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-signals span {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .hero-signals b {
        margin: 0;
    }

    .hero-street-media {
        min-height: 460px;
    }

    .hero-tape-one {
        left: 3%;
    }

    .hero-tape-two {
        right: 2%;
    }

    .urban-heading h2,
    .kit-copy h2,
    .about-copy h2,
    .location-street-copy h2,
    .story-copy h2,
    .contact-panel h2,
    .contact-form h2 {
        font-size: clamp(42px, 13.5vw, 66px);
    }

    .urban-categories {
        display: flex;
        margin-right: calc((100vw - 100%) / -2);
        padding-right: 17px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .urban-categories::-webkit-scrollbar { display: none; }

    .urban-category {
        min-width: 82vw;
        min-height: 500px;
        scroll-snap-align: start;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-content {
        padding: 15px 12px 14px;
    }

    .product-meta {
        display: grid;
        gap: 4px;
    }

    .product-meta span:last-child {
        text-align: left;
    }

    .product-content h3 {
        min-height: 48px;
        font-size: 13px;
    }

    .product-size {
        font-size: 9px;
    }

    .product-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-bottom strong {
        font-size: 14px;
    }

    .product-quick {
        display: none;
    }

    .drop-section {
        padding-bottom: 86px;
    }

    .drop-card,
    .drop-card > img {
        min-height: 640px;
    }

    .drop-card > img {
        object-position: 62% center;
    }

    .drop-card::after {
        background: linear-gradient(0deg, rgba(5,5,5,.96), rgba(5,5,5,.4) 85%);
    }

    .drop-overlay {
        top: auto;
        right: 24px;
        bottom: 32px;
        left: 24px;
        transform: none;
    }

    .drop-overlay h2 {
        font-size: 56px;
    }

    .about-street-grid {
        grid-template-columns: 1fr;
    }

    .about-number {
        font-size: 160px;
    }

    .instagram-urban-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 210px);
    }

    .instagram-urban-grid a:first-child {
        grid-row: span 1;
    }

    .features-urban {
        grid-template-columns: 1fr;
    }

    .features-urban article,
    .features-urban article:not(:first-child) {
        min-height: 0;
        margin: 0;
        padding: 24px 0;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .features-urban h3 {
        margin-top: 25px;
    }

    .location-street-info,
    .contact-data,
    .modal-specs {
        grid-template-columns: 1fr;
    }

    .location-buttons,
    .about-actions {
        display: grid;
    }

    .location-buttons .button {
        width: 100%;
    }

    .urban-map {
        min-height: 380px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-cta {
        grid-column: auto;
    }

    .footer-bottom,
    .catalog-cta-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .modal-shell {
        grid-template-columns: 1fr;
    }

    .modal-media {
        min-height: 360px;
        max-height: 46vh;
    }

    .modal-copy {
        padding: 30px 24px 36px;
    }

    .internal-hero {
        padding: 90px 0 70px;
    }

    .internal-hero h1 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .filter-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-buttons button {
        width: 100%;
    }

    .story-number {
        text-align: left;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-grid article {
        min-height: 280px;
    }

    .contact-panel,
    .contact-form {
        padding: 30px 22px;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .brand-copy small {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-content h3 {
        min-height: auto;
        font-size: 17px;
    }

    .product-bottom {
        flex-direction: row;
        align-items: center;
    }

    .instagram-urban-grid {
        grid-template-rows: repeat(3, 170px);
    }

    .site-toast {
        right: 12px;
        bottom: 88px;
        left: 12px;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal,
    .reveal-item,
    .reveal-group > * {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   V4 — VISUAL LIMPO
   Faixa superior removida e linhas decorativas eliminadas.
   ========================================================= */

/* Sem traços, grades, círculos de contorno ou sublinhados decorativos */
.site-header,
.brand-marquee,
.features-section,
.site-footer,
.internal-hero,
.catalog-toolbar {
    border: 0;
}

.urban-kicker::before,
.hero-street::before,
.hero-street-media::before,
.section-concrete::after,
.urban-category::after,
.kit-section::before,
.kit-media::before,
.internal-hero::after,
.main-nav a::after {
    display: none;
}

.urban-kicker {
    gap: 0;
}

.hero-ghost,
.story-lines {
    display: none;
}

/* Títulos antes contornados passam a usar preenchimento dourado */
.hero-street-copy h1 span,
.internal-hero h1 span {
    color: var(--gold);
    -webkit-text-stroke: 0;
}

/* Navegação sem linha inferior */
.main-nav a.is-active,
.main-nav a:hover {
    color: var(--gold);
}

/* Marca e controles sem contornos finos */
.brand-mark {
    border: 0;
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 12px 28px rgba(199, 162, 75, .14);
}

.header-icon,
.menu-toggle {
    border: 0;
    background: var(--graphite-2);
}

.header-icon:hover {
    border-color: transparent;
    background: #222;
}

.button-outline {
    border: 0;
    background: var(--graphite-2);
    color: var(--white);
}

.button-outline:hover {
    border-color: transparent;
    background: #242424;
    color: var(--gold);
}

/* Blocos sem linhas divisórias */
.hero-signals,
.product-bottom,
.kit-list,
.kit-list li,
.location-street-info div,
.footer-bottom,
.contact-data div,
.footer-cta {
    border: 0;
}

.hero-signals {
    padding-top: 0;
}

.kit-list li {
    margin-bottom: 8px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, .035);
}

/* Cards e áreas passam a ser definidos por contraste, não por contorno */
.urban-category,
.product-card,
.drop-card,
.instagram-urban-grid a,
.values-grid article,
.contact-panel,
.contact-form,
.modal-shell,
.modal-specs div,
.urban-map,
.about-stamp {
    border: 0;
}

.urban-category,
.product-card,
.values-grid article,
.contact-panel,
.contact-form,
.modal-shell {
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.product-card:hover {
    border-color: transparent;
}

.about-stamp {
    background: var(--gold);
    color: var(--black);
}

.about-stamp small {
    color: rgba(0, 0, 0, .68);
}

.features-urban article,
.features-urban article:last-child,
.features-urban article:nth-child(2),
.features-urban article:nth-child(n+3) {
    border: 0;
}

.features-urban article {
    padding: 28px;
    background: rgba(255, 255, 255, .025);
}

.map-grid {
    background-image: none;
}

.floating-whatsapp,
.modal-close {
    border: 0;
}

.modal-close {
    background: rgba(5, 5, 5, .78);
}

.site-toast {
    border: 0;
}

/* Campos e filtros sem linhas externas */
.catalog-search input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.filter-buttons button,
.catalog-empty {
    border: 0;
}

.catalog-search input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.filter-buttons button {
    background-color: #1a1a1a;
}

.catalog-search input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(199, 162, 75, .38);
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
    border-color: transparent;
}

.catalog-empty {
    background: var(--graphite);
}

/* Menu móvel começa no topo correto após a remoção da faixa superior */
@media (max-width: 920px) {
    .main-nav {
        top: var(--header-height);
    }

    .site-header.is-scrolled + .main-nav,
    .main-nav {
        border: 0;
    }

    .main-nav a,
    .features-urban article,
    .features-urban article:not(:first-child),
    .features-urban article:nth-child(n+3),
    .footer-cta {
        border: 0;
    }

    .main-nav a {
        margin-bottom: 5px;
        padding: 16px 18px;
        background: rgba(255, 255, 255, .025);
    }
}

/* v5 cleanup: remove decorative lines and simplify sections */
.main-nav a::after,
.urban-kicker::before,
.hero-street::before,
.hero-street-media::before,
.section-concrete::after,
.kit-section::before,
.kit-media::before,
.about-stamp,
.about-number,
.instagram-section,
.story-lines,
.story-lines span {
    display: none !important;
}

.brand-marquee,
.features-section,
.location-street-info div,
.product-bottom,
.footer-bottom,
.site-header,
.main-nav,
.drop-card,
.urban-category,
.product-card,
.location-card,
.contact-panel,
.contact-form,
.contact-form-grid input,
.contact-form-grid textarea,
.contact-form-grid select {
    border-color: transparent !important;
}

.hero-signals,
.kit-list,
.kit-list li,
.features-urban article,
.features-urban article:not(:first-child),
.contact-data,
.catalog-toolbar,
.location-card,
.footer-grid,
.footer-column,
.story-number,
.contact-data-item,
.location-street-info div {
    border: 0 !important;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: none !important;
}

.hero-ghost {
    opacity: .12;
    -webkit-text-stroke: 1px rgba(255,255,255,.02);
}

.hero-street-media {
    min-height: 560px;
}

.drop-card {
    overflow: hidden;
    border-radius: 0;
}

.features-urban {
    gap: 20px;
}

.features-urban article {
    padding: 10px 20px 10px 0;
}

.about-street-simple {
    max-width: 860px;
}

.about-street-simple h2 {
    margin: 20px 0 0;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: clamp(50px, 6vw, 90px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .91;
    text-transform: uppercase;
}

.about-street-simple p {
    margin: 24px 0 0;
    color: var(--gray);
    font-size: 16px;
}

.about-street-simple .about-actions {
    margin-top: 34px;
}

@media (max-width: 900px) {
    .hero-street-media { min-height: 440px; }
    .about-street-simple h2 { font-size: clamp(42px, 12vw, 68px); }
    .features-urban article { padding: 0; }
}

/* v6 about section + features side by side */
.about-street-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    align-items: start;
    gap: 52px;
}

.features-urban-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.features-urban-compact article {
    min-height: 210px;
    padding: 28px 24px;
    background: rgba(255,255,255,.02);
}

.features-urban-compact span {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
}

.features-urban-compact h3 {
    margin: 0 0 12px;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.features-urban-compact p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 980px) {
    .about-street-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .features-urban-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .features-urban-compact {
        grid-template-columns: 1fr;
    }

    .features-urban-compact article {
        min-height: auto;
    }
}

/* v8: preserve the original 4:5 artwork ratio in category cards */
.urban-category {
    aspect-ratio: 4 / 5;
    min-height: 0 !important;
}

.urban-category img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 700px) {
    .urban-category {
        min-width: min(82vw, 420px);
        min-height: 0 !important;
        aspect-ratio: 4 / 5;
    }
}

/* =========================================================
   V10 — EXPERIÊNCIA MOBILE ESPECÍFICA
   Desktop preservado; celular tratado como interface própria.
   ========================================================= */
.menu-backdrop,
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {
    :root {
        --header-height: 64px;
    }

    html {
        scroll-padding-top: calc(var(--header-height) + 12px);
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    body.menu-open .mobile-bottom-nav {
        transform: translateY(120%);
    }

    .noise-layer {
        opacity: .035;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header,
    .site-header.is-scrolled {
        z-index: 1301;
        height: var(--header-height);
        padding-top: env(safe-area-inset-top);
        background: rgba(5, 5, 5, .97);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
    }

    .header-grid {
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 10px;
    }

    .brand {
        gap: 10px;
        min-width: 0;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .brand-copy strong {
        font-size: 17px;
        letter-spacing: .06em;
    }

    .brand-copy small {
        margin-top: 4px;
        font-size: 6.5px;
        letter-spacing: .13em;
    }

    .menu-toggle {
        position: relative;
        z-index: 1304;
        display: block;
        width: 44px;
        height: 44px;
        padding: 10px;
        border-radius: 50%;
        background: #191919;
    }

    .menu-toggle span {
        height: 1.5px;
        margin: 5px 0;
    }

    .menu-backdrop {
        position: fixed;
        z-index: 1298;
        inset: 0;
        display: block;
        border: 0;
        background: rgba(0, 0, 0, .68);
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(4px);
        transition: opacity .28s ease, visibility .28s ease;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        z-index: 1302;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(86vw, 360px);
        padding: calc(86px + env(safe-area-inset-top)) 20px calc(90px + env(safe-area-inset-bottom));
        transform: translateX(105%);
        background: #080808;
        box-shadow: -24px 0 70px rgba(0,0,0,.6);
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav a {
        margin: 0 0 8px;
        padding: 15px 16px;
        border-radius: 10px;
        background: #121212;
        font-size: 21px;
        line-height: 1.08;
    }

    .main-nav a.is-active {
        background: var(--gold);
        color: var(--black);
    }

    .header-actions {
        display: none;
    }

    .hero-street {
        min-height: 0;
    }

    .hero-street-grid {
        display: flex;
        min-height: 0;
        flex-direction: column;
        gap: 28px;
        padding: 16px 0 56px;
    }

    .hero-street-media {
        order: -1;
        width: calc(100% + 32px);
        min-height: 0 !important;
        aspect-ratio: 4 / 4.65;
        margin-left: -16px;
        overflow: hidden;
        background: #111;
    }

    .hero-street-media img {
        object-position: center top;
        animation-duration: 18s;
    }

    .hero-tape {
        padding: 8px 13px;
        font-size: 7px;
        letter-spacing: .1em;
    }

    .hero-tape-one {
        top: 7%;
        left: 4%;
    }

    .hero-tape-two,
    .hero-coordinate {
        display: none;
    }

    .hero-street-copy h1 {
        margin-top: 17px;
        font-size: clamp(48px, 14vw, 68px);
        line-height: .88;
    }

    .hero-street-copy > p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .urban-kicker {
        font-size: 8px;
        letter-spacing: .17em;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 25px;
    }

    .button {
        min-height: 50px;
        padding-inline: 18px;
    }

    .hero-signals {
        display: flex;
        gap: 8px;
        margin: 24px -16px 0 0;
        padding-right: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .hero-signals::-webkit-scrollbar {
        display: none;
    }

    .hero-signals span {
        min-width: 170px;
        min-height: 68px;
        display: grid;
        align-content: center;
        gap: 4px;
        padding: 13px 14px;
        border-radius: 8px;
        background: #111;
        scroll-snap-align: start;
    }

    .hero-signals b {
        display: block;
        margin: 0;
    }

    .brand-marquee {
        padding: 14px 0;
    }

    .brand-marquee-track {
        gap: 20px;
        font-size: 20px;
        animation-duration: 20s;
    }

    .section {
        padding: 68px 0;
    }

    .urban-heading {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .urban-heading h2,
    .about-street-simple h2,
    .internal-hero h1,
    .contact-panel h2,
    .contact-form h2 {
        margin-top: 13px;
        font-size: clamp(39px, 11.5vw, 56px);
        line-height: .93;
    }

    .urban-heading > p,
    .heading-action p,
    .about-street-simple p {
        font-size: 14px;
        line-height: 1.65;
    }

    .heading-action {
        gap: 14px;
    }

    .urban-categories {
        gap: 12px;
        margin-right: -16px;
        padding: 0 16px 8px 0;
        scroll-padding-left: 0;
    }

    .urban-category {
        min-width: min(76vw, 330px) !important;
        aspect-ratio: 4 / 5;
        border-radius: 10px;
        scroll-snap-align: start;
        box-shadow: 0 20px 44px rgba(0,0,0,.26);
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-card {
        overflow: hidden;
        border-radius: 10px;
        background: #121212;
        box-shadow: none;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .product-media {
        aspect-ratio: 4 / 5;
    }

    .product-tag {
        top: 9px;
        left: 9px;
        padding: 5px 7px;
        border-radius: 4px;
        font-size: 6px;
    }

    .product-content {
        padding: 12px 10px 11px;
    }

    .product-meta {
        display: block;
        min-height: 18px;
        font-size: 6.5px;
        line-height: 1.35;
    }

    .product-meta span:last-child {
        display: none;
    }

    .product-content h3 {
        min-height: 38px;
        margin: 7px 0;
        font-size: 11.5px;
        line-height: 1.2;
    }

    .product-size {
        display: none;
    }

    .product-bottom {
        display: grid;
        gap: 8px;
        margin-top: 10px;
        padding-top: 0;
    }

    .product-bottom strong {
        font-size: 13px;
    }

    .product-whatsapp {
        display: flex;
        min-height: 34px;
        align-items: center;
        justify-content: center;
        padding: 7px;
        border-radius: 5px;
        background: var(--gold);
        color: var(--black);
        font-size: 7px;
        letter-spacing: .08em;
    }

    .drop-section {
        padding: 10px 0 68px;
    }

    .drop-card,
    .drop-card > img {
        min-height: 500px;
    }

    .drop-card {
        width: calc(100% + 32px);
        margin-left: -16px;
    }

    .drop-card > img {
        object-position: 61% center;
    }

    .drop-overlay {
        right: 20px;
        bottom: 24px;
        left: 20px;
    }

    .drop-overlay h2 {
        margin-top: 12px;
        font-size: clamp(47px, 14vw, 62px);
    }

    .drop-overlay p {
        margin: 17px 0 22px;
        font-size: 14px;
    }

    .about-street-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-actions {
        display: grid;
        gap: 14px;
        margin-top: 25px;
    }

    .features-urban-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px;
    }

    .features-urban-compact article {
        min-height: 155px;
        padding: 18px 15px;
        border-radius: 8px;
        background: #111;
    }

    .features-urban-compact span {
        margin-bottom: 18px;
        font-size: 9px;
    }

    .features-urban-compact h3 {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .features-urban-compact p {
        font-size: 11px;
        line-height: 1.5;
    }

    .internal-hero {
        padding: 60px 0 46px;
    }

    .catalog-section {
        padding-top: 38px;
    }

    .catalog-toolbar {
        gap: 16px;
        margin-bottom: 25px;
    }

    .catalog-search input {
        height: 50px;
        border-radius: 8px;
    }

    .filter-buttons {
        display: flex;
        gap: 8px;
        width: calc(100% + 16px);
        margin-right: -16px;
        padding-right: 16px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .filter-buttons button {
        width: auto;
        min-width: max-content;
        min-height: 42px;
        padding: 0 15px;
        border-radius: 22px;
    }

    .catalog-count {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .contact-grid {
        gap: 14px;
    }

    .contact-panel,
    .contact-form {
        padding: 25px 18px;
        border-radius: 10px;
    }

    .contact-data {
        gap: 12px;
        margin: 26px 0;
    }

    .contact-form input,
    .contact-form select {
        height: 50px;
    }

    .site-footer {
        padding-bottom: 24px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-column {
        gap: 9px;
    }

    .footer-cta .button {
        width: 100%;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 1200;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 66px;
        padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
        background: rgba(8,8,8,.97);
        box-shadow: 0 -12px 35px rgba(0,0,0,.42);
        backdrop-filter: blur(14px);
        transition: transform .3s ease;
    }

    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 4px;
        min-width: 0;
        border-radius: 8px;
        color: #9b9b9b;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .03em;
    }

    .mobile-bottom-nav a.is-active {
        color: var(--gold);
        background: rgba(199,162,75,.08);
    }

    .mobile-bottom-nav svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-bottom-nav .mobile-bottom-whatsapp {
        background: var(--gold);
        color: var(--black);
    }

    .product-modal {
        align-items: end;
        padding: 0;
    }

    .modal-backdrop {
        background: rgba(0,0,0,.74);
    }

    .modal-shell {
        width: 100%;
        max-height: min(92dvh, 820px);
        grid-template-columns: 1fr;
        border-radius: 18px 18px 0 0;
        transform: translateY(105%);
        overscroll-behavior: contain;
    }

    .product-modal.is-open .modal-shell {
        transform: translateY(0);
    }

    .modal-close {
        position: sticky;
        top: 10px;
        float: right;
        width: 42px;
        height: 42px;
        margin: 10px 10px -52px auto;
        border-radius: 50%;
    }

    .modal-media {
        min-height: 0;
        height: min(43dvh, 410px);
        max-height: none;
    }

    .modal-copy {
        padding: 24px 18px calc(28px + env(safe-area-inset-bottom));
    }

    .modal-copy h2 {
        margin: 11px 0 8px;
        font-size: 31px;
    }

    .modal-copy > p {
        margin: 16px 0;
        font-size: 13px;
    }

    .modal-specs {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 8px;
        margin-bottom: 16px;
    }

    .modal-specs div {
        padding: 12px;
        border-radius: 7px;
        background: #181818;
    }

    .modal-copy .button {
        width: 100%;
    }

    .site-toast {
        right: 12px;
        bottom: calc(82px + env(safe-area-inset-bottom));
        left: 12px;
        max-width: none;
    }

    .reveal,
    .reveal-item,
    .reveal-group > * {
        transform: translateY(16px);
        transition-duration: .52s;
    }
}

@media (max-width: 380px) {
    .features-urban-compact {
        grid-template-columns: 1fr !important;
    }

    .product-content h3 {
        font-size: 10.5px;
    }

    .product-bottom strong {
        font-size: 12px;
    }
}

@media (max-width: 330px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   V11 — MOBILE ESTÁVEL, SEM ZOOM E SEM ROLAGEM HORIZONTAL
   Mantém o desktop e corrige cortes, menu e gestos no celular.
   ========================================================= */
.mobile-menu-extra {
    display: none;
}

@media (max-width: 767px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden !important;
        overscroll-behavior-x: none;
        touch-action: pan-y;
    }

    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    body {
        padding-bottom: 0 !important;
    }

    main,
    section,
    header,
    footer,
    .container,
    .header-grid,
    .hero-street-grid,
    .urban-heading,
    .about-street-layout,
    .product-grid,
    .features-urban-compact {
        min-width: 0;
        max-width: 100%;
    }

    img,
    svg,
    video {
        max-width: 100%;
    }

    .mobile-bottom-nav {
        display: none !important;
    }

    .site-header,
    .site-header.is-scrolled {
        position: sticky;
        top: 0;
        height: 64px;
        padding-top: 0;
    }

    .header-grid {
        width: calc(100% - 24px);
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong,
    .brand-copy small {
        white-space: nowrap;
    }

    .menu-toggle {
        border-radius: 8px;
    }

    .menu-backdrop {
        display: none !important;
    }

    .main-nav {
        z-index: 1300;
        top: 64px;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: calc(100dvh - 64px);
        max-height: calc(100dvh - 64px);
        padding: 18px 16px 32px;
        transform: translateY(-110%);
        overflow-y: auto;
        overflow-x: hidden;
        background: #080808;
        box-shadow: 0 24px 60px rgba(0,0,0,.55);
        visibility: hidden;
        overscroll-behavior: contain;
    }

    .main-nav.is-open {
        transform: translateY(0);
        visibility: visible;
    }

    .main-nav a {
        width: 100%;
        margin: 0 0 8px;
        padding: 15px 16px;
        overflow-wrap: break-word;
        font-size: 20px;
    }

    .main-nav .mobile-menu-extra {
        display: block;
        background: var(--gold);
        color: var(--black);
    }

    .main-nav .mobile-menu-extra + .mobile-menu-extra {
        margin-top: 2px;
    }

    .hero-street {
        overflow: hidden;
    }

    .hero-street-grid {
        width: calc(100% - 24px);
        gap: 24px;
        padding: 12px 0 52px;
    }

    .hero-street-media {
        order: -1;
        position: relative;
        width: 100%;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        margin: 0;
        overflow: hidden;
        background: #0d0d0d;
    }

    .hero-street-media img {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
        animation: none !important;
        transform: none !important;
    }

    .hero-tape,
    .hero-coordinate {
        display: none !important;
    }

    .hero-street-copy {
        width: 100%;
        min-width: 0;
    }

    .hero-street-copy h1 {
        max-width: 100%;
        margin-top: 14px;
        font-size: clamp(38px, 11.5vw, 54px);
        line-height: .92;
        letter-spacing: -.045em;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-street-copy > p {
        max-width: 100%;
        margin-top: 18px;
        overflow-wrap: break-word;
    }

    .hero-signals {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 8px;
        margin: 22px 0 0;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .hero-signals span {
        width: 100%;
        min-width: 0;
        min-height: 58px;
    }

    .brand-marquee {
        width: 100%;
        overflow: hidden;
    }

    .urban-heading h2,
    .about-street-simple h2,
    .internal-hero h1,
    .contact-panel h2,
    .contact-form h2,
    .drop-overlay h2 {
        max-width: 100%;
        font-size: clamp(34px, 10.2vw, 48px);
        line-height: .96;
        letter-spacing: -.04em;
        overflow-wrap: normal;
        word-break: normal;
    }

    .urban-categories {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 14px;
        margin: 0;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .urban-category {
        width: 100%;
        min-width: 0 !important;
        max-width: 100%;
        aspect-ratio: 4 / 5;
        scroll-snap-align: none;
    }

    .urban-category img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none !important;
    }

    .product-grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-card,
    .product-content,
    .product-content h3,
    .product-meta,
    .product-bottom {
        min-width: 0;
        max-width: 100%;
    }

    .product-content h3 {
        min-height: 0;
        overflow-wrap: break-word;
    }

    .drop-section {
        overflow: hidden;
    }

    .drop-card {
        display: flex;
        width: 100%;
        min-height: 0;
        margin: 0;
        flex-direction: column;
        overflow: hidden;
        background: #111;
    }

    .drop-card::after {
        display: none;
    }

    .drop-card > img {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center;
        transform: none !important;
    }

    .drop-overlay {
        position: relative;
        inset: auto;
        max-width: none;
        padding: 24px 18px 30px;
        transform: none;
        background: #111;
    }

    .drop-overlay h2 {
        margin-top: 12px;
    }

    .features-urban-compact {
        grid-template-columns: 1fr !important;
    }

    .filter-buttons {
        display: flex;
        width: 100%;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
        overflow: visible;
    }

    .filter-buttons button {
        min-width: 0;
        flex: 1 1 calc(50% - 8px);
        white-space: normal;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .catalog-search input {
        font-size: 16px;
    }

    .button:hover,
    .product-card:hover,
    .urban-category:hover img,
    .drop-card:hover > img,
    .text-link:hover {
        transform: none !important;
    }

    .reveal,
    .reveal-item,
    .reveal-group > * {
        transform: none !important;
    }
}

@media (max-width: 390px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-street-copy h1,
    .urban-heading h2,
    .about-street-simple h2,
    .internal-hero h1,
    .contact-panel h2,
    .contact-form h2,
    .drop-overlay h2 {
        font-size: clamp(32px, 10vw, 42px);
    }
}

@media (max-width: 767px) {
    .reveal,
    .reveal-item,
    .reveal-group,
    .reveal-group > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* v12 — fotos reais para apresentação */
.urban-category {
    position: relative;
    isolation: isolate;
}

.urban-category::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 28%, rgba(0,0,0,0) 58%);
    z-index: 1;
    pointer-events: none;
}

.urban-category img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center;
}

.urban-category-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    gap: 6px;
    align-content: end;
}

.urban-category-overlay strong {
    display: block;
    color: #fff;
    font-family: "Archivo Black", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-shadow: 0 10px 20px rgba(0,0,0,.45);
}

.urban-category-overlay small {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .urban-category {
        aspect-ratio: 4 / 5;
    }

    .urban-category img {
        object-fit: cover !important;
        object-position: center center !important;
    }

    .urban-category-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
        gap: 4px;
    }

    .urban-category-overlay strong {
        font-size: 18px;
        line-height: 1.08;
    }

    .urban-category-overlay small {
        font-size: 10px;
    }
}


/* v13 — imagens profissionais e nomes preservados */
.urban-category-overlay {
    z-index: 5 !important;
    overflow: visible !important;
}
.urban-category-overlay strong,
.urban-category-overlay small {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}
.product-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.product-content h3 {
    display: block !important;
    color: #fff !important;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    min-height: 2.3em;
}
@media (max-width: 767px) {
    .urban-category-overlay { left: 16px !important; right: 16px !important; bottom: 16px !important; }
    .urban-category-overlay strong { font-size: 19px !important; line-height: 1.08 !important; }
    .product-content h3 { min-height: 2.7em; font-size: 13px !important; line-height: 1.3 !important; }
}

/* v15 — categorias em fileira no celular */
@media (max-width: 767px) {
    .urban-categories {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: minmax(165px, 48vw) !important;
        gap: 12px !important;
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding-bottom: 6px !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important;
        overscroll-behavior-x: contain !important;
    }

    .urban-categories::-webkit-scrollbar {
        display: none !important;
    }

    .urban-category {
        width: 100% !important;
        min-width: 165px !important;
        max-width: none !important;
        aspect-ratio: 4 / 5 !important;
        overflow: hidden !important;
        scroll-snap-align: start !important;
    }

    .urban-category img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .urban-category-overlay {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        gap: 3px !important;
    }

    .urban-category-overlay strong {
        font-size: clamp(13px, 4.2vw, 17px) !important;
        line-height: 1.08 !important;
        overflow-wrap: anywhere !important;
    }

    .urban-category-overlay small {
        font-size: 9px !important;
        line-height: 1.2 !important;
        letter-spacing: .07em !important;
    }
}


/* v17 — logo circular da Lotus no topo */
.brand-avatar {
    gap: 12px;
}

.brand-avatar-circle {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(199,162,75,.9);
    background: #050505;
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

.brand-avatar-circle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 980px) {
    .brand-avatar-circle {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }
}

@media (max-width: 767px) {
    .brand-avatar {
        gap: 10px;
    }

    .brand-avatar-circle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}


/* =========================================================
   V19 — KITS DO DROP
   ========================================================= */
.kits-hero { background: radial-gradient(circle at 80% 30%, rgba(199,162,75,.12), transparent 32%), #080808; }
.kits-section { background: #090909; }
.kits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.kit-card { min-width: 0; overflow: hidden; background: #111; border: 1px solid rgba(255,255,255,.1); }
.kit-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #050505; }
.kit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.kit-card:hover .kit-media img { transform: scale(1.035); }
.kit-label { position: absolute; top: 14px; left: 14px; padding: 8px 10px; background: var(--gold); color: #050505; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.kit-content { display: grid; gap: 13px; padding: 22px; }
.kit-count { color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.kit-content h2 { margin: 0; font-family: "Archivo Black", Arial, sans-serif; font-size: 23px; line-height: 1.05; }
.kit-content > p { min-height: 3.4em; margin: 0; color: var(--gray); font-size: 13px; line-height: 1.7; }
.kit-products { display: grid; gap: 7px; margin: 0; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); list-style: none; }
.kit-products li { position: relative; padding-left: 14px; color: #e4e4e4; font-size: 11px; }
.kit-products li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }
.kit-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.kit-price del { color: #777; font-size: 12px; }
.kit-price strong { color: var(--gold); font-family: "Archivo Black", Arial, sans-serif; font-size: 25px; font-weight: 400; }
.kit-content .button { width: 100%; }
@media (max-width: 980px) { .kits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 650px) {
    .kits-grid { grid-template-columns: 1fr; gap: 16px; }
    .kit-card { display: grid; grid-template-columns: 42% minmax(0,1fr); }
    .kit-media { aspect-ratio: auto; min-height: 100%; }
    .kit-content { gap: 9px; padding: 14px; }
    .kit-content h2 { font-size: 16px; }
    .kit-content > p { min-height: 0; font-size: 11px; line-height: 1.5; }
    .kit-products { gap: 4px; padding: 9px 0; }
    .kit-products li { font-size: 9px; }
    .kit-price strong { font-size: 18px; }
    .kit-content .button { min-height: 40px; padding-inline: 9px; font-size: 8px; }
}


/* v19.1 — logo oficial também no rodapé */
.footer-logo-circle {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-width: 2px;
}

.footer-brand .brand-avatar-circle {
    margin-bottom: 10px;
}

.footer-brand .brand-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .footer-logo-circle {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }
}

/* =========================================================
   V20 — EXPERIÊNCIA MOBILE LOTUS
   Mantém o desktop atual e redesenha celular/tablet.
   ========================================================= */
.mobile-header-actions,
.mobile-bottom-nav,
.mobile-overlay,
.mobile-sheet,
.mobile-product-options,
.mobile-catalog-actions,
.mobile-home-social,
.mobile-home-location,
.product-favorite {
    display: none;
}

@media (max-width: 767px) {
    :root {
        --mobile-nav-height: 68px;
        --header-height: 64px;
    }

    html {
        scroll-padding-top: 72px;
    }

    body {
        padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom)) !important;
        background: #050505;
    }

    body.menu-open,
    body.modal-open,
    body.mobile-overlay-open,
    body.sheet-open {
        overflow: hidden !important;
    }

    .container {
        width: calc(100% - 28px);
    }

    /* Cabeçalho de aplicativo */
    .site-header,
    .site-header.is-scrolled {
        position: sticky;
        top: 0;
        height: 64px !important;
        border-bottom: 1px solid rgba(255,255,255,.07);
        background: rgba(5,5,5,.96);
        box-shadow: none;
        backdrop-filter: blur(16px);
    }

    .header-grid {
        position: relative;
        grid-template-columns: 44px minmax(0,1fr) 88px !important;
        gap: 8px !important;
        width: 100%;
    }

    .menu-toggle {
        display: grid !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        width: 42px;
        height: 42px;
        place-items: center;
        padding: 9px;
        border: 0;
        border-radius: 50%;
    }

    .menu-toggle span {
        width: 21px;
        height: 1.5px;
        margin: 2.4px 0;
    }

    .brand {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: center;
        width: auto;
    }

    .brand-copy {
        display: none !important;
    }

    .brand-avatar-circle {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
        border-width: 1.5px;
        box-shadow: none;
    }

    .mobile-header-actions {
        display: flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-items: center;
        gap: 2px;
    }

    .mobile-header-button {
        position: relative;
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
    }

    .mobile-header-button svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.65;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-action-badge {
        position: absolute;
        top: 4px;
        right: 2px;
        display: grid;
        min-width: 16px;
        height: 16px;
        place-items: center;
        padding: 0 4px;
        border-radius: 99px;
        background: var(--gold);
        color: #050505;
        font-size: 8px;
        font-weight: 900;
    }

    .mobile-action-badge:empty,
    .mobile-action-badge[data-empty="true"] {
        opacity: 0;
    }

    .header-actions {
        display: none !important;
    }

    /* Menu lateral de 85% */
    .main-nav {
        top: 64px !important;
        right: auto !important;
        bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom)) !important;
        left: 0 !important;
        width: min(85vw, 350px) !important;
        padding: 22px 22px 34px !important;
        transform: translateX(-105%) !important;
        border-right: 1px solid rgba(255,255,255,.08);
        background: #080808 !important;
        box-shadow: 30px 0 70px rgba(0,0,0,.45);
    }

    .main-nav.is-open {
        transform: translateX(0) !important;
    }

    .main-nav a {
        padding: 14px 2px !important;
        border-bottom: 0 !important;
        font-family: Inter, Arial, sans-serif !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        letter-spacing: .02em !important;
        text-transform: none !important;
    }

    .main-nav a.is-active {
        color: var(--gold);
    }

    .mobile-menu-extra {
        display: block !important;
        margin-top: 5px;
        color: #9c9c9c !important;
        font-size: 13px !important;
    }

    .main-nav .mobile-menu-extra:first-of-type {
        margin-top: 18px;
        padding-top: 22px !important;
        border-top: 1px solid rgba(255,255,255,.08) !important;
    }

    .menu-backdrop {
        position: fixed;
        z-index: 999;
        top: 64px;
        right: 0;
        bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
        left: 0;
        display: block;
        width: 100%;
        border: 0;
        background: rgba(0,0,0,.72);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Hero vertical, fotografia como primeiro impacto */
    .hero-street {
        position: relative;
        min-height: min(75svh, 760px);
        overflow: hidden;
        background: #050505;
    }

    .hero-street::after {
        position: absolute;
        z-index: 1;
        inset: 0;
        content: "";
        background: linear-gradient(to top, rgba(5,5,5,.96) 3%, rgba(5,5,5,.55) 42%, rgba(5,5,5,.12) 72%, rgba(5,5,5,.22) 100%);
        pointer-events: none;
    }

    .hero-street-grid {
        position: relative;
        min-height: min(75svh, 760px) !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .hero-ghost,
    .hero-signals,
    .hero-tape,
    .hero-coordinate {
        display: none !important;
    }

    .hero-street-media {
        position: absolute;
        z-index: 0;
        inset: 0;
        min-height: 100% !important;
        overflow: hidden;
    }

    .hero-street-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 58% center;
    }

    .hero-street-copy {
        position: absolute;
        z-index: 2;
        right: 18px;
        bottom: 30px;
        left: 18px;
        max-width: 520px;
        padding: 0;
    }

    .hero-street-copy .urban-kicker {
        margin-bottom: 10px;
        color: var(--gold);
        font-size: 8px;
        letter-spacing: .14em;
    }

    .hero-street-copy h1 {
        margin: 0;
        font-size: clamp(42px, 12.8vw, 62px) !important;
        line-height: .91;
        text-shadow: 0 10px 28px rgba(0,0,0,.35);
    }

    .hero-street-copy > p {
        max-width: 330px;
        margin: 14px 0 18px;
        color: #e1e1e1;
        font-size: 13px !important;
        line-height: 1.55;
    }

    .hero-buttons {
        display: block !important;
        margin: 0;
    }

    .hero-buttons .button {
        width: auto !important;
        min-height: 46px;
        padding: 0 18px;
        font-size: 9px;
    }

    .hero-buttons .button-outline {
        display: none !important;
    }

    .brand-marquee {
        display: none !important;
    }

    /* Seções mais compactas */
    .section {
        padding: 58px 0 !important;
    }

    .urban-heading {
        display: grid;
        gap: 10px !important;
        margin-bottom: 22px;
    }

    .urban-heading h2 {
        margin-top: 7px;
        font-size: clamp(30px, 9vw, 42px) !important;
        line-height: .96;
    }

    .urban-heading > p,
    .heading-action p {
        margin: 0;
        color: #949494;
        font-size: 12px;
        line-height: 1.55;
    }

    .heading-action .text-link {
        margin-top: 8px;
        font-size: 9px;
    }

    /* Categorias em fileira horizontal confortável */
    .urban-categories {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: minmax(168px, 47vw) !important;
        gap: 10px !important;
        width: calc(100vw - 14px) !important;
        margin-right: -14px !important;
        padding-right: 14px !important;
        padding-bottom: 4px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x proximity !important;
        scrollbar-width: none !important;
    }

    .urban-category {
        width: 100% !important;
        min-width: 168px !important;
        min-height: 0 !important;
        aspect-ratio: 4 / 5 !important;
        border: 0 !important;
        scroll-snap-align: start;
    }

    .urban-category-overlay {
        left: 12px !important;
        right: 10px !important;
        bottom: 12px !important;
    }

    .urban-category-overlay strong {
        font-size: clamp(14px, 4.3vw, 18px) !important;
    }

    .urban-category-overlay small {
        display: none !important;
    }

    /* Produtos, 2 colunas em todos os celulares */
    .product-grid,
    body .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px 10px !important;
    }

    .product-card {
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .product-media {
        aspect-ratio: 4 / 5;
        border-radius: 0;
        background: #101010;
    }

    .product-media img {
        object-fit: cover;
    }

    .product-tag {
        top: 8px;
        left: 8px;
        padding: 5px 7px;
        font-size: 6px;
        letter-spacing: .08em;
    }

    .product-favorite {
        position: absolute;
        z-index: 6;
        top: 7px;
        right: 7px;
        display: grid !important;
        width: 34px;
        height: 34px;
        place-items: center;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(5,5,5,.72);
        color: #fff;
        backdrop-filter: blur(8px);
    }

    .product-favorite svg {
        width: 17px;
        height: 17px;
        fill: transparent;
        stroke: currentColor;
        stroke-width: 1.8;
    }

    .product-favorite.is-favorite {
        color: var(--gold);
    }

    .product-favorite.is-favorite svg {
        fill: currentColor;
    }

    .product-content {
        padding: 10px 1px 0 !important;
    }

    .product-meta {
        display: block !important;
        color: #8f8f8f;
        font-size: 6.5px;
        letter-spacing: .08em;
    }

    .product-meta span:last-child {
        display: none;
    }

    .product-content h3 {
        min-height: 2.55em !important;
        margin: 6px 0 5px !important;
        font-family: Inter, Arial, sans-serif !important;
        color: #f4f4f4 !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        line-height: 1.28 !important;
        text-transform: none !important;
    }

    .product-size {
        min-height: 14px;
        color: #858585;
        font-size: 8px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-bottom {
        display: block !important;
        margin-top: 5px !important;
        padding-top: 0 !important;
        border-top: 0 !important;
    }

    .product-bottom strong {
        color: var(--gold);
        font-family: Inter, Arial, sans-serif;
        font-size: 12px !important;
        font-weight: 800;
    }

    .product-whatsapp,
    .product-quick {
        display: none !important;
    }

    /* Drop editorial */
    .drop-section {
        padding: 12px 0 58px !important;
    }

    .drop-section .container {
        width: 100%;
    }

    .drop-card,
    .drop-card > img {
        min-height: 68svh !important;
    }

    .drop-card {
        border: 0;
    }

    .drop-card > img {
        aspect-ratio: 4 / 5;
        object-position: 58% center;
    }

    .drop-overlay {
        right: 18px !important;
        bottom: 22px !important;
        left: 18px !important;
    }

    .drop-overlay h2 {
        font-size: clamp(40px, 12vw, 54px) !important;
    }

    .drop-overlay p {
        max-width: 310px;
        font-size: 12px;
    }

    .drop-overlay .button {
        min-height: 44px;
        padding-inline: 16px;
        font-size: 8px;
    }

    /* Sobre vira respiro editorial */
    .about-street {
        padding: 58px 0 !important;
        background: #0b0b0b;
    }

    .about-street-layout {
        display: block !important;
    }

    .about-street-simple h2 {
        margin: 10px 0 16px;
        font-size: clamp(37px, 11vw, 52px) !important;
    }

    .about-street-simple p {
        max-width: 520px;
        color: #a9a9a9;
        font-size: 13px;
        line-height: 1.7;
    }

    .features-urban-compact {
        display: none !important;
    }

    .about-actions {
        display: flex !important;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 22px;
    }

    /* Instagram e localização exclusivos da Home mobile */
    .mobile-home-social,
    .mobile-home-location {
        display: block;
        padding: 58px 0;
        background: #050505;
    }

    .mobile-home-social h2,
    .mobile-home-location h2 {
        margin: 8px 0 22px;
        font-family: "Archivo Black", Arial, sans-serif;
        font-size: clamp(28px, 9vw, 38px);
        font-weight: 400;
        line-height: 1;
    }

    .mobile-section-kicker {
        color: var(--gold);
        font-size: 8px;
        font-weight: 900;
        letter-spacing: .14em;
    }

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

    .mobile-instagram-grid a {
        aspect-ratio: 1;
        overflow: hidden;
        background: #111;
    }

    .mobile-instagram-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-home-social .button {
        width: 100%;
        min-height: 46px;
    }

    .mobile-home-location {
        background: #0c0c0c;
    }

    .mobile-home-location p {
        margin: 0 0 10px;
        color: #a7a7a7;
        font-size: 12px;
        line-height: 1.65;
    }

    .mobile-location-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
    }

    .mobile-location-actions .button {
        width: 100%;
        min-height: 46px;
    }

    /* Catálogo mobile */
    .internal-hero {
        padding: 54px 0 34px !important;
    }

    .internal-hero h1 {
        font-size: clamp(37px, 11vw, 52px) !important;
    }

    .internal-hero p {
        font-size: 12px;
        line-height: 1.65;
    }

    .catalog-section {
        padding-top: 22px !important;
    }

    .catalog-toolbar {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
        margin-bottom: 28px !important;
        padding-bottom: 16px !important;
        border-bottom: 0 !important;
    }

    .catalog-search {
        grid-column: 1 / -1;
        gap: 7px;
    }

    .catalog-search span {
        display: none;
    }

    .catalog-search input {
        height: 46px;
        border-radius: 0;
        font-size: 16px !important;
    }

    .filter-buttons {
        grid-column: 1 / -1;
        display: flex !important;
        flex-wrap: nowrap !important;
        width: calc(100vw - 14px);
        margin-right: -14px;
        padding-right: 14px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .filter-buttons button {
        flex: 0 0 auto;
        width: auto !important;
        min-height: 36px;
        padding: 0 13px;
        border-radius: 99px;
        font-size: 7px;
        white-space: nowrap;
    }

    .catalog-count {
        display: flex;
        align-items: baseline;
        gap: 6px;
        justify-items: start;
    }

    .catalog-count strong {
        font-size: 22px;
    }

    .catalog-count span {
        font-size: 7px;
    }

    .mobile-catalog-actions {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
    }

    .mobile-filter-trigger,
    .mobile-sort-trigger {
        min-height: 36px;
        padding: 0 12px;
        border: 1px solid rgba(255,255,255,.13);
        background: #0a0a0a;
        color: #e3e3e3;
        font-size: 9px;
        font-weight: 800;
    }

    .catalog-cta {
        padding: 42px 0 56px;
    }

    /* Modal vira bottom sheet de produto */
    .product-modal {
        align-items: end !important;
        place-items: end stretch !important;
        padding: 0 !important;
    }

    .modal-backdrop {
        background: rgba(0,0,0,.78);
        backdrop-filter: blur(4px);
    }

    .modal-shell {
        width: 100% !important;
        max-height: 94dvh !important;
        grid-template-columns: 1fr !important;
        border: 0 !important;
        border-radius: 22px 22px 0 0;
        background: #101010;
        transform: translateY(100%) !important;
        box-shadow: 0 -20px 60px rgba(0,0,0,.5);
    }

    .product-modal.is-open .modal-shell {
        transform: translateY(0) !important;
    }

    .modal-close {
        position: fixed;
        top: max(14px, env(safe-area-inset-top));
        right: 14px;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: rgba(5,5,5,.82);
        font-size: 25px;
    }

    .modal-media {
        min-height: 0 !important;
        height: min(51dvh, 530px) !important;
        max-height: none !important;
        background: #050505;
    }

    .modal-media img {
        object-fit: cover;
        object-position: center;
    }

    .modal-copy {
        display: block !important;
        padding: 20px 18px calc(24px + env(safe-area-inset-bottom)) !important;
    }

    .modal-kicker {
        font-size: 7px;
    }

    .modal-copy h2 {
        margin: 8px 0 5px;
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.02;
    }

    .modal-price {
        font-size: 18px;
    }

    .modal-copy > p {
        margin: 12px 0 15px;
        color: #a9a9a9;
        font-size: 11px;
        line-height: 1.6;
    }

    .modal-specs {
        display: none !important;
    }

    .mobile-product-options {
        display: grid !important;
        gap: 15px;
        margin-top: 16px;
    }

    .mobile-product-options > div > span {
        display: block;
        margin-bottom: 8px;
        color: #b9b9b9;
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-option-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .mobile-option-buttons button {
        min-width: 42px;
        min-height: 38px;
        padding: 0 11px;
        border: 1px solid rgba(255,255,255,.15);
        background: transparent;
        color: #e5e5e5;
        font-size: 10px;
    }

    .mobile-option-buttons button.is-selected {
        border-color: var(--gold);
        background: var(--gold);
        color: #050505;
    }

    .mobile-add-cart {
        width: 100%;
        min-height: 49px;
        margin-top: 2px;
    }

    #modalProductWhatsapp {
        width: 100%;
        min-height: 44px;
        margin-top: 8px;
        border-color: rgba(255,255,255,.15);
        background: transparent;
        color: #e7e7e7;
        box-shadow: none;
        font-size: 8px;
    }

    .modal-note {
        display: block;
        margin-top: 10px;
        color: #777;
        font-size: 8px;
        line-height: 1.5;
    }

    /* Overlays de busca, favoritos e sacola */
    .mobile-overlay {
        position: fixed;
        z-index: 2100;
        inset: 0 0 calc(var(--mobile-nav-height) + env(safe-area-inset-bottom)) 0;
        background: rgba(0,0,0,.72);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
    }

    .mobile-overlay.is-open {
        display: block !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-overlay-panel {
        position: absolute;
        inset: 0;
        overflow-y: auto;
        padding: max(18px, env(safe-area-inset-top)) 16px 28px;
        background: #080808;
        transform: translateY(18px);
        transition: transform .24s ease;
    }

    .mobile-overlay.is-open .mobile-overlay-panel {
        transform: translateY(0);
    }

    .mobile-overlay-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 22px;
    }

    .mobile-overlay-head strong {
        font-family: "Archivo Black", Arial, sans-serif;
        font-size: 23px;
        font-weight: 400;
    }

    .mobile-overlay-head button {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: #151515;
        color: #fff;
        font-size: 24px;
    }

    .mobile-search-form {
        display: grid;
        gap: 9px;
    }

    .mobile-search-form label {
        display: flex;
        align-items: center;
        gap: 10px;
        height: 52px;
        padding: 0 14px;
        background: #111;
        border: 1px solid rgba(255,255,255,.12);
    }

    .mobile-search-form label svg {
        width: 20px;
        fill: none;
        stroke: #aaa;
        stroke-width: 1.6;
    }

    .mobile-search-form input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        color: #fff;
        font-size: 16px;
    }

    .mobile-search-form .button {
        width: 100%;
        min-height: 48px;
    }

    .mobile-search-links {
        display: grid;
        gap: 3px;
        margin-top: 30px;
    }

    .mobile-search-links > span {
        margin-bottom: 8px;
        color: var(--gold);
        font-size: 8px;
        font-weight: 900;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

    .mobile-search-links a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        color: #ddd;
        font-size: 14px;
    }

    .mobile-saved-list {
        display: grid;
        gap: 10px;
    }

    .mobile-saved-item {
        display: grid;
        grid-template-columns: 78px minmax(0,1fr) auto;
        gap: 12px;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mobile-saved-item img {
        width: 78px;
        height: 98px;
        object-fit: cover;
        background: #111;
    }

    .mobile-saved-copy {
        min-width: 0;
    }

    .mobile-saved-copy strong {
        display: block;
        color: #f2f2f2;
        font-size: 12px;
        line-height: 1.35;
    }

    .mobile-saved-copy small {
        display: block;
        margin-top: 5px;
        color: #8f8f8f;
        font-size: 9px;
        line-height: 1.45;
    }

    .mobile-saved-copy b {
        display: block;
        margin-top: 6px;
        color: var(--gold);
        font-size: 12px;
    }

    .mobile-saved-actions {
        display: grid;
        justify-items: end;
        gap: 8px;
    }

    .mobile-saved-actions button,
    .mobile-saved-actions a {
        border: 0;
        background: transparent;
        color: #aaa;
        font-size: 9px;
        text-align: right;
    }

    .mobile-qty {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-qty button {
        width: 28px;
        height: 28px;
        border: 1px solid rgba(255,255,255,.12);
        background: #111;
        color: #fff;
    }

    .mobile-qty span {
        min-width: 12px;
        color: #fff;
        font-size: 10px;
        text-align: center;
    }

    .mobile-empty-state {
        padding: 48px 12px;
        color: #777;
        font-size: 12px;
        text-align: center;
    }

    .mobile-cart-summary {
        position: sticky;
        bottom: 0;
        margin-top: 18px;
        padding: 18px 0 4px;
        background: linear-gradient(to top, #080808 80%, rgba(8,8,8,0));
    }

    .mobile-cart-summary > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 13px;
    }

    .mobile-cart-summary span {
        color: #aaa;
        font-size: 10px;
    }

    .mobile-cart-summary strong {
        color: var(--gold);
        font-size: 19px;
    }

    .mobile-cart-summary .button {
        width: 100%;
        min-height: 50px;
    }

    .mobile-cart-summary small {
        display: block;
        margin-top: 8px;
        color: #6f6f6f;
        font-size: 8px;
        line-height: 1.45;
    }

    /* Bottom sheets de filtro e ordenação */
    .mobile-sheet {
        position: fixed;
        z-index: 2200;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
    }

    .mobile-sheet.is-open {
        display: block !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-sheet-backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        border: 0;
        background: rgba(0,0,0,.72);
    }

    .mobile-sheet-panel {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        max-height: 88dvh;
        overflow-y: auto;
        padding: 10px 16px calc(20px + env(safe-area-inset-bottom));
        border-radius: 22px 22px 0 0;
        background: #101010;
        transform: translateY(100%);
        transition: transform .26s ease;
    }

    .mobile-sheet.is-open .mobile-sheet-panel {
        transform: translateY(0);
    }

    .mobile-sheet-handle {
        width: 42px;
        height: 4px;
        margin: 0 auto 13px;
        border-radius: 99px;
        background: #464646;
    }

    .mobile-sheet-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mobile-sheet-head h2 {
        margin: 0;
        font-family: "Archivo Black", Arial, sans-serif;
        font-size: 22px;
        font-weight: 400;
    }

    .mobile-sheet-head button {
        width: 38px;
        height: 38px;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 26px;
    }

    .mobile-filter-group,
    .mobile-filter-field {
        display: grid;
        gap: 9px;
        margin-bottom: 18px;
    }

    .mobile-filter-group > span,
    .mobile-filter-field > span {
        color: #aaa;
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-filter-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .mobile-filter-chips button {
        min-height: 36px;
        padding: 0 11px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 99px;
        background: transparent;
        color: #ccc;
        font-size: 9px;
    }

    .mobile-filter-chips button.is-active {
        border-color: var(--gold);
        background: var(--gold);
        color: #050505;
    }

    .mobile-filter-field select {
        width: 100%;
        height: 46px;
        padding: 0 12px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 0;
        outline: 0;
        background: #090909;
        color: #fff;
        font-size: 16px;
    }

    .mobile-sheet-actions {
        display: grid;
        grid-template-columns: .7fr 1.3fr;
        gap: 8px;
        margin-top: 24px;
    }

    .mobile-clear-filters {
        border: 1px solid rgba(255,255,255,.12);
        background: transparent;
        color: #ddd;
        font-size: 9px;
        font-weight: 800;
    }

    .mobile-sheet-actions .button {
        min-height: 48px;
        padding-inline: 10px;
    }

    .mobile-sort-options {
        display: grid;
    }

    .mobile-sort-options button {
        padding: 16px 0;
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        background: transparent;
        color: #ddd;
        font-size: 13px;
        text-align: left;
    }

    /* Rodapé reduzido */
    .site-footer {
        padding: 48px 0 22px !important;
        border-top: 0;
    }

    .footer-grid {
        display: block !important;
    }

    .footer-column,
    .footer-cta {
        display: none !important;
    }

    .footer-brand {
        max-width: 340px;
    }

    .footer-logo-circle {
        width: 52px !important;
        height: 52px !important;
        flex-basis: 52px !important;
    }

    .footer-brand h2 {
        margin: 14px 0 7px;
        font-size: 23px;
    }

    .footer-brand p {
        margin: 0;
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-bottom {
        display: block !important;
        margin-top: 30px !important;
        padding-top: 16px !important;
        font-size: 8px;
        line-height: 1.8;
    }

    .footer-bottom span {
        display: block;
    }

    /* Navegação inferior fixa */
    .mobile-bottom-nav {
        position: fixed;
        z-index: 2050;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid !important;
        height: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom));
        grid-template-columns: repeat(5, minmax(0,1fr));
        padding: 4px 5px env(safe-area-inset-bottom);
        border-top: 1px solid rgba(255,255,255,.08);
        background: rgba(5,5,5,.97);
        backdrop-filter: blur(16px);
    }

    .mobile-bottom-nav a,
    .mobile-bottom-nav button {
        position: relative;
        display: grid;
        min-width: 0;
        place-items: center;
        align-content: center;
        gap: 3px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #858585;
    }

    .mobile-bottom-nav a.is-active,
    .mobile-bottom-nav button.is-active {
        color: var(--gold);
    }

    .mobile-bottom-nav svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-bottom-nav span {
        font-size: 8px;
        font-weight: 700;
    }

    .mobile-bottom-nav i {
        position: absolute;
        top: 3px;
        right: calc(50% - 18px);
        display: grid;
        min-width: 15px;
        height: 15px;
        place-items: center;
        padding: 0 3px;
        border-radius: 99px;
        background: var(--gold);
        color: #050505;
        font-size: 7px;
        font-style: normal;
        font-weight: 900;
    }

    .mobile-bottom-nav i[data-empty="true"] {
        display: none;
    }

    .floating-whatsapp {
        display: none !important;
    }

    .site-toast {
        right: 12px !important;
        bottom: calc(var(--mobile-nav-height) + 12px + env(safe-area-inset-bottom)) !important;
        left: 12px !important;
        max-width: none !important;
    }
}

@media (max-width: 390px) {
    .product-grid,
    body .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 8px !important;
    }

    .product-content h3 {
        font-size: 11px !important;
    }

    .product-size {
        font-size: 7.5px !important;
    }

    .urban-categories {
        grid-auto-columns: minmax(154px, 46vw) !important;
    }

    .urban-category {
        min-width: 154px !important;
    }
}

@media (max-width: 330px) {
    .container {
        width: calc(100% - 20px);
    }

    .product-grid,
    body .product-grid {
        gap: 18px 7px !important;
    }

    .product-content h3 {
        font-size: 10.5px !important;
    }

    .product-favorite {
        width: 31px;
        height: 31px;
    }
}

@media (max-width: 767px) {
    .mobile-bottom-nav {
        transition: transform .22s ease;
    }
    body.modal-open .mobile-bottom-nav,
    body.sheet-open .mobile-bottom-nav {
        transform: translateY(110%);
    }
}




/* v20.6 — menu mobile realmente em tela cheia abaixo do cabeçalho */
@media (max-width: 767px) {
    .main-nav {
        display: none !important;
    }

    body.menu-open .main-nav {
        position: fixed !important;
        inset: 64px 0 calc(var(--mobile-nav-height) + env(safe-area-inset-bottom)) 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 14px 18px 24px !important;
        width: 100vw !important;
        height: auto !important;
        max-height: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #050505 !important;
        box-shadow: none !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 9999 !important;
    }

    body.menu-open .main-nav a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        min-height: 56px !important;
        padding: 0 8px !important;
        margin: 0 !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.08) !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #f3f3f3 !important;
        font-family: Inter, Arial, sans-serif !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        letter-spacing: .01em !important;
        line-height: 1.2 !important;
        text-transform: none !important;
        text-align: left !important;
        white-space: normal !important;
    }

    body.menu-open .main-nav a::after {
        display: none !important;
    }

    body.menu-open .main-nav a.is-active {
        color: var(--gold) !important;
        background: transparent !important;
    }

    body.menu-open .main-nav .mobile-menu-extra {
        color: #d2d2d2 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }

    body.menu-open .main-nav .mobile-menu-extra:first-of-type {
        margin-top: 10px !important;
        padding-top: 10px !important;
        border-top: 0 !important;
    }

    body.menu-open .main-nav .mobile-menu-extra.js-whatsapp,
    body.menu-open .main-nav .mobile-menu-extra[href*="wa.me"],
    body.menu-open .main-nav .mobile-menu-extra[href*="whatsapp"] {
        margin-top: 12px !important;
        padding-left: 14px !important;
        border-radius: 14px !important;
        background: var(--gold) !important;
        color: #050505 !important;
        border-bottom: 0 !important;
        min-height: 52px !important;
    }

    .menu-backdrop,
    .menu-backdrop.is-visible {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.menu-open .hero-street,
    body.menu-open main,
    body.menu-open .mobile-bottom-nav {
        pointer-events: none;
    }
}
