/* ==========================================
    1. VARIABLES & TOKENS
========================================== */
:root {
    /* Colors */
    --preto: #0a0a0a;
    --preto-light: #141414;
    --preto-lighter: #1f1f1f;
    --branco: #f5f5f5;
    --branco-muted: #a3a3a3;
    --dourado: #c9a84c;
    --dourado-dark: #a6883a;
    --dourado-glow: rgba(201, 168, 76, 0.15);

    /* Typography */
    --font-ui: 'Josefin Sans', sans-serif;
    --font-brand: 'Buongiorno Rastellino', 'Pinyon Script', cursive;
    --font-hero-tagline: 'Cormorant Garamond', 'Times New Roman', serif;

    /* Spacing */
    --space-2: 0.5rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;

    /* Layout */
    --container-max: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
    2. RESET & BASE
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--preto);
    color: var(--branco);
    font-family: var(--font-ui);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Classe utilitária para travar o scroll do body quando modal está aberto */
body.modal-open {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

/* ==========================================
    3. TYPOGRAPHY
========================================== */
h1,
h2,
h3,
h4 {
    font-weight: 400;
    line-height: 1.2;
}

.text-brand {
    font-family: var(--font-brand);
    color: var(--dourado);
    letter-spacing: 2px;
}

.title-section {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--space-4);
    text-align: center;
}

.subtitle-section {
    color: var(--branco-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.25rem;
    line-height: 1.7;
}

/* ==========================================
    4. UTILITIES & COMPONENTS
========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-padding {
    padding: var(--space-24) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    border-color: var(--dourado);
    color: var(--dourado);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dourado);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-gold:hover {
    color: var(--preto);
    box-shadow: 0 0 20px var(--dourado-glow);
}

.btn-gold:hover::before {
    left: 0;
}

/* Gold Line Divider - GRADIENT GLOW */
.gold-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    margin: var(--space-6) auto;
    position: relative;
}

.gold-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 100%;
    background: var(--dourado);
    box-shadow: 0 0 15px var(--dourado), 0 0 30px var(--dourado-glow);
    border-radius: 50%;
}

/* Full Width Glow Divider */
.glow-divider-full {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(201, 168, 76, 0.3) 30%, var(--dourado) 50%, rgba(201, 168, 76, 0.3) 70%, transparent 95%);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
    position: relative;
    z-index: 10;
}

/* ==========================================
    5. ANIMATIONS
========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(201, 168, 76, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

@keyframes scroll-drop {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ==========================================
    6. HEADER & NAVIGATION (OTIMIZADO)
========================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.60);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

header.header-scrolled {
    background: rgba(10, 10, 10, 0.75);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 80px;
    padding: 0.35rem 0;
}

.header-logo-wrapper {
    display: flex;
    justify-content: flex-start;
    min-width: 0;
}

/* Lockup compartilhado: script + Barbearia (mesmo tratamento hero / menu) */
.brand-lockup {
    display: flex;
    flex-direction: column;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-lockup__title {
    margin: 0;
    line-height: 0.95;
    transition: font-size 0.55s cubic-bezier(0.4, 0, 0.2, 1), text-shadow 0.55s ease;
}

.brand-lockup__tagline {
    margin: 0.35rem 0 0;
    font-family: var(--font-hero-tagline);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
    transition: font-size 0.55s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing 0.55s ease, opacity 0.55s ease;
}

.header-brand.brand-lockup {
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}

.header-brand .brand-lockup__title {
    font-size: clamp(1.95rem, 2.85vw, 2.95rem);
    letter-spacing: 1px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.header-brand .brand-lockup__tagline {
    font-size: clamp(0.58rem, 1.2vw, 0.82rem);
    margin-top: 0.12rem;
    letter-spacing: 0.48em;
    opacity: 0.95;
    align-self: stretch;
    text-align: inherit;
    white-space: nowrap;
}

.header-brand.brand-lockup--compact {
    transform: scale(0.96);
}

.header-brand.brand-lockup--compact .brand-lockup__title {
    font-size: clamp(1.7rem, 2.35vw, 2.55rem);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.header-brand.brand-lockup--compact .brand-lockup__tagline {
    font-size: clamp(0.52rem, 1.05vw, 0.72rem);
    letter-spacing: 0.38em;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    /* Respiro seguro para telas menores */
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    /* Impede que os textos do menu cortem */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--dourado);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--dourado);
    color: var(--dourado);
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.4);
    white-space: nowrap;
    /* Protege o botão */
}

