:root {
    --primary: #c9a227;
    --primary-soft: rgba(201, 162, 39, 0.12);
    --primary-dark: #9a7b1c;
    --ink: #14120f;
    --ink-muted: #4a453c;
    --cream: #f7f3ec;
    --cream-dark: #ebe4d8;
    --surface: #ffffff;
    --gold-line: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45), transparent);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    background-image:
        radial-gradient(ellipse 90% 50% at 10% -10%, rgba(201, 162, 39, 0.08), transparent 55%),
        radial-gradient(ellipse 70% 40% at 100% 20%, rgba(20, 18, 15, 0.04), transparent 50%);
    color: var(--ink-muted);
    -webkit-font-smoothing: antialiased;
}

.font-serif,
.font-display {
    font-family: var(--font-display);
}

.bg-primary {
    background-color: var(--primary);
}

.text-primary {
    color: var(--primary);
}

.text-primary-dark {
    color: var(--primary-dark);
}

.border-primary {
    border-color: var(--primary);
}

.ring-primary {
    --tw-ring-color: var(--primary);
}

.hero-overlay {
    background: linear-gradient(
        165deg,
        rgba(10, 9, 8, 0.78) 0%,
        rgba(20, 18, 15, 0.42) 48%,
        rgba(10, 9, 8, 0.62) 100%
    );
}

.hero-grain {
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-brand {
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.glass-header {
    background: rgba(247, 243, 236, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.card-shadow {
    box-shadow:
        0 4px 6px -1px rgba(20, 18, 15, 0.06),
        0 24px 48px -12px rgba(20, 18, 15, 0.12);
}

.card-shadow-hover {
    box-shadow:
        0 8px 16px -4px rgba(20, 18, 15, 0.08),
        0 32px 64px -16px rgba(20, 18, 15, 0.18);
}

.section-eyebrow {
    letter-spacing: 0.35em;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.divider-gold {
    height: 1px;
    width: 4rem;
    margin-left: auto;
    margin-right: auto;
    background: var(--gold-line);
    background-color: rgba(201, 162, 39, 0.35);
}

.dept-tile {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 10rem;
    cursor: pointer;
    border: 1px solid rgba(20, 18, 15, 0.06);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
}

@media (min-width: 768px) {
    .dept-tile {
        min-height: 11.5rem;
    }
}

.dept-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px -16px rgba(20, 18, 15, 0.2);
}

.dept-tile img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.dept-tile:hover img {
    transform: scale(1.06);
}

.dept-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 9, 8, 0.82) 0%, rgba(10, 9, 8, 0.2) 55%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.dept-tile-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1rem 1.125rem 1.125rem;
}

.btn-primary-solid {
    background: var(--primary);
    color: var(--ink);
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-primary-solid:hover {
    background: var(--primary-dark);
    color: #fff;
}

#mobile-menu {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(-100%);
}

#mobile-menu.active {
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.55s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease 0.1s both;
}

.animate-fade-in-delayed {
    animation: fadeIn 1s ease 0.35s both;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.modal-overlay {
    background: rgba(10, 9, 8, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.modal-content {
    transform: scale(0.94) translateY(12px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.gallery-thumb {
    cursor: zoom-in;
}

.lightbox-overlay {
    background: rgba(8, 7, 6, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox-img {
    animation: fadeIn 0.35s ease;
}

.gallery-mosaic-item {
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgba(20, 18, 15, 0.06);
}

.gallery-mosaic-item img {
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.offers-section {
    background: linear-gradient(135deg, #1a1814 0%, #2d2820 50%, #1a1814 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.15), transparent 60%);
    pointer-events: none;
}

.offer-card {
    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}

.offer-card-img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-card:hover .offer-card-img {
    transform: scale(1.04);
}

.offer-discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.offer-flash-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(185, 28, 28, 0.95);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.6rem;
    border-radius: 9999px;
    z-index: 2;
}

.offer-card.offer-urgent {
    box-shadow:
        0 0 0 2px rgba(201, 162, 39, 0.55),
        0 24px 48px -12px rgba(201, 162, 39, 0.25);
    animation: offerGlowSoft 2.2s ease-in-out infinite;
}

.offer-card.offer-urgent .offer-countdown {
    border-color: rgba(201, 162, 39, 0.45);
    background: rgba(201, 162, 39, 0.08);
}

.offer-card.offer-critical {
    box-shadow:
        0 0 0 2px rgba(220, 38, 38, 0.65),
        0 0 28px rgba(220, 38, 38, 0.2),
        0 24px 48px -12px rgba(0, 0, 0, 0.35);
    animation: offerPulseStrong 1.25s ease-in-out infinite;
    transform: scale(1.01);
}

.offer-card.offer-critical .offer-countdown {
    border-color: rgba(220, 38, 38, 0.5);
    background: rgba(254, 226, 226, 0.55);
}

.offer-card.offer-critical .offer-countdown-digits {
    color: #991b1b;
}

@keyframes offerGlowSoft {
    0%,
    100% {
        box-shadow:
            0 0 0 2px rgba(201, 162, 39, 0.45),
            0 24px 48px -12px rgba(201, 162, 39, 0.2);
    }
    50% {
        box-shadow:
            0 0 0 3px rgba(201, 162, 39, 0.75),
            0 28px 56px -10px rgba(201, 162, 39, 0.35);
    }
}

@keyframes offerPulseStrong {
    0%,
    100% {
        transform: scale(1.01);
    }
    50% {
        transform: scale(1.025);
    }
}

.offer-card.is-expired {
    display: none !important;
}

/* Vídeos verticais (9:16) */
.video-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-portrait-shell {
    width: min(100%, 22rem);
    margin-inline: auto;
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 36rem);
    position: relative;
    background: #000;
}

.video-feature-frame {
    transition:
        box-shadow 0.4s ease,
        border-color 0.35s ease;
}

.video-feature-card:hover .video-feature-frame,
.video-feature-card.is-playing .video-feature-frame {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.22),
        0 28px 56px -12px rgba(0, 0, 0, 0.5);
}

.video-feature-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-feature-player:focus {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.video-error {
    position: absolute;
    inset: auto 0 0 0;
    background: rgba(0, 0, 0, 0.75);
    margin: 0;
}
