/* ═══════════════════════════════════════════════════
           RESET & VARIABLES
        ═══════════════════════════════════════════════════ */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --dark:       #0C1828;
            --dark2:      #08101a;
            --gold:       #c9942a;
            --gold-lt:    #e8c56a;
            --gold-dim:   #a07520;
            --parchment:  #ede0c4;
            --parch-dim:  #c8b898;
            --nav-h:      70px;
        }

        html { scroll-behavior: smooth; }

        body {
            background: transparent;
            color: var(--parchment);
            font-family: 'Inter', system-ui, sans-serif;
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════════════════
           INTERACTIVE BACKGROUND
        ═══════════════════════════════════════════════════ */
        #site-bg {
            position: fixed; inset: 0; z-index: -10;
            background:
                radial-gradient(circle at top left, rgba(255,140,0,0.18), transparent 35%),
                radial-gradient(circle at top right, rgba(0,191,255,0.18), transparent 35%),
                radial-gradient(circle at bottom left, rgba(50,205,50,0.16), transparent 35%),
                radial-gradient(circle at bottom right, rgba(255,215,0,0.16), transparent 35%),
                linear-gradient(
                    -45deg,
                    #0f172a, #1e293b, #334155, #1d4ed8, #2563eb,
                    #0ea5e9, #0284c7, #0f766e, #059669, #16a34a,
                    #65a30d, #ca8a04, #ea580c
                );
            background-size: 400% 400%;
            animation: gradientMove 18s ease infinite;
            overflow: hidden;
        }

        @keyframes gradientMove {
            0%   { background-position: 0% 50%; }
            25%  { background-position: 50% 100%; }
            50%  { background-position: 100% 50%; }
            75%  { background-position: 50% 0%; }
            100% { background-position: 0% 50%; }
        }
        .bg-orb {
            position: absolute; border-radius: 50%; filter: blur(90px);
            opacity: 0.45; animation: floatOrb 20s infinite alternate ease-in-out;
        }
        .bg-orb.gold { width: 50svw; height: 50svw; background: var(--gold-dim); top: -10%; left: -10%; }
        .bg-orb.blue { width: 60svw; height: 60svw; background: #06101c; bottom: -10%; right: -10%; animation-delay: -5s; }
        .bg-mouse {
            position: fixed; width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(201,148,42,0.12) 0%, rgba(12,24,40,0) 65%);
            border-radius: 50%; pointer-events: none; z-index: -9;
            transform: translate(-50%, -50%); transition: top 0.1s ease-out, left 0.1s ease-out;
            top: 50%; left: 50%;
        }
        @keyframes floatOrb {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(8vw, 12vh) scale(1.1); }
            100% { transform: translate(-8vw, 8vh) scale(0.9); }
        }

        /* ═══════════════════════════════════════════════════
           TOPBAR & NAVBAR
        ═══════════════════════════════════════════════════ */
        #topbar {
            width: 100%;
            position: relative; z-index: 1000;
            background: rgba(12,24,40,0.5); /* fundo escuro sutil para contraste */
            padding: 30px 0; /* Mais baixo */
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid rgba(201, 148, 42, 0.2);
        }
        @keyframes revealTop {
            0% { opacity: 0; transform: scale(0.8) translateY(30px); filter: blur(12px); }
            100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
        }
        @keyframes pulseLogo {
            0% { filter: drop-shadow(0 0 15px rgba(201,148,42,0.3)); }
            100% { filter: drop-shadow(0 0 35px rgba(201,148,42,0.8)); }
        }
        .topbar-logo-container {
            position: relative;
            z-index: 1010;
            width: 20%;
            display: flex;
            justify-content: center;
        }
        
        .topbar-center-logo {
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 20px rgba(255,255,255,0.15)) drop-shadow(0 0 40px rgba(201,148,42,0.4));
            animation: floatOrb 6s infinite alternate ease-in-out;
        }
        
        @media (max-width: 768px) {
            .topbar-center-logo {
                height: 120px;
            }
        }
        @media (max-width: 480px) {
            .topbar-center-logo {
                height: 80px;
            }
        }

        #navbar {
            position: sticky; top: 0; z-index: 999;
            height: 80px;
            display: flex; align-items: center; padding: 0 36px; gap: 24px;
            background: rgba(12, 24, 40, 0.7);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(201, 148, 42, 0.2);
            transition: all .35s ease-out;
        }
        #navbar.scrolled {
            height: 60px;
            background: rgba(12, 24, 40, 0.7);
            box-shadow: 0 4px 24px rgba(0,0,0,0.6);
        }

        /* Logo */
        .nav-logo {
            height: 52px; width: auto; object-fit: contain; flex-shrink: 0;
            filter: drop-shadow(0 0 10px rgba(201,148,42,.45));
            transition: all .35s;
        }
        #navbar.scrolled .nav-logo { height: 40px; }
        .nav-logo:hover { filter: drop-shadow(0 0 18px rgba(232,197,106,.7)); }

        /* Links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            flex: 1;
        }
        .nav-links a {
            color: var(--parch-dim);
            text-decoration: none;
            font-size: .76rem;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 7px 11px;
            border-radius: 6px;
            transition: color .2s, background .2s;
            white-space: nowrap;
        }
        .nav-links a:hover { color: var(--gold-lt); background: rgba(201,148,42,.1); }

        /* Dropdown Coleções */
        .dropdown {
            position: relative;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(12, 24, 40, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1.5px solid rgba(201, 148, 42, 0.45);
            border-radius: 8px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.6);
            min-width: 180px;
            z-index: 1000;
            padding: 8px 0;
            list-style: none;
            margin-top: 5px;
        }
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        .dropdown-menu li {
            width: 100%;
        }
        .dropdown-menu a {
            display: block !important;
            padding: 10px 16px !important;
            font-size: 0.76rem !important;
            text-transform: uppercase !important;
            color: var(--parch-dim) !important;
            border-radius: 0 !important;
            letter-spacing: 1.2px !important;
            text-align: left !important;
        }
        .dropdown-menu a:hover {
            color: var(--gold-lt) !important;
            background: rgba(201, 148, 42, 0.15) !important;
        }
        
        @media (max-width: 900px) {
            .dropdown-menu {
                position: static;
                background: rgba(12, 24, 40, 0.3);
                border: none;
                box-shadow: none;
                width: 100%;
                display: none;
                padding: 0;
                margin-top: 0;
            }
            .dropdown.open .dropdown-menu {
                display: block;
            }
            .dropdown-menu a {
                padding: 12px 24px !important;
                font-size: 1rem !important;
                text-align: center !important;
            }
        }

        /* CTA */
        .nav-cta {
            padding: 9px 20px !important;
            background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
            color: #0e0b07 !important;
            border-radius: 24px !important;
            font-weight: 700 !important;
            letter-spacing: .5px !important;
            box-shadow: 0 0 18px rgba(201,148,42,.35);
            transition: box-shadow .25s, transform .25s !important;
        }
        .nav-cta:hover {
            color: #0e0b07 !important;
            background: linear-gradient(135deg, var(--gold-lt), var(--gold)) !important;
            box-shadow: 0 0 30px rgba(232,197,106,.6) !important;
            transform: translateY(-1px);
        }

        /* Nav Actions (Right side) */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        /* Login */
        .nav-login {
            background: transparent; border: 1px solid var(--gold);
            color: var(--gold-lt); font-weight: 700; text-transform: uppercase;
            letter-spacing: 1px; padding: 8px 18px; border-radius: 6px;
            cursor: pointer; transition: all .2s; font-size: .76rem;
            text-decoration: none; display: inline-block;
        }
        .nav-login:hover { background: rgba(201,148,42,.15); box-shadow: 0 0 12px rgba(201,148,42,.3); }

        /* Modal Premium */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(12,24,40,0.85); backdrop-filter: blur(10px);
            z-index: 9999; display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity .3s;
        }
        .modal-overlay.active { opacity: 1; pointer-events: auto; }
        .modal-box {
            background: rgba(12, 24, 40, 0.65);
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(201,148,42,0.3); border-radius: 12px;
            padding: 44px; width: 90%; max-width: 380px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(201,148,42,0.15);
            transform: translateY(20px) scale(0.95); transition: transform .3s;
            position: relative;
        }
        .modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
        .modal-close {
            position: absolute; top: 16px; right: 16px; background: none; border: none;
            color: var(--parch-dim); font-size: 1.8rem; cursor: pointer; transition: color .2s;
            line-height: 1;
        }
        .modal-close:hover { color: var(--gold); }
        .modal-box h2 {
            font-family: 'Playfair Display', serif; color: var(--gold-lt);
            text-align: center; font-size: 2rem; margin-bottom: 30px; letter-spacing: 1px;
        }
        .modal-input {
            width: 100%; background: rgba(0,0,0,0.4); border: 1px solid rgba(201,148,42,0.2);
            color: var(--parchment); padding: 14px 16px; border-radius: 6px;
            margin-bottom: 16px; font-family: 'Inter', sans-serif; font-size: 1rem;
            outline: none; transition: border-color .2s;
        }
        .modal-input:focus { border-color: var(--gold); }
        .modal-btn {
            width: 100%; padding: 14px; margin-top: 10px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            color: #0e0b07; font-weight: 700; border: none; border-radius: 6px;
            font-size: 1rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
            box-shadow: 0 0 15px rgba(201,148,42,0.3); transition: all .2s;
        }
        .modal-btn:hover { box-shadow: 0 0 25px rgba(232,197,106,0.5); transform: translateY(-1px); }

        /* ═══════════════════════════════════════════════════
           HERO BANNER
        ═══════════════════════════════════════════════════ */
        #hero {
            position: relative;
            width: 100%;
            height: auto;
            min-height: auto;
            overflow: visible;
        }

        .hero-tear {
            position: absolute;
            bottom: -85px;
            left: 0;
            width: 100%;
            height: 160px; /* Mais alto para comportar a fusão do pergaminho */
            z-index: 15;
            line-height: 0;
            pointer-events: none;
        }
        .hero-tear svg {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease;
            pointer-events: none;
        }
        .hero-slide.active {
            position: relative;
            opacity: 1;
            z-index: 1;
            pointer-events: auto;
        }

        .hero-slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero-grad {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(14,11,7,.5) 0%,
                transparent 35%,
                rgba(14,11,7,.55) 100%
            );
            z-index: 2;
        }

        /* Arrows */
        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 54px; height: 54px;
            border-radius: 50%;
            border: 2px solid rgba(201,148,42,.45);
            background: rgba(14,11,7,.6);
            color: var(--gold-lt);
            font-size: 1.8rem;
            line-height: 1;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            backdrop-filter: blur(8px);
            transition: background .2s, border-color .2s, transform .2s;
            user-select: none;
        }
        .hero-arrow:hover {
            background: rgba(201,148,42,.35);
            border-color: var(--gold);
            transform: translateY(-50%) scale(1.1);
        }
        #heroPrev { left: 22px; }
        #heroNext { right: 22px; }

        /* Dots */
        .hero-dots {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .hero-dot {
            width: 9px; height: 9px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            background: transparent;
            cursor: pointer;
            transition: background .2s, transform .2s;
        }
        .hero-dot.active {
            background: var(--gold);
            transform: scale(1.25);
        }

        /* Responsividade do Banner */
        @media (max-width: 768px) {
            .hero-arrow {
                width: 38px;
                height: 38px;
                font-size: 1.3rem;
            }
            #heroPrev { left: 12px; }
            #heroNext { right: 12px; }
            .hero-dots {
                bottom: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero-arrow {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }
            #heroPrev { left: 8px; }
            #heroNext { right: 8px; }
            .hero-dot {
                width: 7px;
                height: 7px;
            }
        }

        /* ═══════════════════════════════════════════════════
           NAVBAR SEARCH
        ═══════════════════════════════════════════════════ */
        .nav-search-container {
            position: relative;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(201, 148, 42, 0.25);
            border-radius: 20px;
            padding: 5px 12px;
            transition: all 0.3s ease;
            width: 200px;
            margin-left: auto;
            margin-right: 8px;
        }
        .nav-search-container:focus-within {
            background: rgba(255, 255, 255, 0.09);
            border-color: var(--gold);
            box-shadow: 0 0 12px rgba(201, 148, 42, 0.3);
            width: 240px;
        }
        .nav-search-container .search-icon {
            color: var(--gold-dim);
            font-size: 0.85rem;
            margin-right: 8px;
            pointer-events: none;
            transition: color 0.3s;
        }
        .nav-search-container:focus-within .search-icon {
            color: var(--gold-lt);
        }
        .nav-search-container input {
            background: none;
            border: none;
            outline: none;
            color: var(--parchment);
            font-size: 0.8rem;
            width: 100%;
            font-family: inherit;
        }
        .nav-search-container input::placeholder {
            color: rgba(237, 224, 196, 0.45);
        }
        #clearSearchBtn {
            background: none;
            border: none;
            color: var(--parch-dim);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0 0 0 6px;
            line-height: 1;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }
        #clearSearchBtn:hover {
            color: var(--gold-lt);
        }

        /* Search highlights & Hide classes */
        .search-hidden {
            display: none !important;
        }

        /* Desativa e centraliza o marquee durante a busca */
        .search-active .card-clone {
            display: none !important;
        }
        .c-track.search-active {
            transform: none !important;
            justify-content: center !important;
            flex-wrap: wrap !important;
        }

        @media (max-width: 900px) {
            .nav-search-container {
                width: 140px;
                margin-left: auto;
                margin-right: 4px;
                padding: 4px 10px;
            }
            .nav-search-container:focus-within {
                width: 170px;
            }
        }
        @media (max-width: 480px) {
            .nav-search-container {
                width: 100px;
                padding: 4px 8px;
            }
            .nav-search-container:focus-within {
                width: 120px;
            }
            .nav-search-container input {
                font-size: 0.75rem;
            }
            .nav-search-container .search-icon {
                margin-right: 4px;
            }
        }

        /* ═══════════════════════════════════════════════════
           PARCHMENT SEPARATOR
        ═══════════════════════════════════════════════════ */
        .p-sep {
            display: block;
            width: 100%;
            height: 130px;
            line-height: 0;
            overflow: hidden;
            background: rgba(12, 24, 40, 0.45);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            margin-top: -1px;
            position: relative;
            z-index: 10;
        }
        .p-sep svg {
            display: block;
            width: 100%; height: 100%;
        }

        /* ═══════════════════════════════════════════════════
           SECTIONS
        ═══════════════════════════════════════════════════ */
        .sec {
            background: rgba(12, 24, 40, 0.45);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 64px 48px 56px;
        }

        .sec-head {
            text-align: center;
            margin-bottom: 44px;
        }
        .sec-eyebrow {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }
        .sec-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 900;
            color: var(--parchment);
            text-shadow: 0 2px 24px rgba(201,148,42,.25);
            line-height: 1.05;
        }
        .sec-sub {
            font-size: .95rem;
            color: var(--parch-dim);
            margin-top: 10px;
            letter-spacing: .3px;
        }

        /* ═══════════════════════════════════════════════════
           CAROUSEL
        ═══════════════════════════════════════════════════ */
        .carousel-wrap {
            position: relative;
        }

        /* Side gradient fade edges removed for cleaner images */

        .c-outer {
            overflow: hidden;
            padding: 20px 0 30px;
            cursor: grab;
            user-select: none;
        }
        .c-outer.is-dragging {
            cursor: grabbing;
        }
        .c-outer.is-dragging .card,
        .c-outer.is-dragging .card-round {
            pointer-events: none;
        }

        .c-track {
            display: flex;
            gap: 18px;
            will-change: transform;
            transition: none;
        }

        /* Cards */
        .card {
            flex: 0 0 250px;
            height: 355px;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            border: 2px solid rgba(201,148,42,.12);
            box-shadow: 0 8px 30px rgba(0,0,0,.5);
            transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
        }
        .card:hover {
            transform: scale(1.07) translateY(-8px);
            box-shadow: 0 24px 70px rgba(0,0,0,.75), 0 0 35px rgba(201,148,42,.28);
            border-color: rgba(201,148,42,.65);
            z-index: 5;
        }
        .card img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform .45s ease;
        }
        .card:hover img { transform: scale(1.05); }

        /* Name label always visible */
        .card-name {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(14,11,7,.85) 30%, transparent);
            padding: 24px 16px 12px;
            font-weight: 700;
            font-size: .95rem;
            color: var(--gold-lt);
            letter-spacing: .8px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0,0,0,.9);
        }
        .card-name small {
            display: block;
            font-size: .72rem;
            font-weight: 400;
            letter-spacing: .3px;
            text-transform: none;
            color: var(--parch-dim);
            margin-top: 3px;
            opacity: .85;
        }

        /* Gold shimmer on hover */
        .card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 14px;
            box-shadow: inset 0 0 0 2px transparent;
            transition: box-shadow .35s;
        }
        .card:hover::after {
            box-shadow: inset 0 0 0 2px rgba(201,148,42,.5);
        }

        /* ═══════════════════════════════════════════════════
           ROUND CARDS (Personagens Redondos)
        ═══════════════════════════════════════════════════ */
        .card-round {
            flex: 0 0 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 20px 12px 24px;
            border-radius: 20px;
            background: rgba(255,255,255,0.04);
            border: 1.5px solid rgba(201,148,42,.18);
            box-shadow: 0 6px 24px rgba(0,0,0,.45);
            cursor: pointer;
            transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s;
            position: relative;
            overflow: hidden;
        }
        .card-round:hover {
            transform: translateY(-10px) scale(1.06);
            box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 40px rgba(201,148,42,.3);
            border-color: rgba(201,148,42,.7);
            background: rgba(201,148,42,.07);
            z-index: 5;
        }
        /* Shimmer overlay */
        .card-round::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(201,148,42,0) 30%, rgba(201,148,42,0.12) 50%, rgba(201,148,42,0) 70%);
            background-size: 200% 200%;
            opacity: 0;
            transition: opacity .35s;
        }
        .card-round:hover::before {
            opacity: 1;
            animation: shimmerSweep .8s ease forwards;
        }
        @keyframes shimmerSweep {
            0%   { background-position: -100% 0; }
            100% { background-position: 200% 0; }
        }
        /* Avatar circle */
        .card-round-avatar {
            width: 148px;
            height: 148px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(201,148,42,.35);
            box-shadow: 0 0 0 5px rgba(201,148,42,.08), 0 8px 24px rgba(0,0,0,.55);
            transition: border-color .35s, box-shadow .35s;
            flex-shrink: 0;
        }
        .card-round:hover .card-round-avatar {
            border-color: var(--gold);
            box-shadow: 0 0 0 6px rgba(201,148,42,.22), 0 0 28px rgba(201,148,42,.5);
        }
        .card-round-avatar img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center top;
            transition: transform .45s ease;
        }
        .card-round:hover .card-round-avatar img {
            transform: scale(1.08);
        }
        /* Text below avatar */
        .card-round-info {
            text-align: center;
        }
        .card-round-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--gold-lt);
            letter-spacing: .8px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0,0,0,.8);
        }
        .card-round-role {
            display: block;
            font-size: .72rem;
            font-weight: 400;
            letter-spacing: .3px;
            color: var(--parch-dim);
            margin-top: 4px;
            opacity: .85;
        }
        /* Gold dot accent */
        .card-round-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--gold);
            margin: 6px auto 0;
            opacity: 0;
            transform: scale(0);
            transition: opacity .3s, transform .3s;
        }
        .card-round:hover .card-round-dot {
            opacity: 1;
            transform: scale(1);
        }

        @media (max-width: 500px) {
            .card-round { flex: 0 0 155px; }
            .card-round-avatar { width: 110px; height: 110px; }
        }

        /* Carousel nav buttons */
        .c-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            width: 48px; height: 48px;
            border-radius: 50%;
            border: 2px solid rgba(201,148,42,.45);
            background: rgba(14,11,7,.85);
            color: var(--gold-lt);
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            backdrop-filter: blur(10px);
            transition: background .2s, border-color .2s, transform .2s;
            user-select: none;
        }
        .c-btn:hover {
            background: rgba(201,148,42,.28);
            border-color: var(--gold);
            transform: translateY(-50%) scale(1.12);
        }
        .c-btn.prev { left: 4px; }
        .c-btn.next { right: 4px; }

        /* ═══════════════════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════════════════ */
        footer {
            background: rgba(12, 24, 40, 0.45);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 56px 48px 28px;
            margin-top: -1px;
            position: relative;
            z-index: 10;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .footer-brand img {
            height: 68px;
            width: auto;
            filter: drop-shadow(0 0 12px rgba(201,148,42,.3));
            display: block;
            margin-bottom: 14px;
        }
        .footer-brand p {
            font-size: .8rem;
            color: var(--parch-dim);
            line-height: 1.7;
            opacity: .75;
        }

        .footer-nav h4,
        .footer-social h4 {
            font-size: .68rem;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
            font-weight: 700;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-nav a {
            color: var(--parch-dim);
            text-decoration: none;
            font-size: .83rem;
            transition: color .2s;
        }
        .footer-nav a:hover { color: var(--gold-lt); }

        .footer-social { display: flex; flex-direction: column; }

        .social-row {
            display: flex;
            gap: 10px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .social-btn {
            width: 40px; height: 40px;
            border-radius: 50%;
            border: 1.5px solid rgba(201,148,42,.35);
            display: flex; align-items: center; justify-content: center;
            color: var(--parch-dim);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: .5px;
            transition: border-color .2s, color .2s, background .2s;
        }
        .social-btn:hover {
            border-color: var(--gold);
            color: var(--gold-lt);
            background: rgba(201,148,42,.1);
        }

        .newsletter { display: flex; flex-direction: column; gap: 8px; }
        .newsletter p {
            font-size: .78rem;
            color: var(--parch-dim);
            opacity: .75;
        }
        .nl-row { display: flex; gap: 8px; }
        .nl-input {
            flex: 1;
            background: rgba(255,255,255,.04);
            border: 1.5px solid rgba(201,148,42,.25);
            border-radius: 7px;
            padding: 9px 14px;
            color: var(--parchment);
            font-size: .8rem;
            outline: none;
            min-width: 0;
            transition: border-color .2s;
            font-family: inherit;
        }
        .nl-input:focus { border-color: rgba(201,148,42,.6); }
        .nl-input::placeholder { color: rgba(200,184,152,.4); }
        .nl-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            color: #0e0b07;
            border: none;
            border-radius: 7px;
            padding: 9px 16px;
            font-weight: 700;
            font-size: .75rem;
            cursor: pointer;
            letter-spacing: .5px;
            white-space: nowrap;
            font-family: inherit;
            transition: box-shadow .2s;
        }
        .nl-btn:hover { box-shadow: 0 0 18px rgba(201,148,42,.5); }

        .footer-bottom {
            border-top: 1px solid rgba(201,148,42,.1);
            margin-top: 40px;
            padding-top: 22px;
            text-align: center;
            font-size: .72rem;
            color: rgba(200,184,152,.4);
        }
        .footer-bottom a { color: inherit; text-decoration: none; transition: color .2s; }
        .footer-bottom a:hover { color: var(--gold-lt); }

        /* ═══════════════════════════════════════════════════
           VIDEO MODAL
        ═══════════════════════════════════════════════════ */
        .video-modal {
            display:flex; align-items:center; justify-content:center;
            position:fixed; z-index:9999; left:0; top:0; width:100%; height:100%;
            background:rgba(0,0,0,0.45);
        }
        .video-content {
            position:relative; background:rgba(12, 24, 40, 0.65); backdrop-filter:blur(24px); -webkit-backdrop-filter: blur(24px); border-radius:16px; padding:10px; border:1px solid rgba(255,255,255,0.05);
            width:95%; max-width:720px; box-shadow:0 12px 40px rgba(0,0,0,0.3); text-align:center;
        }
        .video-content video {
            width:100%; height:auto; border-radius:12px; outline:none;
        }
        .play-center {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 230px; height: 230px; background: #FF0004; border-radius: 50%;
            display: flex; justify-content: center; align-items: center; cursor: pointer;
            font-size: 32px; color: #fff; animation: pulse 1.2s infinite; z-index: 2;
        }
        @keyframes pulse {
            0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
        }
        .close-btn {
            position:absolute; right:14px; top:8px; font-size:42px; color:#FF0004;
            cursor:pointer; font-weight:700; z-index:2; animation: pulse 1.2s infinite;
        }
        .close-btn:hover { color:#ff5555; }
        .modal-btns {
            display:flex; gap:10px; justify-content:center; margin-top:12px;
        }
        .modal-btns .btn{
            flex:1; display:inline-flex; justify-content:center; align-items:center;
        }
        .play-btn {
            display:inline-flex; gap:8px; align-items:center; justify-content:center;
            background:#32CD32; color:#fff; border:none; border-radius:8px;
            padding:10px 16px; font-size:1rem; cursor:pointer;
        }

        /* Mobile Toggle */
        .mobile-toggle {
            display: none; background: none; border: none;
            color: var(--gold-lt); font-size: 2.2rem; cursor: pointer;
            line-height: 1; margin-left: 6px; padding: 0;
            transition: color .2s;
        }
        .mobile-toggle:hover { color: var(--gold); }

        /* ═══════════════════════════════════════════════════
           QUEM SOMOS (SPLIT SEC)
        ═══════════════════════════════════════════════════ */
        .split-sec {
            padding: 64px 48px 56px;
        }
        .split-content {
            display: flex;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }
        .split-left {
            flex: 1.1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
        .split-left .sec-eyebrow {
            margin: 0 0 16px 0;
            display: inline-flex;
        }
        .split-left .sec-title {
            text-align: left;
            font-size: 2.5rem;
            line-height: 1.15;
            margin-bottom: 24px;
        }
        .tags {
            display: flex;
            gap: 12px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        .tag {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(201,148,42,0.3);
            color: var(--gold-lt);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .split-desc {
            font-size: 1.1rem;
            color: var(--parch-dim);
            line-height: 1.7;
            margin-bottom: 18px;
        }
        .check-list {
            list-style: none;
            padding: 0;
            margin: 16px 0 36px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            width: 100%;
        }
        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: #e2e8f0;
            line-height: 1.4;
        }
        .check-icon {
            color: #10b981;
            font-weight: bold;
            font-style: normal;
            font-size: 1.15rem;
        }
        .cta-box {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(201,148,42,0.1);
            border: 1px solid rgba(201,148,42,0.3);
            padding: 20px 24px;
            border-radius: 12px;
            width: 100%;
            max-width: 440px;
            margin-bottom: 24px;
        }
        .cta-icon {
            font-size: 2.2rem;
        }
        .cta-text span {
            display: block;
            font-size: 0.85rem;
            color: var(--parch-dim);
            margin-bottom: 4px;
        }
        .cta-text strong {
            display: block;
            font-size: 1.2rem;
            color: var(--gold);
        }
        .btn-main {
            background: linear-gradient(135deg, var(--gold), #fcd34d);
            color: #000;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201,148,42,0.4);
        }
        .split-right {
            flex: 0.9;
            display: flex;
            justify-content: center;
        }
        .split-img-slider {
            position: relative;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 4/5;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 4px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }
        .split-img-slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: crossFade 15s infinite;
        }
        .split-img-slide.fade-1 { animation-delay: 0s; }
        .split-img-slide.fade-2 { animation-delay: 5s; }
        .split-img-slide.fade-3 { animation-delay: 10s; }

        @keyframes crossFade {
            0%, 26.66% { opacity: 1; transform: scale(1); }
            33.33%, 93.33% { opacity: 0; transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* ═══════════════════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════════════════ */
        @media (max-width: 900px) {
            #navbar { padding: 0 20px; gap: 12px; }

            .split-content { flex-direction: column; gap: 40px; }
            .split-left { align-items: center; text-align: center; }
            .split-left .sec-title { text-align: center; font-size: 2rem; }
            .check-list { grid-template-columns: 1fr; justify-content: center; max-width: 300px; margin: 16px auto 36px; }
            .cta-box { margin: 0 auto 24px; justify-content: center; text-align: left; }
            
            /* Menu Dropdown */
            .nav-links {
                position: absolute; top: 100%; left: 0; right: 0;
                background: rgba(12, 24, 40, 0.75);
                backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
                flex-direction: column; padding: 15px 0; gap: 5px;
                border-bottom: 1px solid rgba(201, 148, 42, 0.3);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .nav-links.open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
            .nav-links li { width: 100%; text-align: center; }
            .nav-links a { font-size: 1.15rem; display: block; padding: 14px; }
            
            .nav-cta { display: none !important; }
            .nav-actions { gap: 8px; }
            .mobile-toggle { display: block; }
            
            .sec { padding: 52px 24px 44px; }
            .footer-grid { grid-template-columns: 1fr; gap: 36px; }
            .footer-social { align-items: flex-start; }
            footer { padding: 48px 24px 24px; }
        }

        @media (max-width: 500px) {
            .card { flex: 0 0 190px; height: 270px; }
        }

        /* ═══════════════════════════════════════════════════
           PREMIUM SUBSCRIPTION MODAL
        ═══════════════════════════════════════════════════ */
        #premiumModal {
            position: fixed; inset: 0; z-index: 99999;
            display: flex; align-items: center; justify-content: center;
            padding: 16px;
            background: rgba(4, 8, 20, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.45s cubic-bezier(0.16,1,0.3,1);
        }
        #premiumModal.pm-visible {
            opacity: 1;
            pointer-events: auto;
        }

        /* Animated border glow */
        .pm-box {
            position: relative;
            width: 100%;
            max-width: 560px;
            max-height: 96vh;
            overflow-y: auto;
            border-radius: 24px;
            background: linear-gradient(160deg, #0d1b2e 0%, #060f1c 60%, #0a1525 100%);
            border: 1.5px solid transparent;
            background-clip: padding-box;
            box-shadow:
                0 0 0 1.5px rgba(201,148,42,0.55),
                0 0 60px rgba(201,148,42,0.18),
                0 30px 80px rgba(0,0,0,0.9),
                inset 0 0 40px rgba(201,148,42,0.04);
            transform: translateY(32px) scale(0.93);
            transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
            scrollbar-width: thin;
            scrollbar-color: rgba(201,148,42,0.3) transparent;
        }
        #premiumModal.pm-visible .pm-box {
            transform: translateY(0) scale(1);
        }

        /* Animated top border line */
        .pm-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            border-radius: 24px 24px 0 0;
            background: linear-gradient(90deg,
                transparent 0%,
                #c9942a 20%,
                #fcd34d 50%,
                #c9942a 80%,
                transparent 100%
            );
            background-size: 200% 100%;
            animation: pm-shimmer-line 3s linear infinite;
        }
        @keyframes pm-shimmer-line {
            0% { background-position: -100% 0; }
            100% { background-position: 200% 0; }
        }

        .pm-inner {
            padding: 40px 44px 44px;
        }

        /* Close button */
        .pm-close {
            position: absolute; top: 18px; right: 18px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(201,148,42,0.25);
            color: var(--parch-dim);
            width: 38px; height: 38px;
            border-radius: 50%;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
            z-index: 10;
            line-height: 1;
        }
        .pm-close:hover {
            background: rgba(201,148,42,0.18);
            border-color: var(--gold);
            color: var(--gold-lt);
            transform: scale(1.1);
        }

        /* Logos row */
        .pm-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 28px;
        }
        .pm-logo-site {
            height: 56px; width: auto;
            object-fit: contain;
            filter: drop-shadow(0 0 12px rgba(201,148,42,0.5));
        }
        .pm-logo-div {
            width: 1px; height: 48px;
            background: rgba(201,148,42,0.3);
        }
        .pm-logo-mp {
            height: 40px; width: auto;
            object-fit: contain;
            filter: brightness(1.1) drop-shadow(0 0 8px rgba(0,122,255,0.3));
        }

        /* Premium badge */
        .pm-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, rgba(201,148,42,0.18), rgba(201,148,42,0.06));
            border: 1px solid rgba(201,148,42,0.4);
            border-radius: 30px;
            padding: 5px 18px 5px 12px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin: 0 auto 16px;
        }
        .pm-badge-icon { font-size: 0.85rem; }

        /* Headline */
        .pm-headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            color: var(--parchment);
            text-align: center;
            line-height: 1.1;
            margin-bottom: 8px;
            text-shadow: 0 2px 30px rgba(201,148,42,0.3);
        }
        .pm-headline span {
            background: linear-gradient(135deg, #fcd34d, #c9942a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Price block */
        .pm-price-block {
            text-align: center;
            padding: 28px 0 24px;
            position: relative;
        }
        .pm-price-label {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--parch-dim);
            margin-bottom: 8px;
            opacity: 0.75;
        }
        .pm-price-main {
            font-family: 'Playfair Display', serif;
            font-size: clamp(4.5rem, 14vw, 7rem);
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, #fcd34d 0%, #c9942a 50%, #fcd34d 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pm-gold-shine 3s ease infinite;
            display: block;
            text-shadow: none;
        }
        @keyframes pm-gold-shine {
            0%   { background-position: 0% 50%; }
            50%  { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .pm-price-period {
            font-size: 1.1rem;
            color: var(--parch-dim);
            font-weight: 500;
            margin-top: 4px;
            opacity: 0.8;
        }

        /* Divider */
        .pm-divider {
            width: 60px; height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 0 auto 28px;
            border-radius: 2px;
        }

        /* Pulse CTA button */
        .pm-cta-btn {
            display: block;
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #c9942a, #fcd34d, #c9942a);
            background-size: 200% 100%;
            color: #0a0600;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            animation: pm-cta-pulse 1.6s ease-in-out infinite;
            box-shadow:
                0 0 30px rgba(201,148,42,0.5),
                0 0 60px rgba(201,148,42,0.2),
                inset 0 1px 0 rgba(255,255,255,0.3);
        }
        .pm-cta-btn::before {
            content: '';
            position: absolute;
            top: -50%; left: -60%;
            width: 50%; height: 200%;
            background: rgba(255,255,255,0.25);
            transform: skewX(-20deg);
            animation: pm-btn-sweep 2.5s linear infinite;
        }
        @keyframes pm-btn-sweep {
            0%   { left: -60%; }
            100% { left: 160%; }
        }
        @keyframes pm-cta-pulse {
            0%, 100% {
                box-shadow: 0 0 30px rgba(201,148,42,0.5), 0 0 60px rgba(201,148,42,0.2);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 55px rgba(252,211,77,0.75), 0 0 100px rgba(201,148,42,0.35);
                transform: scale(1.015);
            }
        }
        .pm-cta-btn:hover {
            animation: none;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 40px rgba(252,211,77,0.65);
        }
        .pm-cta-icon { font-size: 1.1rem; margin-right: 6px; }

        /* Form */
        .pm-form { display: none; }
        .pm-form.pm-form-visible { display: block; }

        .pm-form-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--gold-lt);
            text-align: center;
            margin-bottom: 6px;
        }
        .pm-form-subtitle {
            font-size: 0.85rem;
            color: var(--parch-dim);
            text-align: center;
            margin-bottom: 24px;
            opacity: 0.8;
        }
        .pm-field {
            position: relative;
            margin-bottom: 14px;
        }
        .pm-field-icon {
            position: absolute;
            left: 14px; top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            pointer-events: none;
            opacity: 0.55;
        }
        .pm-input {
            width: 100%;
            background: rgba(255,255,255,0.04);
            border: 1.5px solid rgba(201,148,42,0.2);
            color: var(--parchment);
            padding: 14px 16px 14px 42px;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }
        .pm-input::placeholder { color: rgba(200,184,152,0.35); }
        .pm-input:focus {
            border-color: var(--gold);
            background: rgba(201,148,42,0.05);
            box-shadow: 0 0 0 3px rgba(201,148,42,0.12);
        }

        .pm-pix-info {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(0, 180, 50, 0.08);
            border: 1px solid rgba(0, 200, 80, 0.25);
            border-radius: 12px;
            padding: 16px 18px;
            margin-bottom: 18px;
        }
        .pm-pix-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .pm-pix-text {
            font-size: 0.82rem;
            color: #86efac;
            line-height: 1.5;
        }
        .pm-pix-text strong {
            display: block;
            font-size: 0.9rem;
            color: #4ade80;
            margin-bottom: 2px;
        }

        .pm-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #009f3d, #00c94f);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            margin-bottom: 16px;
            transition: all 0.25s;
            box-shadow: 0 4px 20px rgba(0,180,60,0.35);
        }
        .pm-submit:hover {
            background: linear-gradient(135deg, #00b344, #00e85a);
            box-shadow: 0 6px 28px rgba(0,200,80,0.5);
            transform: translateY(-2px);
        }

        .pm-footer-links {
            text-align: center;
            font-size: 0.78rem;
            color: var(--parch-dim);
            opacity: 0.65;
        }
        .pm-footer-links a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.2s;
        }
        .pm-footer-links a:hover { color: var(--gold-lt); text-decoration: underline; }
        .pm-sep { margin: 0 8px; opacity: 0.4; }

        /* Benefits strip */
        .pm-benefits {
            display: flex;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .pm-benefit {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(201,148,42,0.2);
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 0.72rem;
            color: var(--parch-dim);
            font-weight: 500;
        }
        .pm-benefit-dot { color: var(--gold); font-size: 0.85rem; }

        /* MP Logo inside form */
        .pm-mp-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 18px;
            opacity: 0.85;
        }
        .pm-mp-strip img {
            height: 28px; width: auto;
        }
        .pm-mp-strip span {
            font-size: 0.75rem;
            color: var(--parch-dim);
        }

        @media (max-width: 600px) {
            .pm-inner { padding: 32px 22px 36px; }
            .pm-headline { font-size: 2rem; }
            .pm-price-main { font-size: 5.5rem; }
            .pm-cta-btn { font-size: 1.2rem; padding: 17px; }
        }

        /* ═══════════════════════════════════════════════════
           CTA SECTION
        ═══════════════════════════════════════════════════ */
        .cta-section {
            background: rgba(12, 24, 40, 0.45);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 80px 48px;
            text-align: center;
            position: relative;
            z-index: 10;
        }
        .cta-inner {
            max-width: 700px;
            margin: 0 auto;
        }
        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(201,148,42,0.2), rgba(201,148,42,0.06));
            border: 1px solid rgba(201,148,42,0.45);
            border-radius: 30px;
            padding: 6px 20px 6px 14px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            animation: cta-badge-pulse 2.5s ease infinite;
        }
        @keyframes cta-badge-pulse {
            0%,100% { box-shadow: 0 0 0 0 rgba(201,148,42,0); }
            50% { box-shadow: 0 0 0 6px rgba(201,148,42,0.12); }
        }
        .cta-headline {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 6vw, 4rem);
            font-weight: 900;
            color: var(--parchment);
            line-height: 1.1;
            margin-bottom: 12px;
            text-shadow: 0 4px 30px rgba(201,148,42,0.3);
        }
        .cta-headline span {
            background: linear-gradient(135deg, #fcd34d, #c9942a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .cta-sub {
            font-size: 1.05rem;
            color: var(--parch-dim);
            margin-bottom: 32px;
            line-height: 1.6;
            opacity: 0.85;
        }
        .cta-price-row {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-bottom: 8px;
        }
        .cta-price-currency {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
        }
        .cta-price-value {
            font-family: 'Playfair Display', serif;
            font-size: 5.5rem;
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, #fcd34d 0%, #c9942a 50%, #fcd34d 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pm-gold-shine 3s ease infinite;
        }
        .cta-price-period {
            font-size: 1rem;
            color: var(--parch-dim);
            margin-bottom: 28px;
            opacity: 0.8;
        }
        .cta-benefits {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .cta-benefit {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(201,148,42,0.22);
            border-radius: 20px;
            padding: 7px 16px;
            font-size: 0.78rem;
            color: var(--parch-dim);
            font-weight: 500;
        }
        .cta-benefit-dot { color: var(--gold); font-size: 1rem; }
        .cta-main-btn {
            display: inline-block;
            padding: 22px 60px;
            background: linear-gradient(135deg, #c9942a, #fcd34d, #c9942a);
            background-size: 200% 100%;
            color: #0a0600;
            font-family: 'Playfair Display', serif;
            font-size: 1.45rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: pm-cta-pulse 1.6s ease-in-out infinite;
            box-shadow:
                0 0 30px rgba(201,148,42,0.5),
                0 0 60px rgba(201,148,42,0.2),
                inset 0 1px 0 rgba(255,255,255,0.3);
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .cta-main-btn::before {
            content: '';
            position: absolute;
            top: -50%; left: -60%;
            width: 50%; height: 200%;
            background: rgba(255,255,255,0.25);
            transform: skewX(-20deg);
            animation: pm-btn-sweep 2.5s linear infinite;
        }
        .cta-main-btn:hover {
            animation: none;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 50px rgba(252,211,77,0.65);
        }
        .cta-guarantee {
            margin-top: 20px;
            font-size: 0.8rem;
            color: var(--parch-dim);
            opacity: 0.6;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* ═══════════════════════════════════════════════════
           CONTACT SECTION
        ═══════════════════════════════════════════════════ */
        .contact-section {
            background: rgba(12, 24, 40, 0.45);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            padding: 80px 48px;
            position: relative;
            z-index: 10;
        }
        .contact-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
        .contact-left .sec-eyebrow { margin-bottom: 12px; display: block; }
        .contact-left .sec-title {
            text-align: left;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 16px;
        }
        .contact-left .sec-sub {
            text-align: left;
            margin-bottom: 36px;
            font-size: 1rem;
            line-height: 1.7;
        }
        .contact-info-items {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-bottom: 40px;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .contact-info-icon {
            width: 48px; height: 48px;
            border-radius: 50%;
            background: rgba(201,148,42,0.1);
            border: 1.5px solid rgba(201,148,42,0.3);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            font-size: 1.3rem;
        }
        .contact-info-text span {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2px;
        }
        .contact-info-text strong {
            display: block;
            font-size: 0.95rem;
            color: var(--parchment);
            font-weight: 500;
        }
        /* Social icons row */
        .contact-social-title {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }
        .contact-social-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .contact-social-btn {
            width: 48px; height: 48px;
            border-radius: 50%;
            border: 1.5px solid rgba(201,148,42,0.3);
            background: rgba(255,255,255,0.04);
            display: flex; align-items: center; justify-content: center;
            color: var(--parch-dim);
            text-decoration: none;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }
        .contact-social-btn svg {
            width: 22px; height: 22px;
            fill: currentColor;
            transition: transform 0.25s;
        }
        .contact-social-btn:hover {
            border-color: var(--gold);
            color: var(--gold-lt);
            background: rgba(201,148,42,0.12);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(201,148,42,0.25);
        }
        .contact-social-btn:hover svg { transform: scale(1.15); }
        /* Contact Form */
        .contact-form-wrap {
            background: rgba(255,255,255,0.03);
            border: 1.5px solid rgba(201,148,42,0.2);
            border-radius: 20px;
            padding: 40px 36px;
            position: relative;
            overflow: hidden;
        }
        .contact-form-wrap::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            border-radius: 20px 20px 0 0;
            background: linear-gradient(90deg, transparent, #c9942a 30%, #fcd34d 50%, #c9942a 70%, transparent);
            background-size: 200% 100%;
            animation: pm-shimmer-line 3s linear infinite;
        }
        .contact-form-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--gold-lt);
            margin-bottom: 6px;
        }
        .contact-form-sub {
            font-size: 0.85rem;
            color: var(--parch-dim);
            margin-bottom: 28px;
            opacity: 0.8;
            line-height: 1.5;
        }
        .contact-field {
            position: relative;
            margin-bottom: 16px;
        }
        .contact-field-icon {
            position: absolute;
            left: 14px; top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            pointer-events: none;
            opacity: 0.5;
        }
        .contact-input, .contact-textarea {
            width: 100%;
            background: rgba(255,255,255,0.04);
            border: 1.5px solid rgba(201,148,42,0.2);
            color: var(--parchment);
            padding: 14px 16px 14px 44px;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
        }
        .contact-textarea {
            padding-left: 44px;
            resize: vertical;
            min-height: 120px;
            padding-top: 14px;
        }
        .contact-textarea + .contact-field-icon,
        .contact-field:has(.contact-textarea) .contact-field-icon {
            top: 20px;
            transform: none;
        }
        .contact-input::placeholder, .contact-textarea::placeholder { color: rgba(200,184,152,0.35); }
        .contact-input:focus, .contact-textarea:focus {
            border-color: var(--gold);
            background: rgba(201,148,42,0.05);
            box-shadow: 0 0 0 3px rgba(201,148,42,0.12);
        }
        .contact-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            color: #0a0600;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            margin-top: 8px;
            transition: all 0.25s;
            box-shadow: 0 4px 20px rgba(201,148,42,0.3);
            position: relative;
            overflow: hidden;
        }
        .contact-submit::after {
            content: '';
            position: absolute;
            top: -50%; left: -60%;
            width: 40%; height: 200%;
            background: rgba(255,255,255,0.2);
            transform: skewX(-20deg);
            animation: pm-btn-sweep 2.5s linear infinite;
        }
        .contact-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(201,148,42,0.5);
        }
        .contact-success {
            display: none;
            text-align: center;
            padding: 30px 0 10px;
        }
        .contact-success .success-icon {
            font-size: 3rem;
            margin-bottom: 12px;
        }
        .contact-success h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--gold-lt);
            margin-bottom: 8px;
        }
        .contact-success p {
            font-size: 0.9rem;
            color: var(--parch-dim);
            opacity: 0.8;
        }
        @media (max-width: 900px) {
            .contact-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .contact-left .sec-title { font-size: 2rem; }
            .contact-section { padding: 64px 24px; }
            .cta-section { padding: 64px 24px; }
            .cta-main-btn { font-size: 1.15rem; padding: 18px 36px; }
            .contact-form-wrap { padding: 30px 22px; }
        }

        /* ═══════════════════════════════════════════════════
           LARGE CIRCLES SECTION (Seção Extra)
        ═══════════════════════════════════════════════════ */
        .large-circles-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .large-circle-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .large-circle-item:hover {
            transform: scale(1.08);
        }
        .large-circle-avatar {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(201, 148, 42, 0.4);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(201, 148, 42, 0.25);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .large-circle-item:hover .large-circle-avatar {
            border-color: var(--gold-lt);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 35px rgba(232, 197, 106, 0.5);
        }
        .large-circle-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            transition: transform 0.4s ease;
        }
        .large-circle-item:hover .large-circle-avatar img {
            transform: scale(1.06);
        }
        .large-circle-name {
            margin-top: 16px;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--gold-lt);
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8);
        }
        .large-circle-role {
            font-size: 0.85rem;
            color: var(--parch-dim);
            opacity: 0.9;
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .large-circle-avatar { width: 160px; height: 160px; }
            .large-circle-name { font-size: 1.1rem; }
        }

        /* ═══════════════════════════════════════════════════
           PLAN SELECTOR (TABS)
        ═══════════════════════════════════════════════════ */
        .plan-selector-wrap {
            text-align: center;
            width: 100%;
            margin: 20px 0 30px;
        }
        .plan-selector {
            display: inline-flex;
            background: rgba(0, 0, 0, 0.4);
            border: 1.5px solid rgba(201, 148, 42, 0.3);
            border-radius: 50px;
            padding: 5px;
            position: relative;
            z-index: 10;
        }
        .plan-tab-btn {
            background: transparent;
            border: none;
            color: var(--parch-dim);
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .plan-tab-btn:hover {
            color: var(--gold-lt);
        }
        .plan-tab-btn.active {
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            color: #0e0b07;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(201, 148, 42, 0.4);
        }
        /* Dynamic novidade cards styles */
        .novidade-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #2e1065, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #fff;
            user-select: none;
        }
        .novidade-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(124, 58, 237, 0.95);
            color: #fff;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0,0,0,0.35);
            border: 1px solid rgba(255,255,255,0.15);
        }
        .novidade-colecao {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(201,148,42,0.92);
            color: #0a0600;
            padding: 3px 9px;
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.35);
        }
        .novidade-pers {
            display: flex;
            gap: 4px;
            align-items: center;
            margin-top: 5px;
            flex-wrap: wrap;
        }
        .novidade-pers-avatar {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            object-fit: cover;
            border: 1.5px solid rgba(201,148,42,0.5);
        }
        .novidade-pers-dot {
            font-size: 1rem;
        }
        .novidade-pers-more {
            font-size: 0.65rem;
            color: var(--parch-dim);
            font-weight: 600;
        }
        /* Touch/swipe CSS scroll fallback for mobile */
        @media (pointer: coarse) {
            .c-outer {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
            }
            .c-outer::-webkit-scrollbar { display: none; }
            .c-track {
                touch-action: pan-x;
                /* On mobile, we use native flex scroll */
                display: flex;
            }
            .card, .card-round {
                scroll-snap-align: start;
            }
        }
        
        /* Lightbox CSS */
        .char-lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(5, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 99999;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .char-lightbox.visible {
            display: flex;
            opacity: 1;
        }
        .char-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        @keyframes zoomIn {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        .char-lightbox-img {
            max-width: 100%;
            max-height: 75vh;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.8);
            border: 2px solid rgba(201, 148, 42, 0.5);
            object-fit: contain;
        }
        .char-lightbox-info {
            text-align: center;
            margin-top: 15px;
            color: var(--gold-lt, #e8c56a);
            font-family: 'Playfair Display', serif;
        }
        .char-lightbox-title {
            font-size: 1.8rem;
            margin: 0;
        }
        .char-lightbox-sub {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--parch-dim, #c8b898);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 5px;
        }
        .char-lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        .char-lightbox-close:hover {
            color: var(--gold, #c9942a);
            transform: scale(1.1) rotate(90deg);
        }

#hered-preloader {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: var(--dark, #0C1828); /* Fundo igual ao tema escuro */
            z-index: 999999; /* Bem acima de tudo */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s ease-out;
            pointer-events: none; /* Para não bloquear cliques se algo der errado */
        }
        .hered-spinner-wrapper {
            position: relative;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hered-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 4px solid transparent;
        }
        .hered-ring.outer {
            border-top-color: var(--gold, #c9942a);
            border-bottom-color: var(--gold, #c9942a);
            animation: spinOuter 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }
        .hered-ring.inner {
            width: 70%;
            height: 70%;
            border-left-color: var(--gold-lt, #e8c56a);
            border-right-color: var(--gold-lt, #e8c56a);
            animation: spinInner 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
        }
        .hered-logo-center {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--gold-lt, #e8c56a);
            text-shadow: 0 0 15px rgba(201, 148, 42, 0.8);
            animation: pulseLogo 2s infinite alternate;
        }
        @keyframes spinOuter {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }
        @keyframes spinInner {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(0.9); }
            100% { transform: rotate(360deg) scale(1); }
        }
        @keyframes pulseLogo {
            from { opacity: 0.6; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1.05); }
        }

        /* COOKIE TOAST */
        .cookie-toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            background: linear-gradient(145deg, rgba(12, 24, 40, 0.95), rgba(6, 12, 20, 0.98));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(201, 148, 42, 0.4);
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
            z-index: 100000;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            width: 90%;
            max-width: 800px;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .cookie-toast.show {
            transform: translateX(-50%) translateY(0);
        }
        .cookie-content {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .cookie-content i {
            font-size: 2rem;
            color: var(--gold-lt);
        }
        .cookie-content h4 {
            margin: 0 0 4px 0;
            color: #fff;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
        }
        .cookie-content p {
            margin: 0;
            color: var(--parch-dim);
            font-size: 0.85rem;
            line-height: 1.4;
        }
        .cookie-content a {
            color: var(--gold-lt);
            text-decoration: underline;
        }
        .cookie-btn {
            background: linear-gradient(135deg, var(--gold-lt), var(--gold));
            color: #000;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            white-space: nowrap;
        }
        .cookie-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 148, 42, 0.4);
        }
        @media (max-width: 600px) {
            .cookie-toast {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .cookie-content {
                flex-direction: column;
            }
        }