.header-cta-btn:hover {
    background: var(--dourado);
    color: var(--preto);
    box-shadow: 0 0 15px var(--dourado-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dourado);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
    7. HERO SECTION
========================================== */
.hero {
    height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--preto);
}

/* Vídeo desktop (hero desktop.mp4) + vídeo mobile (atmosfera1.mp4) */
.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center;
}

.hero-media--desktop {
    display: none;
}

.hero-media--mobile {
    display: block;
}

@media (min-width: 900px) {
    .hero-media--desktop {
        display: block;
    }

    .hero-media--mobile {
        display: none;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--preto) 100%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.1) 0%, var(--preto) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-6);
}

/* Hero: mesmo lockup, escala maior */
.hero-brand.brand-lockup {
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-6);
    will-change: transform;
}

.hero-brand .brand-lockup__title {
    font-size: clamp(4.25rem, 16vw, 10.5rem);
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.85);
    white-space: normal;
}

.hero-brand .brand-lockup__tagline {
    font-size: clamp(1.05rem, 3.2vw, 1.65rem);
}

/* Ao rolar: compact no hero e no menu (#header-brand) */
.hero-brand.brand-lockup--compact .brand-lockup__title {
    font-size: clamp(2.75rem, 9vw, 5.25rem);
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.75);
}

.hero-brand.brand-lockup--compact .brand-lockup__tagline {
    font-size: clamp(0.7rem, 2vw, 1rem);
    letter-spacing: 0.42em;
    opacity: 0.92;
}

.hero-brand.brand-lockup--compact {
    transform: scale(0.96);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: var(--space-12);
    color: var(--branco-muted);
}

/* Mobile: destaque só no texto (sem caixa) — gradiente + leve brilho */
@media (max-width: 899px) {
    .hero-subtitle {
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        line-height: 1.65;
        color: transparent;
        background-image: linear-gradient(
            100deg,
            #f0e8d8 0%,
            #c9a84c 42%,
            #e8dcc4 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 1px 14px rgba(201, 168, 76, 0.35));
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    z-index: 10;
    animation: fadeIn 2s ease forwards 2s;
}

.scroll-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--branco);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dourado);
    animation: scroll-drop 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
    8. ATMOSPHERE SECTION
========================================== */
.atmosphere-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 900px) {
    .atmosphere-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-16);
    }
}

.atmosphere-text .title-section {
    text-align: left;
}

.atmosphere-text .gold-line {
    margin-left: 0;
}

