/* ===== HOME PAGE STYLES ===== */


        :root {
            --preto: #0A0A0A;
            --branco: #F8F6F2;
            --ouro: #C5A059;
            --ouro-claro: #D4B878;
            --ouro-escuro: #A8833A;
            --cinza: #8A8680;
            --cinza-claro: #E8E4DE;
            --cinza-escuro: #2A2825;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--branco);
            color: var(--preto);
            overflow-x: hidden;
        }

        .site-wrapper {
            max-width: 1140px;
            margin: 0 auto;
            position: relative;
        }

        /* ——— HEADER ——— */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 80px;
            background: rgba(248, 246, 242, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(197, 160, 89, 0.15);
            transition: all 0.4s ease;
        }

        .header-inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 40px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            gap: 2px;
        }
        .logo-wordmark {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 6px;
            color: var(--preto);
            line-height: 1;
        }
        .logo-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.52rem;
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--ouro);
            text-transform: uppercase;
        }

        .nav-links {
            display: none;
            gap: 48px;
            list-style: none;
        }
        .nav-links a {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--cinza-escuro);
            text-decoration: none;
            position: relative;
            transition: color 0.3s;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--ouro);
            transition: width 0.3s ease;
        }
        .nav-links a:hover { color: var(--ouro); }
        .nav-links a:hover::after { width: 100%; }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
            transition: transform 0.2s;
        }
        .icon-btn svg {
            width: 19px;
            height: 19px;
            stroke: var(--preto);
            stroke-width: 1.4;
            fill: none;
            transition: stroke 0.2s;
        }
        .icon-btn:hover svg { stroke: var(--ouro); }

        /* ——— HERO ——— */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: var(--preto);
        }

        /* Grain texture overlay */
        .hero-grain {
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: calc(100vh - 80px);
            justify-content: center;
        }

        .hero-pre {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 36px;
        }
        .hero-pre-line {
            width: 40px;
            height: 1px;
            background: var(--ouro);
        }
        .hero-pre-text {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--ouro);
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5.5rem;
            font-weight: 300;
            line-height: 1.1;
            color: var(--branco);
            margin-bottom: 32px;
            max-width: 800px;
        }
        .hero-title em {
            font-style: italic;
            font-weight: 300;
            color: var(--ouro-claro);
        }

        .hero-desc {
            font-size: 0.8rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            color: rgba(248, 246, 242, 0.5);
            line-height: 2;
            max-width: 500px;
        }

        /* Combo badge no hero */
        .hero-combo {
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 2;
            white-space: nowrap;
        }
        .combo-badge {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            border: 1px solid rgba(197, 160, 89, 0.4);
            padding: 14px 28px;
            cursor: pointer;
            transition: all 0.3s;
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(8px);
        }
        .combo-badge:hover {
            border-color: var(--ouro);
            background: rgba(197, 160, 89, 0.1);
        }
        .combo-label {
            font-size: 0.55rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ouro);
        }
        .combo-detail {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 400;
            color: var(--branco);
        }

        .brand-pill-meta {
            font-size: 0.58rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(248, 246, 242, 0.2);
        }

        .brand-arrow {
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.3s;
            color: var(--ouro);
            font-size: 0.8rem;
        }

        /* ——— SEÇÃO COLEÇÕES ——— */
        .colecoes-section {
            padding: 120px 0 100px;
            background: var(--branco);
        }

        .section-header {
            max-width: 1140px;
            margin: 0 auto 64px;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .section-eyebrow {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
        }
        .eyebrow-line {
            width: 32px;
            height: 1px;
            background: var(--ouro);
        }
        .eyebrow-text {
            font-size: 0.58rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--ouro);
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.2rem;
            font-weight: 400;
            line-height: 1.15;
            color: var(--preto);
            white-space: nowrap;
        }
        .section-title em {
            font-style: italic;
            color: var(--cinza);
        }

        .carousel-controls {
            display: flex;
            gap: 12px;
            align-items: center;
            padding-bottom: 8px;
        }
        .ctrl-btn {
            width: 48px;
            height: 48px;
            border: 1px solid var(--cinza-claro);
            background: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .ctrl-btn svg {
            width: 18px;
            height: 18px;
            stroke: var(--preto);
            stroke-width: 1.5;
            fill: none;
            transition: stroke 0.3s;
        }
        .ctrl-btn:hover {
            background: var(--preto);
            border-color: var(--preto);
        }
        .ctrl-btn:hover svg { stroke: var(--ouro); }

        /* Carousel */
        .carousel-wrap {
            overflow: hidden;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .carousel-track {
            display: flex;
            gap: 2px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cat-card {
            flex: 0 0 calc(33.333% - 2px);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 3/4;
        }

        .cat-card-bg {
            position: absolute;
            inset: 0;
            transition: transform 0.6s ease;
        }
        .cat-card:hover .cat-card-bg { transform: scale(1.05); }

        .cat-bg-1 { background: linear-gradient(160deg, #1C1C1C 0%, #2E2A26 100%); }
        .cat-bg-2 { background: linear-gradient(160deg, #232320 0%, #1A1915 100%); }
        .cat-bg-3 { background: linear-gradient(160deg, #242424 0%, #1E1C18 100%); }
        .cat-bg-4 { background: linear-gradient(160deg, #1F1F22 0%, #252528 100%); }
        .cat-bg-5 { background: linear-gradient(160deg, #201E1A 0%, #2A2520 100%); }
        .cat-bg-6 { background: linear-gradient(160deg, #1A1A1A 0%, #242424 100%); }

        /* Decorative pattern on cards */
        .cat-card-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 40px,
                rgba(197, 160, 89, 0.03) 40px,
                rgba(197, 160, 89, 0.03) 41px
            );
        }

        /* Glyph/icon centered on card */
        .cat-card-glyph {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.08;
            font-family: 'Cormorant Garamond', serif;
            font-size: 10rem;
            font-weight: 300;
            color: var(--ouro);
            transition: opacity 0.4s;
        }
        .cat-card:hover .cat-card-glyph { opacity: 0.14; }

        .cat-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 36px 32px;
        }

        .cat-number {
            font-size: 0.5rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--ouro);
            margin-bottom: 12px;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.3s ease 0.05s;
        }
        .cat-card:hover .cat-number { opacity: 1; transform: translateY(0); }

        .cat-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 400;
            color: var(--branco);
            margin-bottom: 6px;
        }

        .cat-sub {
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(248, 246, 242, 0.45);
            margin-bottom: 20px;
        }

        .cat-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.58rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--ouro);
            opacity: 0;
            transform: translateY(6px);
            transition: all 0.3s ease 0.05s;
        }
        .cat-cta-line {
            width: 24px;
            height: 1px;
            background: var(--ouro);
            transition: width 0.3s;
        }
        .cat-card:hover .cat-cta { opacity: 1; transform: translateY(0); }
        .cat-card:hover .cat-cta-line { width: 36px; }

        .carousel-dots-row {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
        }
        .cdot {
            width: 6px;
            height: 6px;
            background: var(--cinza-claro);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }
        .cdot.active {
            width: 24px;
            border-radius: 3px;
            background: var(--ouro);
        }

        /* ——— PRODUTOS ——— */
        .produtos-section {
            padding: 100px 0;
            background: #F2EFEA;
        }

        .section-header-inner {
            max-width: 1140px;
            margin: 0 auto 64px;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--preto);
            padding: 12px 28px;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--preto);
            background: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-outline:hover {
            background: var(--preto);
            color: var(--branco);
        }

        .produtos-grid {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px 24px;
        }

        .prod-card {
            position: relative;
            cursor: pointer;
            group: true;
        }

        .prod-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
            background: var(--cinza-claro);
            margin-bottom: 20px;
        }

        .prod-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            display: block;
        }
        .prod-card:hover .prod-img-wrap img { transform: scale(1.04); }

        .prod-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--ouro);
            color: var(--preto);
            font-size: 0.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 5px 12px;
            text-transform: uppercase;
        }

        .prod-add {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--preto);
            color: var(--branco);
            padding: 14px;
            font-size: 0.58rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .prod-add svg {
            width: 14px;
            height: 14px;
            stroke: var(--ouro);
            stroke-width: 2;
            fill: none;
        }
        .prod-card:hover .prod-add { transform: translateY(0); }

        .prod-info {
            padding: 0 4px;
        }
        .prod-brand {
            font-size: 0.55rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ouro);
            margin-bottom: 6px;
        }
        .prod-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 400;
            color: var(--preto);
            line-height: 1.35;
            margin-bottom: 12px;
        }
        .prod-prices {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }
        .price-old {
            font-size: 0.7rem;
            color: var(--cinza);
            text-decoration: line-through;
        }
        .price-now {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--preto);
        }

        /* ——— WHY SECTION ——— */
        .manifesto-section {
            padding: 120px 56px;
            background: var(--preto);
            position: relative;
            overflow: hidden;
        }

        .manifesto-section::before {
            content: 'MIOLLI';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Cormorant Garamond', serif;
            font-size: 18rem;
            font-weight: 700;
            color: rgba(197, 160, 89, 0.04);
            letter-spacing: 16px;
            white-space: nowrap;
            pointer-events: none;
        }

        .manifesto-inner {
            max-width: 760px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .manifesto-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 48px;
        }
        .ornament-line {
            width: 60px;
            height: 1px;
            background: var(--ouro);
            opacity: 0.5;
        }
        .ornament-diamond {
            width: 6px;
            height: 6px;
            background: var(--ouro);
            transform: rotate(45deg);
        }

        .manifesto-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.4rem;
            font-weight: 300;
            color: var(--branco);
            line-height: 1.25;
            margin-bottom: 32px;
        }
        .manifesto-title em {
            font-style: italic;
            color: var(--ouro-claro);
        }

        .manifesto-text {
            font-size: 0.8rem;
            font-weight: 300;
            color: rgba(248, 246, 242, 0.5);
            line-height: 2;
            max-width: 560px;
            margin: 0 auto;
            letter-spacing: 0.3px;
        }

        /* ——— FOOTER ——— */
        .main-footer {
            background: #0A0A0A;
            padding: 80px 0 0;
            border-top: 1px solid rgba(197, 160, 89, 0.15);
        }

        .footer-inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 64px;
            padding-bottom: 64px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-logo-col .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 600;
            letter-spacing: 5px;
            color: var(--branco);
            display: block;
            margin-bottom: 8px;
        }
        .footer-logo-col .footer-tagline {
            font-size: 0.55rem;
            letter-spacing: 3px;
            color: var(--ouro);
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .footer-logo-col p {
            font-size: 0.75rem;
            font-weight: 300;
            color: rgba(248, 246, 242, 0.35);
            line-height: 1.9;
            max-width: 260px;
        }

        .footer-col h5 {
            font-size: 0.58rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ouro);
            margin-bottom: 28px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(197, 160, 89, 0.15);
        }
        .footer-col p, .footer-col address {
            font-size: 0.75rem;
            font-weight: 300;
            color: rgba(248, 246, 242, 0.4);
            line-height: 2;
            font-style: normal;
        }

        .newsletter-col h5 {
            font-size: 0.58rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--ouro);
            margin-bottom: 28px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(197, 160, 89, 0.15);
        }
        .newsletter-col p {
            font-size: 0.72rem;
            font-weight: 300;
            color: rgba(248, 246, 242, 0.35);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .newsletter-row {
            display: flex;
        }
        .newsletter-input {
            flex: 1;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-right: none;
            padding: 12px 16px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            color: var(--branco);
            outline: none;
            transition: border-color 0.3s;
        }
        .newsletter-input::placeholder { color: rgba(255,255,255,0.2); }
        .newsletter-input:focus { border-color: var(--ouro); }

        .newsletter-btn {
            background: var(--ouro);
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .newsletter-btn:hover { background: var(--ouro-claro); }
        .newsletter-btn svg {
            width: 16px;
            height: 16px;
            stroke: var(--preto);
            stroke-width: 2;
            fill: none;
            display: block;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
        }
        .footer-copy {
            font-size: 0.62rem;
            color: rgba(248, 246, 242, 0.2);
            letter-spacing: 0.5px;
        }
        .footer-copy span { color: var(--ouro); }

        /* ——— WHATSAPP ——— */
        .wpp-float {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            background: var(--preto);
            border: 1px solid rgba(197, 160, 89, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 99;
            box-shadow: 0 4px 20px rgba(0,0,0,0.25);
        }
        .wpp-float:hover {
            background: var(--ouro);
            border-color: var(--ouro);
            transform: translateY(-3px);
        }
        .wpp-float svg {
            width: 22px;
            height: 22px;
            stroke: var(--branco);
            stroke-width: 1.5;
            fill: none;
        }
        .wpp-float:hover svg { stroke: var(--preto); }

        /* ——— TOAST ——— */
        .toast {
            position: fixed;
            bottom: 100px;
            right: 32px;
            background: var(--preto);
            color: var(--branco);
            padding: 14px 24px 14px 20px;
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.3px;
            z-index: 1000;
            pointer-events: none;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.25s ease;
            border-left: 2px solid var(--ouro);
            max-width: 320px;
        }
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* ——— HAMBURGER SOFISTICADO ——— */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 300;
            position: relative;
        }
        .hamburger span {
            display: block;
            height: 1px;
            background: var(--preto);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform-origin: right center;
        }
        .hamburger span:nth-child(1) { width: 28px; }
        .hamburger span:nth-child(2) { width: 20px; }
        .hamburger span:nth-child(3) { width: 24px; }
        /* Estado aberto */
        .hamburger.open span { background: var(--branco); }
        .hamburger.open span:nth-child(1) { width: 28px; transform: translateY(7px) rotate(-45deg); }
        .hamburger.open span:nth-child(2) { width: 0; opacity: 0; }
        .hamburger.open span:nth-child(3) { width: 28px; transform: translateY(-7px) rotate(45deg); }

        /* ——— FULLSCREEN OVERLAY MENU ——— */
        .fullscreen-menu {
            position: fixed;
            inset: 0;
            z-index: 250;
            background: var(--preto);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            clip-path: circle(0% at calc(100% - 52px) 40px);
            transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
            pointer-events: none;
        }
        .fullscreen-menu.open {
            clip-path: circle(150% at calc(100% - 52px) 40px);
            pointer-events: all;
        }
        .fullscreen-menu::before {
            content: 'MIOLLI';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Cormorant Garamond', serif;
            font-size: 18vw;
            font-weight: 700;
            color: rgba(197, 160, 89, 0.04);
            letter-spacing: 12px;
            white-space: nowrap;
            pointer-events: none;
            user-select: none;
        }
        .fullscreen-menu::after {
            content: '';
            position: absolute;
            top: 10%; bottom: 10%;
            left: 50%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.15) 30%, rgba(197,160,89,0.15) 70%, transparent);
            pointer-events: none;
        }
        .menu-nav {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }
        .menu-nav a {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 6vw, 4.8rem);
            font-weight: 300;
            letter-spacing: 4px;
            color: rgba(248, 246, 242, 0.35);
            text-decoration: none;
            padding: 14px 48px;
            position: relative;
            opacity: 0;
            transform: translateY(24px);
            transition: color 0.3s, letter-spacing 0.3s, opacity 0.5s cubic-bezier(0.23,1,0.32,1), transform 0.5s cubic-bezier(0.23,1,0.32,1);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .fullscreen-menu.open .menu-nav a { opacity: 1; transform: translateY(0); }
        .fullscreen-menu.open .menu-nav a:nth-child(1) { transition-delay: 0.15s; }
        .fullscreen-menu.open .menu-nav a:nth-child(2) { transition-delay: 0.22s; }
        .fullscreen-menu.open .menu-nav a:nth-child(3) { transition-delay: 0.29s; }
        .fullscreen-menu.open .menu-nav a:nth-child(4) { transition-delay: 0.36s; }
        .fullscreen-menu.open .menu-nav a:nth-child(5) { transition-delay: 0.43s; }
        .fullscreen-menu.open .menu-nav a:nth-child(6) { transition-delay: 0.50s; }
        .menu-nav a::before {
            content: '';
            width: 0;
            height: 1px;
            background: var(--ouro);
            transition: width 0.4s ease;
            display: inline-block;
        }
        .menu-nav a:hover { color: var(--branco); letter-spacing: 6px; }
        .menu-nav a:hover::before { width: 32px; }
        .menu-footer {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 40px;
            opacity: 0;
            transition: opacity 0.5s ease 0.6s;
            white-space: nowrap;
        }
        .fullscreen-menu.open .menu-footer { opacity: 1; }
        .menu-footer span {
            font-size: 0.55rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(248, 246, 242, 0.2);
        }
        .menu-footer a {
            color: rgba(248, 246, 242, 0.2);
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.55rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: color 0.2s;
        }
        .menu-footer a:hover { color: var(--ouro); }

        /* ——— ANIMATIONS ——— */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-pre { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
        .hero-title { animation: fadeUp 0.8s ease both; animation-delay: 0.25s; }
        .hero-desc { animation: fadeUp 0.8s ease both; animation-delay: 0.4s; }
        .hero-combo { animation: fadeUp 0.7s ease both; animation-delay: 0.6s; }

        /* ——— RESPONSIVE ——— */
        @media (max-width: 1024px) {
            .header-inner { padding: 0 32px; }
            .hero-content { padding: 0 32px; }
            .hero-title { font-size: 4rem; }
            .produtos-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
            .section-header, .section-header-inner { padding: 0 32px; }
            .carousel-wrap { padding: 0 32px; }
            .cat-card { flex: 0 0 calc(50% - 2px); }
        }

        @media (max-width: 768px) {
            .header-inner { padding: 0 24px; }
            .main-header { height: 68px; }
            .hero-content { padding: 0 24px; min-height: auto; padding-top: 60px; padding-bottom: 80px; }
            .hero-title { font-size: 2.8rem; }
            .section-title { font-size: 2.2rem; white-space: normal; }
            .produtos-grid { grid-template-columns: 1fr; padding: 0 24px; }
            .footer-top { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 40px; }
            .footer-inner { padding: 0; }
            .footer-bottom { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
            .section-header, .section-header-inner { padding: 0 24px; flex-direction: column; gap: 24px; align-items: flex-start; }
            .carousel-wrap { padding: 0 24px; }
            .cat-card { flex: 0 0 calc(100% - 2px); }
            .manifesto-section { padding: 80px 24px; }
            .manifesto-title { font-size: 2.4rem; }
        }
    