.atmosphere-desc {
    color: var(--branco-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.atmosphere-desc strong {
    color: var(--dourado);
    font-weight: 600;
}

/* Galeria Atmosfera: 1 principal (vídeo React) + 2 menores */
.atmosphere-gallery--flashy {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto minmax(150px, 200px);
    gap: var(--space-4);
    width: 100%;
    min-width: 0;
    align-items: stretch;
}

/* Sobrescreve .gallery-item { min-height: 300px } para o grid controlar alturas */
.atmosphere-gallery--flashy .gallery-item {
    min-height: 0;
}

/* Principal: linha inteira em cima — story 9:16 no mobile */
.atmosphere-gallery--flashy .atmosphere-main-card {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 0;
}

/* Sem moldura dourada interna (.gallery-item::before/::after) no card do vídeo */
.atmosphere-gallery--flashy .atmosphere-main-card::before,
.atmosphere-gallery--flashy .atmosphere-main-card::after {
    content: none;
    display: none;
}

.atmosphere-gallery--flashy .atmosphere-main-card > * {
    min-height: 0;
}

/* Desktop: principal à esquerda (2 linhas), duas fotos à direita */
@media (min-width: 900px) {
    .atmosphere-gallery--flashy {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, minmax(200px, 220px));
    }

    .atmosphere-gallery--flashy .atmosphere-main-card {
        grid-column: 1;
        grid-row: 1 / span 2;
        height: 100%;
    }

    .atmosphere-gallery--flashy .gallery-item:not(.atmosphere-main-card) {
        min-height: 0;
    }
}

.atmosphere-react-root {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
}

/* CTA “Agendar”: no texto no desktop; no fim da seção (abaixo da galeria) só no mobile */
.atmosphere-cta--mobile {
    display: none;
}

@media (max-width: 899px) {
    .atmosphere-cta--desktop {
        display: none !important;
    }

    .atmosphere-cta--mobile {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        margin-top: var(--space-8);
        box-sizing: border-box;
    }
}

/* ==========================================
    9. SERVICES SECTION
========================================== */
.services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 850px) {
    .services-layout {
        grid-template-columns: 1.2fr 1fr;
        /* Mesma altura que o card Combo; a lista lateral estica e os cards repartem o espaço */
        align-items: stretch;
    }

    .services-side-list {
        height: 100%;
        min-height: 0;
    }

    .services-side-list > .side-card {
        flex: 1 1 0;
        min-height: 0;
    }
}

.services-side-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.service-card {
    background: var(--preto-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dourado);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--preto-lighter);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img,
.service-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-img video {
    display: block;
}

.service-card:hover .service-img img,
.service-card:hover .service-img video {
    transform: scale(1.05);
}

.service-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-price {
    color: var(--dourado);
    font-weight: 600;
    white-space: nowrap;
}

.service-desc {
    color: var(--branco-muted);
    font-size: 1rem;
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.highlight-card {
    flex-direction: column;
    border-color: rgba(201, 168, 76, 0.2);
}

/* Combo destaque: um único card vertical 9:16 (1080×1920), vídeo + texto sobreposto */
.highlight-card--story {
    display: block;
    padding: 0;
}

.highlight-card__inner {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 2px;
}

.highlight-card__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    display: block;
}

.highlight-card:hover .highlight-card__video {
    transform: scale(1.04);
}

.highlight-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 35%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(0, 0, 0, 0.92) 100%
    );
    pointer-events: none;
}

.highlight-card__copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.25rem, 4vw, 2rem);
    text-align: center;
}

.highlight-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.highlight-card__name {
    font-size: clamp(1.15rem, 3.5vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--branco);
    line-height: 1.2;
}

.highlight-card__price {
    margin: 0 0 var(--space-4);
    font-size: clamp(1.75rem, 5vw, 2.35rem);
    font-weight: 700;
    color: var(--dourado);
    letter-spacing: 0.06em;
    line-height: 1;
}

.highlight-card__desc {
    margin: 0 0 var(--space-6);
    font-size: clamp(0.9rem, 2.4vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
}

.highlight-card__cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.highlight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    box-shadow: 0 0 15px var(--dourado-glow);
    z-index: 20;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.highlight-card:hover::after {
    opacity: 1;
    height: 3px;
    box-shadow: 0 0 25px var(--dourado);
}

.side-card {
    flex-direction: column;
}

.side-card .service-img {
    height: 200px;
}

@media (min-width: 600px) {
    .side-card {
        flex-direction: row;
        min-height: 0;
    }

    .side-card .service-img {
        width: 160px;
        flex-shrink: 0;
        align-self: stretch;
        min-height: 0;
    }

    .side-card .service-img img {
        height: 100%;
        min-height: 140px;
    }

    .side-card .service-content {
        padding: var(--space-4) var(--space-6);
        justify-content: center;
    }

    .side-card .service-header {
        font-size: 1rem;
        margin-bottom: var(--space-2);
    }

    .side-card .service-desc {
        margin-bottom: var(--space-4);
        font-size: 0.95rem;
    }
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-auto {
    margin-top: auto;
}

.w-full {
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
}

.badge-gold {
    background: var(--dourado);
    color: var(--preto);
    padding: 2px 8px;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 1px;
}

/* ==========================================
    10. VIP MEMBERSHIP SECTION
========================================== */
.vip-section {
    background-color: var(--preto-light);
    position: relative;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: center;
}

.vip-card {
    background: var(--preto);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.vip-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
}

.vip-lv {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    color: var(--dourado);
    margin-bottom: var(--space-4);
}

.vip-features {
    margin: var(--space-6) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    color: var(--branco-muted);
    font-size: 0.95rem;
}

.vip-features li {
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: var(--transition-smooth);
}

.vip-features li:hover {
    color: var(--branco);
    transform: translateX(5px);
}

.vip-features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: var(--dourado);
}

.vip-card.highlight {
    transform: scale(1.05);
    border-color: var(--dourado);
    box-shadow: 0 0 30px var(--dourado-glow);
    z-index: 2;
    padding: var(--space-12) var(--space-8);
}

.vip-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    box-shadow: 0 0 25px var(--dourado);
    z-index: 10;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dourado);
    color: var(--preto);
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
    white-space: nowrap;
    z-index: 20;
}

.vip-price {
    font-size: 3rem;
    font-weight: 300;
    color: var(--branco);
    margin: var(--space-4) 0;
    line-height: 1;
}

.vip-price span {
    font-size: 1rem;
    color: var(--branco-muted);
    letter-spacing: 1px;
}

/* ==========================================
    11. DIA DO NOIVO SECTION
========================================== */
.noivo-img-wrapper {
    position: relative;
    padding-top: 130%;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

@media (min-width: 900px) {
    .noivo-img-wrapper {
        padding-top: 110%;
    }
}

.noivo-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(110%);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.noivo-img-wrapper:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(110%);
}

.noivo-marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: var(--space-12);
    padding: var(--space-4) 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05) 50%, transparent);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.noivo-marquee-track {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    width: max-content;
    animation: scroll-left-noivo 30s linear infinite;
}

.noivo-marquee-item {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--branco-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.noivo-marquee-dot {
    color: var(--dourado);
    font-size: 1.2rem;
    line-height: 0;
    opacity: 0.5;
}

@keyframes scroll-left-noivo {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--space-8) / 2)));
    }
}

/* ==========================================
    12. PRODUCTS BOUTIQUE SECTION
========================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

/* Produtos: widget React com scroll-driven (sticky + min-height); não usar overflow:hidden no mount — quebra sticky */
.products-layer-mount {
    margin-top: var(--space-8);
    padding: var(--space-2) 0 var(--space-6);
    max-width: 100%;
    overflow: visible;
}

@media (max-width: 767px) {
    .products-layer-mount {
        padding-left: max(env(safe-area-inset-left, 0), 0px);
        padding-right: max(env(safe-area-inset-right, 0), 0px);
    }
}

.product-card {
    background: transparent;
    text-align: center;
    cursor: default;
    transition: var(--transition-smooth);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-6);
    padding-top: 100%;
    background: var(--preto-light);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease, transform 0.8s ease;
    opacity: 0;
    mix-blend-mode: normal;
}

.product-carousel {
    position: absolute;
    inset: 0;
    --slide-duration: 2.2s;
}

.product-slide {
    pointer-events: none;
    z-index: 0;
    animation-name: product-carousel-loop;
    animation-duration: calc(var(--slide-count) * var(--slide-duration));
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: calc(var(--slide-index) * var(--slide-duration) * -1);
}

.product-slide-single {
    opacity: 0.8;
    z-index: 1;
    animation: none;
}

.product-static-image {
    opacity: 0.85;
    z-index: 1;
}

.product-card:hover .product-slide {
    transform: scale(1.06);
}

.product-card:hover .product-static-image {
    transform: scale(1.06);
    opacity: 1;
}

@keyframes product-carousel-loop {
    0% {
        opacity: 0;
        z-index: 0;
    }

    4% {
        opacity: 0.85;
        z-index: 1;
    }

    46% {
        opacity: 0.85;
        z-index: 1;
    }

    50% {
        opacity: 0;
        z-index: 0;
    }

    100% {
        opacity: 0;
        z-index: 0;
    }
}

.product-name {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-2);
    transition: var(--transition-smooth);
}

.product-card:hover .product-name {
    color: var(--dourado);
}

.product-price {
    color: var(--branco-muted);
    font-weight: 300;
}

/* ==========================================
    13. GALLERY SECTION (LOOKBOOK EDITORIAL)
========================================== */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 600px) {
    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .editorial-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--preto-light);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.02);
    min-height: 300px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

@media (min-width: 900px) {
    .gallery-item {
        min-height: auto;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: grayscale(20%) contrast(110%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    opacity: 0.3;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(110%);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-style-name {
    font-family: var(--font-brand);
    font-size: 2.5rem;
    color: var(--dourado);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.gallery-style-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--branco);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--dourado);
    z-index: 3;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 0.3;
    transform: scale(1);
}

/* ==========================================
    14. O MESTRE (HEAD BARBER)
========================================== */
.master-single-img {
    position: relative;
    padding-top: 130%;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    cursor: pointer;
}

@media (min-width: 900px) {
    .master-single-img {
        padding-top: 110%;
    }
}

.master-single-img img,
.master-single-img .master-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(110%);
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
}

.master-single-img:hover img,
.master-single-img:hover .master-video {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(110%);
}

.master-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.master-single-img:hover .master-hover-overlay {
    opacity: 1;
}

.master-hover-btn {
    border: 1px solid var(--dourado);
    color: var(--dourado);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.master-single-img:hover .master-hover-btn {
    transform: translateY(0);
}

.master-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dourado);
    font-weight: 600;
}

/* ==========================================
    15. TESTIMONIALS SECTION 
========================================== */
.testimonials-section {
    background: var(--preto-light);
    overflow: hidden;
}

.testimonials-marquee-wrapper {
    position: relative;
    width: 100%;
    padding: var(--space-4) 0;
    display: flex;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--preto-light), transparent);
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--preto-light), transparent);
}

.testimonials-track {
    display: flex;
    gap: var(--space-8);
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    background: var(--preto);
    transition: var(--transition-smooth);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
}

.quote-icon {
    font-family: var(--font-brand);
    font-size: 4rem;
    color: var(--dourado);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.stars {
    color: var(--dourado);
    margin-bottom: var(--space-4);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--branco-muted);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--dourado);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--space-8) / 2)));
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: var(--space-6);
    }

    .testimonials-marquee-wrapper::before,
    .testimonials-marquee-wrapper::after {
        width: 10vw;
    }
}

/* ==========================================
    16. FAQ SECTION
========================================== */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    margin-bottom: var(--space-4);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--branco);
    font-family: var(--font-ui);
    font-size: 1.1rem;
    padding: var(--space-4) 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-icon {
    color: var(--dourado);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: var(--branco-muted);
}

.faq-answer p {
    padding-bottom: var(--space-4);
}

/* ==========================================
    17. LOCATION & HOURS
========================================== */
.location-section {
    background: var(--preto-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.map-container {
    width: 100%;
    height: 400px;
    filter: grayscale(100%) invert(90%) contrast(120%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.hours-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.hours-table td {
    padding: var(--space-4) 0;
    color: var(--branco-muted);
    font-size: 1.1rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--dourado);
}

.address-box {
    margin-top: var(--space-8);
    padding: var(--space-6);
    border: 1px solid var(--dourado);
    background: rgba(201, 168, 76, 0.05);
}

/* ==========================================
    18. FINAL CTA
========================================== */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1512690459411-b9245aed614b?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: translateZ(0);
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.60) 0%, var(--preto) 100%);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 3;
}

.final-cta__wrap {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.final-cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
    line-height: 1.15;
}

.final-cta__lede {
    margin: 0;
    color: var(--branco-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 36ch;
}

.final-cta__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-2) 0 var(--space-4);
}

.final-cta__avatars {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 var(--space-4);
    max-width: 100%;
}

.final-cta__avatar-chip {
    display: flex;
    align-items: center;
    margin-left: -10px;
    padding: 3px;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    font-family: inherit;
}

.final-cta__avatar-chip:first-child {
    margin-left: 0;
}

.final-cta__avatar-chip:nth-child(2) {
    z-index: 2;
}

.final-cta__avatar-chip:nth-child(3) {
    z-index: 3;
}

.final-cta__avatar-chip:nth-child(4) {
    z-index: 4;
}

.final-cta__avatar-chip:nth-child(5) {
    z-index: 5;
}

.final-cta__avatar-chip:hover,
.final-cta__avatar-chip:focus-visible {
    z-index: 25;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
    outline: none;
}

.final-cta__avatar-chip:focus-visible {
    box-shadow: 0 0 0 2px var(--preto), 0 0 0 4px var(--dourado);
}

.final-cta__avatar-img {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--preto);
}

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

.final-cta__avatar-name {
    display: block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--branco);
    letter-spacing: 0.02em;
    transition: max-width 0.45s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0;
    text-align: left;
}

@media (hover: hover) and (pointer: fine) {
    .final-cta__avatar-chip:hover .final-cta__avatar-name,
    .final-cta__avatar-chip:focus-visible .final-cta__avatar-name {
        max-width: 16rem;
        opacity: 1;
        padding-left: 10px;
        padding-right: 14px;
    }
}

.final-cta__avatar-chip.is-expanded .final-cta__avatar-name {
    max-width: 16rem;
    opacity: 1;
    padding-left: 10px;
    padding-right: 14px;
}

.final-cta__avatar-chip.is-expanded {
    z-index: 25;
}

@media (min-width: 600px) {
    .final-cta__avatar-img {
        width: 52px;
        height: 52px;
    }

    .final-cta__avatar-chip {
        margin-left: -12px;
    }

    .final-cta__avatar-chip:first-child {
        margin-left: 0;
    }
}

.final-cta__stars {
    margin-bottom: 0;
    font-size: 1.35rem;
    letter-spacing: 0.12em;
}

.final-cta__btn {
    margin-top: 0;
}

.final-brand {
    font-family: var(--font-brand);
    font-size: 5rem;
    color: var(--branco);
    opacity: 0.05;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
    line-height: 1;
    z-index: 2;
}

/* ==========================================
    19. FOOTER LUXURY GRID
========================================== */
.site-footer {
    background: var(--preto);
    padding: var(--space-16) 0 var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer {
        text-align: left;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: var(--space-12);
    }
}

.footer-brand .footer-logo {
    font-family: var(--font-brand);
    font-size: 3.5rem;
    color: var(--dourado);
    line-height: 1;
    margin-bottom: var(--space-4);
    display: inline-block;
}

.footer-tagline {
    color: var(--branco-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto var(--space-6) auto;
}

@media (min-width: 768px) {
    .footer-tagline {
        margin: 0 0 var(--space-6) 0;
    }
}

.footer-socials {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-socials {
        justify-content: flex-start;
    }
}

.footer-socials a {
    color: var(--branco-muted);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-socials a:hover {
    color: var(--preto);
    background: var(--dourado);
    border-color: var(--dourado);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--dourado-glow);
}

.footer-title {
    color: var(--branco);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: var(--space-6);
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 768px) {
    .footer-nav {
        align-items: flex-start;
    }
}

.footer-nav a {
    color: var(--branco-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    width: max-content;
}

.footer-nav a:hover {
    color: var(--dourado);
    transform: translateX(5px);
}

.footer-contact p {
    color: var(--branco-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.developer {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.developer a {
    color: var(--branco-muted);
    transition: var(--transition-smooth);
}

.developer strong {
    font-weight: 700;
    color: var(--branco);
    transition: var(--transition-smooth);
    position: relative;
}

.developer a:hover strong {
    color: var(--dourado);
    text-shadow: 0 0 10px var(--dourado-glow);
}

/* ==========================================
    20. FLOATING WHATSAPP
========================================== */
.float-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--preto);
    border: 2px solid var(--dourado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: var(--dourado);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: pulse-gold 2s infinite;
    transition: var(--transition-smooth);
}

.float-wpp:hover {
    background: var(--dourado);
    color: var(--preto);
    transform: scale(1.1);
    animation: none;
}

.float-wpp svg {
    fill: currentColor;
    width: 28px;
    height: 28px;
}

/* ==========================================
    21. MODALS (QUICKVIEW & LIGHTBOX)
========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: var(--space-4);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--preto);
    width: 100%;
    max-width: 900px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--dourado-glow);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--branco);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--preto);
    background: var(--dourado);
    border-color: var(--dourado);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-content {
        overflow-y: visible;
    }

    .modal-body {
        flex-direction: row;
    }
}

.modal-img-container {
    flex: 1;
    background: var(--preto-light);
    position: relative;
    min-height: 300px;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: lighten;
}

.modal-info {
    flex: 1;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-2);
    color: var(--dourado);
}

.modal-price {
    font-size: 1.5rem;
    color: var(--branco);
    font-weight: 300;
    margin-bottom: var(--space-6);
}

.modal-desc {
    color: var(--branco-muted);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    font-size: 0.95rem;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 5001;
    pointer-events: auto;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--branco);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 5002;
    pointer-events: auto;
    transition: var(--transition-smooth);
    font-family: var(--font-ui);
    font-weight: 300;
}

.lightbox-close:hover {
    color: var(--dourado);
    transform: rotate(90deg);
}

/* ==========================================
    22. RESPONSIVE DESIGN
========================================== */
@media (max-width: 992px) {
    .hero-brand.brand-lockup:not(.brand-lockup--compact) .brand-lockup__title {
        font-size: clamp(3.25rem, 14vw, 8rem);
    }

    .header-brand.brand-lockup {
        align-items: center;
        text-align: center;
    }

    /* Menu mobile: logo maior; barra com cantos só levemente arredondados */
    .header-brand .brand-lockup__title {
        font-size: clamp(2.1rem, 7.8vw, 2.95rem);
        letter-spacing: 0.5px;
    }

    .header-brand .brand-lockup__tagline {
        font-size: clamp(0.68rem, 3.2vw, 0.92rem);
        margin-top: 0.22rem;
    }

    .header-brand.brand-lockup--compact .brand-lockup__title {
        font-size: clamp(1.9rem, 6.8vw, 2.65rem);
    }

    .header-brand.brand-lockup--compact .brand-lockup__tagline {
        font-size: clamp(0.6rem, 2.85vw, 0.82rem);
    }

    .vip-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .vip-card.highlight {
        transform: none;
        padding: var(--space-8);
    }

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

    /* Header mobile: barra flutuante, bordas arredondadas, só a logo centralizada */
    header {
        background: transparent;
        border-bottom: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        padding: 12px 16px 0;
        box-shadow: none;
    }

    header.header-scrolled {
        background: transparent;
        box-shadow: none;
        padding: 8px 16px 0;
    }

    header .container.header-content,
    .container.header-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        max-width: min(100%, 460px);
        min-height: 52px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        padding: 0.6rem 1.35rem;
        background: rgba(10, 10, 10, 0.78);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(201, 168, 76, 0.28);
        border-radius: 14px;
        box-shadow: 0 10px 36px rgba(0, 0, 0, 0.42);
    }

    header.header-scrolled .container.header-content {
        background: rgba(10, 10, 10, 0.9);
        box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
    }

    .header-logo-wrapper {
        flex: unset;
        display: flex;
        justify-content: center;
        width: 100%;
    }


    .nav-links {
        display: none;
    }

    .header-cta-wrapper {
        display: none;
    }

    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero-brand.brand-lockup:not(.brand-lockup--compact) .brand-lockup__title {
        font-size: clamp(2.6rem, 13vw, 4.75rem);
    }

    .title-section {
        font-size: 2rem;
    }

    .float-wpp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .float-wpp svg {
        width: 24px;
        height: 24px;
    }

    .modal-info {
        padding: var(--space-4);
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-img-container {
        min-height: 250px;
    }

    .product-carousel-btn,
    .product-carousel-dots {
        opacity: 1;
    }

    .product-carousel-btn {
        width: 38px;
        height: 38px;
    }
}