/* ══════════════════════════════════════════
   MOMMENTOS — CSS GLOBAL
   ══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── VARIÁVEIS ── */
:root {
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════
   LIGHT THEME (padrão)
   ══════════════════════════════════════════ */
:root {
    --bg: #f7f5fb;
    --bg-sec: #efeaf6;
    --surface: #ffffff;
    --surface-hover: #f2eff7;
    --accent: #9a7b1f;
    --accent-hover: #7d6218;
    --accent-subtle: rgba(154, 123, 31, 0.08);
    --accent-border: rgba(154, 123, 31, 0.22);
    --purple: #7c3aed;
    --purple-hover: #6d28d9;
    --purple-subtle: rgba(124, 58, 237, 0.07);
    --purple-border: rgba(124, 58, 237, 0.18);
    --grad: linear-gradient(135deg, #7c3aed 0%, #9a7b1f 100%);
    --grad-h: linear-gradient(135deg, #6d28d9 0%, #7d6218 100%);
    --ambient: linear-gradient(160deg, rgba(154, 123, 31, 0.03) 0%, rgba(124, 58, 237, 0.03) 50%, transparent 80%);
    --glow-g: rgba(154, 123, 31, 0.05);
    --glow-p: rgba(124, 58, 237, 0.05);
    --t1: #1c1825;
    --t2: #4f4859;
    --t3: #8b8395;
    --border: rgba(0, 0, 0, 0.08);
    --border-h: rgba(0, 0, 0, 0.14);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --tag-bg: rgba(154, 123, 31, 0.1);
    --tag-t: #9a7b1f;
    --tag2-bg: rgba(124, 58, 237, 0.1);
    --tag2-t: #6d28d9;
    --shadow: 0 4px 24px rgba(124, 58, 237, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
    --input-bg: #ffffff;
    --error: #dc2626;
    color-scheme: light;
}

/* ══════════════════════════════════════════
   DARK THEME
   ══════════════════════════════════════════ */
[data-theme="dark"] {
    --bg: #08080c;
    --bg-sec: #0c0c12;
    --surface: #121218;
    --surface-hover: #1a1a22;
    --accent: #c9a24d;
    --accent-hover: #dbb660;
    --accent-subtle: rgba(201, 162, 77, 0.1);
    --accent-border: rgba(201, 162, 77, 0.25);
    --purple: #7c3aed;
    --purple-hover: #6d28d9;
    --purple-subtle: rgba(124, 58, 237, 0.1);
    --purple-border: rgba(124, 58, 237, 0.25);
    --grad: linear-gradient(135deg, #a78bfa 0%, #c9a24d 100%);
    --grad-h: linear-gradient(135deg, #c4b5fd 0%, #dbb660 100%);
    --ambient: linear-gradient(160deg, rgba(201, 162, 77, 0.06) 0%, rgba(139, 92, 246, 0.06) 50%, transparent 80%);
    --glow-g: rgba(201, 162, 77, 0.06);
    --glow-p: rgba(139, 92, 246, 0.06);
    --t1: #f0ece4;
    --t2: #b0a99e;
    --t3: #605c56;
    --border: rgba(255, 255, 255, 0.07);
    --border-h: rgba(255, 255, 255, 0.14);
    --nav-bg: rgba(8, 8, 12, 0.88);
    --tag-bg: rgba(201, 162, 77, 0.13);
    --tag-t: #dbb660;
    --tag2-bg: rgba(139, 92, 246, 0.13);
    --tag2-t: #a78bfa;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --input-bg: #16161e;
    --error: #ef4444;
    color-scheme: dark;
}

/* ══════════════════════════════════════════
   BASE
   ══════════════════════════════════════════ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--t2);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

::selection {
    background: var(--purple);
    color: #fff;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

    a:hover {
        color: var(--accent-hover);
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--t1);
    letter-spacing: -0.04em;
    flex-shrink: 0;
    transition: none;
}

    .nav-logo:hover {
        color: var(--t1);
    }

    .nav-logo em {
        font-style: normal;
        font-weight: 300;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-links a {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--t3);
        transition: color var(--transition);
    }

        .nav-links a:hover {
            color: var(--t1);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ── User Dropdown ── */
.nav-user {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px 5px 5px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

    .nav-user-btn:hover {
        border-color: var(--border-h);
        background: var(--surface);
    }

.nav-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.nav-user-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--t1);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-chevron {
    stroke: var(--t3);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.nav-user.open .nav-user-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-user.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--t2);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

    .nav-dropdown-item:hover {
        background: var(--surface-hover);
        color: var(--t1);
    }

    .nav-dropdown-item svg {
        width: 16px;
        height: 16px;
        stroke: var(--t3);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

    .nav-dropdown-item:hover svg {
        stroke: var(--t1);
    }

.nav-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.nav-dropdown-logout {
    color: #ef4444;
}

    .nav-dropdown-logout:hover {
        background: rgba(239, 68, 68, 0.08);
        color: #ef4444;
    }

    .nav-dropdown-logout svg {
        stroke: #ef4444;
    }

/* ── Notifications Dropdown ── */
.nav-notif {
    position: relative;
}

.nav-notif-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--t2);
}

.nav-notif-btn:hover {
    border-color: var(--border-h);
    background: var(--surface);
    color: var(--t1);
}

.nav-notif-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg);
}

.nav-notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 101;
    overflow: hidden;
}

.nav-notif.open .nav-notif-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t1);
    border-bottom: 1px solid var(--border);
}

.nav-notif-item {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    transition: background var(--transition);
    border-bottom: 1px solid var(--border);
}

.nav-notif-item:last-child {
    border-bottom: none;
}

.nav-notif-item:hover {
    background: var(--surface-hover);
}

.nav-notif-unread {
    background: rgba(124, 58, 237, 0.04);
}

.nav-notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-notif-item p {
    font-size: 13px;
    color: var(--t1);
    margin-bottom: 2px;
    line-height: 1.4;
}

.nav-notif-item span {
    font-size: 11px;
    color: var(--t3);
}

.nav-notif-empty {
    padding: 24px 16px;
    text-align: center;
}

.nav-notif-empty p {
    font-size: 13px;
    color: var(--t3);
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-sm {
    font-size: 13px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
}

.btn-md {
    font-size: 13.5px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
}

.btn-lg {
    font-size: 14px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
}

.btn-ghost {
    background: transparent;
    color: var(--t2);
    border: 1px solid var(--border);
}

    .btn-ghost:hover {
        border-color: var(--border-h);
        color: var(--t1);
        background: var(--surface);
    }

.btn-primary {
    background: var(--grad);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--grad-h);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 24px rgba(167, 139, 250, 0.25), 0 4px 24px rgba(201, 162, 77, 0.2);
    }

.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 1.5px solid var(--purple-border);
}

    .btn-outline:hover {
        background: var(--purple-subtle);
        border-color: var(--purple);
        color: var(--purple-hover);
    }

/* ══════════════════════════════════════════
   HAMBURGER & MOBILE MENU
   ══════════════════════════════════════════ */
.hamburger {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

    .hamburger span {
        width: 16px;
        height: 2px;
        background: var(--t1);
        border-radius: 2px;
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    overflow-y: auto;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 15px;
        font-weight: 500;
        color: var(--t2);
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

.mobile-menu-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

    .mobile-menu-actions .btn {
        flex: 1;
        text-align: center;
    }

.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.mobile-menu-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

    .mobile-menu-user .nav-user-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

.mobile-menu-logout {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #ef4444;
    cursor: pointer;
    transition: all var(--transition);
}

    .mobile-menu-logout:hover {
        background: rgba(239, 68, 68, 0.08);
    }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    background: var(--ambient);
    isolation: isolate;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--glow-p) 0%, transparent 65%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -10%;
        left: -5%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--glow-g) 0%, transparent 65%);
        pointer-events: none;
    }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 64px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 68px);
    position: relative;
    z-index: 1;
}

.hero-content {
    opacity: 0;
    animation: fadeUp .7s ease .15s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-subtle);
    border: 1px solid var(--accent-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tag-t);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    color: var(--t1);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

    .hero-title em {
        font-style: normal;
        font-weight: 300;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 15.5px;
    color: var(--t3);
    max-width: 460px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-search {
    display: flex;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 5px;
    max-width: 500px;
    margin-bottom: 40px;
    transition: all var(--transition);
}

    .hero-search:focus-within {
        border-color: var(--purple-border);
        box-shadow: 0 0 0 3px var(--purple-subtle);
    }

    .hero-search input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--t1);
        padding: 12px 16px;
        min-width: 0;
    }

        .hero-search input::placeholder {
            color: var(--t3);
        }

    .hero-search .btn {
        flex-shrink: 0;
        padding: 12px 24px;
        border-radius: calc(var(--radius-lg) - 4px);
    }

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat-val {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--t1);
    line-height: 1.1;
}

.hero-stat-lbl {
    font-size: 12px;
    color: var(--t3);
    margin-top: 2px;
}

.hero-featured {
    opacity: 0;
    animation: fadeUp .7s ease .35s forwards;
}

/* ── Spotlight ── */
.featured-spotlight {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 80px var(--glow-p), 0 0 60px var(--glow-g);
    transition: all var(--transition);
    position: relative;
}

    .featured-spotlight::before {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: var(--radius-xl);
        background: var(--grad);
        z-index: 0;
        opacity: .3;
        mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        padding: 1px;
        pointer-events: none;
    }

    .featured-spotlight:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow), 0 0 100px var(--glow-p), 0 0 80px var(--glow-g);
    }

.spotlight-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1420 0%, #201818 50%, #1a1814 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .spotlight-img::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(to top, var(--surface), transparent);
    }

.spotlight-badge-wrap {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.spotlight-badge {
    padding: 5px 12px;
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spotlight-urgency {
    padding: 5px 12px;
    background: var(--purple);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    animation: pulse-soft 2s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

.spotlight-icon {
    font-size: 56px;
    opacity: .15;
    position: relative;
    z-index: 1;
}

.spotlight-body {
    padding: 24px 28px 28px;
}

.spotlight-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.spotlight-meta-item {
    font-size: 12.5px;
    color: var(--t3);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .spotlight-meta-item svg {
        width: 14px;
        height: 14px;
        stroke: var(--purple);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

.spotlight-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--t1);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.spotlight-desc {
    font-size: 13.5px;
    color: var(--t3);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spotlight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.spotlight-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--t1);
}

    .spotlight-price span {
        font-size: 13px;
        font-weight: 400;
        color: var(--t3);
        font-family: var(--font-body);
    }

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section-header {
    margin-bottom: 40px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.section-header-row > div {
    min-width: 0;
    flex: 1 1 0;
}

.section-header-row > .btn {
    flex-shrink: 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--purple);
    margin-bottom: 12px;
}

    .section-label::before {
        content: '';
        width: 18px;
        height: 2px;
        background: var(--grad);
        border-radius: 2px;
    }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--t1);
    line-height: 1.15;
    letter-spacing: -0.03em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

    .section-title em {
        font-weight: 300;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* ══════════════════════════════════════════
   EVENTS
   ══════════════════════════════════════════ */
.featured {
    padding: 80px 0;
    background: var(--bg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.event-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

    .event-card:hover {
        border-color: var(--purple-border);
        transform: translateY(-4px) scale(1.01);
        box-shadow: var(--shadow), 0 0 40px var(--glow-p), 0 12px 40px rgba(0,0,0,0.25);
        color: inherit;
    }

.ec-img {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ec-img::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, var(--surface), transparent);
    }

.ec-img-1 {
    background: linear-gradient(135deg, #18161a, #2a2218);
}

.ec-img-2 {
    background: linear-gradient(135deg, #161a1e, #162a28);
}

.ec-img-3 {
    background: linear-gradient(135deg, #1a1618, #2a1624);
}

.ec-img-4 {
    background: linear-gradient(135deg, #16161e, #1a1a2e);
}

.ec-img-5 {
    background: linear-gradient(135deg, #1a1e16, #282a18);
}

.ec-img-6 {
    background: linear-gradient(135deg, #161a18, #162a1e);
}

.ec-img svg {
    width: 44px;
    height: 44px;
    stroke: var(--t3);
    fill: none;
    stroke-width: 1;
    opacity: .25;
    position: relative;
    z-index: 1;
}

.ec-badge-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--grad);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 8px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.ec-body {
    padding: 18px 20px 22px;
}

.ec-date {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

    .ec-date svg {
        width: 13px;
        height: 13px;
        stroke: var(--purple);
        fill: none;
        stroke-width: 2;
    }

.ec-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--t1);
    line-height: 1.3;
    margin-bottom: 6px;
}

.ec-loc {
    font-size: 13px;
    color: var(--t3);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}

    .ec-loc svg {
        width: 13px;
        height: 13px;
        stroke: var(--t3);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

.ec-desc {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ec-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.ec-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--t1);
}

    .ec-price span {
        font-size: 12px;
        font-weight: 400;
        color: var(--t3);
        font-family: var(--font-body);
    }

.ec-tag {
    padding: 3px 10px;
    background: var(--tag2-bg);
    color: var(--tag2-t);
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
}

/* ══════════════════════════════════════════
   SALÕES
   ══════════════════════════════════════════ */
.saloes {
    padding: 80px 0;
    background: var(--bg-sec);
}

.search-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 10px;
    margin-bottom: 36px;
    transition: all var(--transition);
}

    .search-bar:focus-within {
        border-color: var(--purple-border);
        box-shadow: 0 0 0 3px var(--purple-subtle);
    }

.search-input-wrap {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

    .search-input-wrap svg {
        width: 18px;
        height: 18px;
        stroke: var(--t3);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

    .search-input-wrap input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--t1);
        padding: 10px 0;
    }

        .search-input-wrap input::placeholder {
            color: var(--t3);
        }

.filter-select {
    padding: 10px 14px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--t2);
    cursor: pointer;
    outline: none;
    min-width: 130px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23605c56' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.filter-select:focus {
    border-color: var(--purple-border);
}

.filter-select option {
    background: var(--surface);
    color: var(--t1);
}

.search-bar .btn {
    flex-shrink: 0;
}

.saloes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.salao-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

    .salao-card:hover {
        border-color: var(--accent-border);
        transform: translateY(-3px);
        box-shadow: var(--shadow), 0 0 40px var(--glow-g);
        color: inherit;
    }

.sc-img {
    height: 170px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .sc-img::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, var(--surface), transparent);
    }

.sc-img-1 {
    background: linear-gradient(135deg, #1a181a, #2d2818);
}

.sc-img-2 {
    background: linear-gradient(135deg, #181a1e, #1c2a28);
}

.sc-img-3 {
    background: linear-gradient(135deg, #1a181a, #2a1c26);
}

.sc-img-4 {
    background: linear-gradient(135deg, #18181e, #221e2e);
}

.sc-img-5 {
    background: linear-gradient(135deg, #181e1a, #1c2a22);
}

.sc-img-6 {
    background: linear-gradient(135deg, #1e1a18, #2e221e);
}

.sc-img svg {
    width: 40px;
    height: 40px;
    stroke: var(--t3);
    fill: none;
    stroke-width: 1;
    opacity: .2;
    position: relative;
    z-index: 1;
}

.sc-type {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 10px;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sc-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 8px;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
    color: #ffc84e;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 6px;
}

.sc-body {
    padding: 18px 20px 22px;
}

.sc-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--t1);
    line-height: 1.3;
    margin-bottom: 4px;
}

.sc-loc {
    font-size: 13px;
    color: var(--t3);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}

    .sc-loc svg {
        width: 13px;
        height: 13px;
        stroke: var(--t3);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

.sc-details {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.sc-detail {
    font-size: 12px;
    color: var(--t2);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: var(--accent-subtle);
    border-radius: 6px;
}

    .sc-detail svg {
        width: 12px;
        height: 12px;
        stroke: var(--accent);
        fill: none;
        stroke-width: 2;
    }

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.sc-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--t1);
}

    .sc-price span {
        font-size: 12px;
        font-weight: 400;
        color: var(--t3);
        font-family: var(--font-body);
    }

.sc-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
}

    .sc-link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

/* ══════════════════════════════════════════
   FORNECEDORES
   ══════════════════════════════════════════ */
.fornecedores {
    padding: 80px 0;
    background: var(--bg);
}

.cat-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--t2);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

    .cat-pill:hover {
        border-color: var(--purple-border);
        color: var(--t1);
        background: var(--surface-hover);
    }

    .cat-pill.active {
        background: var(--purple-subtle);
        border-color: var(--purple-border);
        color: var(--purple);
        font-weight: 600;
    }

    .cat-pill svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.supplier-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

    .supplier-card:hover {
        border-color: var(--purple-border);
        transform: translateY(-3px);
        box-shadow: var(--shadow), 0 0 40px var(--glow-p);
        color: inherit;
    }

.sup-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sup-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2.5px;
    background: var(--grad);
}

    .sup-avatar-wrap::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: var(--grad);
        opacity: .3;
        filter: blur(8px);
        z-index: 0;
    }

.sup-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.av-1 {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.av-2 {
    background: linear-gradient(135deg, #dbb660, #c9a24d);
}

.av-3 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.av-4 {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.av-5 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.av-6 {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.sup-top-info {
    min-width: 0;
    flex: 1;
}

.sup-name {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--t1);
    line-height: 1.3;
}

.sup-role {
    font-size: 11.5px;
    color: var(--purple);
    font-weight: 500;
}

.sup-verified {
    flex-shrink: 0;
    padding: 3px 8px;
    background: rgba(74, 222, 128, .1);
    border: 1px solid rgba(74, 222, 128, .2);
    color: #4ade80;
    font-size: 10px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .sup-verified svg {
        width: 11px;
        height: 11px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
    }

.sup-desc {
    font-size: 12.5px;
    color: var(--t3);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sup-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.sup-tag {
    padding: 2px 7px;
    background: var(--accent-subtle);
    color: var(--accent);
    font-size: 10px;
    font-weight: 600;
    border-radius: 5px;
}

.sup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.sup-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--t1);
}

    .sup-price span {
        font-size: 11px;
        font-weight: 400;
        color: var(--t3);
        font-family: var(--font-body);
    }

.sup-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11.5px;
    color: var(--t2);
}

    .sup-rating svg {
        width: 12px;
        height: 12px;
        fill: #ffc84e;
        stroke: none;
    }

    .sup-rating strong {
        font-weight: 600;
        color: var(--t1);
    }

/* ══════════════════════════════════════════
   CATEGORY CAROUSEL
   ══════════════════════════════════════════ */
.cat-carousel-section {
    padding: 64px 0;
    background: var(--bg);
}

.cat-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.cat-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 4px 24px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.cat-carousel-track::-webkit-scrollbar {
    display: none;
}

.cat-carousel-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    cursor: pointer;
}

.cat-carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow), 0 0 40px var(--glow-p);
}

.cat-carousel-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.cat-carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-carousel-item:hover .cat-carousel-img img {
    transform: scale(1.08);
}

.cat-carousel-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16161e, #1a1a2e);
}

.cat-carousel-fallback svg {
    stroke: var(--t3);
    opacity: 0.3;
}

.cat-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 12, 0.95) 0%, rgba(8, 8, 12, 0.2) 50%, transparent 100%);
}

.cat-carousel-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    z-index: 2;
}

.cat-carousel-name {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--t1);
    line-height: 1.2;
}

.cat-carousel-desc {
    display: block;
    font-size: 12px;
    color: var(--t3);
    margin-top: 3px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-carousel-arrow {
    position: absolute;
    top: 78px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-h);
    background: var(--surface);
    color: var(--t1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.cat-carousel-arrow:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}

.cat-carousel-arrow:active {
    transform: scale(0.95);
}

.cat-carousel-prev {
    left: 8px;
}

.cat-carousel-next {
    right: 8px;
}

/* ══════════════════════════════════════════
   CTA
   ══════════════════════════════════════════ */
.cta-section {
    padding: 80px 0;
    background: var(--bg-sec);
}

.cta-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -30%;
        width: 160%;
        height: 160%;
        background: radial-gradient(circle, var(--glow-g) 0%, transparent 50%);
        pointer-events: none;
    }

    .cta-box::after {
        content: '';
        position: absolute;
        top: -40%;
        right: -30%;
        width: 160%;
        height: 160%;
        background: radial-gradient(circle, var(--glow-p) 0%, transparent 50%);
        pointer-events: none;
    }

    .cta-box .section-label {
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .cta-box .section-title {
        text-align: center;
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
    }

.cta-desc {
    font-size: 14px;
    color: var(--t3);
    margin-bottom: 32px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    padding: 56px 0 28px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--t3);
    margin-top: 10px;
    max-width: 250px;
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--t1);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
}

    .footer-col ul li a {
        font-size: 13px;
        color: var(--t3);
    }

        .footer-col ul li a:hover {
            color: var(--t1);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

    .footer-bottom p {
        font-size: 12px;
        color: var(--t3);
    }

.footer-socials {
    display: flex;
    gap: 16px;
}

    .footer-socials a {
        font-size: 12px;
        font-weight: 500;
        color: var(--t3);
    }

        .footer-socials a:hover {
            color: var(--purple);
        }

/* ══════════════════════════════════════════
   HERO GLOW ANIMATION
   ══════════════════════════════════════════ */
.hero-glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

    .hero-glow .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0;
        animation: orbFadeIn 1.5s ease forwards;
    }

    .hero-glow .orb-1 {
        width: 500px;
        height: 500px;
        top: -10%;
        right: -5%;
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        opacity: 0;
        animation: orbFadeIn 2s ease 0.3s forwards, orbFloat1 8s ease-in-out 2s infinite;
    }

    .hero-glow .orb-2 {
        width: 450px;
        height: 450px;
        top: 30%;
        left: -10%;
        background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
        opacity: 0;
        animation: orbFadeIn 2s ease 0.6s forwards, orbFloat2 10s ease-in-out 2s infinite;
    }

    .hero-glow .orb-3 {
        width: 350px;
        height: 350px;
        bottom: -5%;
        right: 20%;
        background: radial-gradient(circle, var(--purple-hover) 0%, transparent 70%);
        opacity: 0;
        animation: orbFadeIn 2s ease 0.9s forwards, orbFloat3 12s ease-in-out 2s infinite;
    }

    .hero-glow .orb-4 {
        width: 200px;
        height: 200px;
        top: 15%;
        left: 40%;
        background: radial-gradient(circle, var(--accent-hover) 0%, transparent 70%);
        opacity: 0;
        animation: orbFadeIn 2s ease 1.2s forwards, orbFloat4 7s ease-in-out 2s infinite;
    }

    .hero-glow .orb-pulse {
        width: 600px;
        height: 600px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, var(--purple) 0%, transparent 65%);
        opacity: 0;
        animation: orbFadeIn 2s ease 0.5s forwards, orbPulse 6s ease-in-out 2s infinite;
    }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbFadeIn {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

    to {
        opacity: 0.12;
        transform: scale(1);
    }
}

@keyframes orbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.1);
    }

    66% {
        transform: translate(20px, -20px) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -40px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.92);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes orbFloat3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, -30px) scale(1.12);
    }

    66% {
        transform: translate(40px, 15px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes orbFloat4 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -30px) scale(1.15);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes orbPulse {
    0% {
        opacity: 0.06;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.14;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 0.06;
        transform: translate(-50%, -50%) scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 48px 24px 56px;
        gap: 40px;
    }

    .hero-featured {
        max-width: 480px;
    }

    .events-grid,
    .saloes-grid,
    .suppliers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-ghost,
    .nav-actions .btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        padding: 36px 24px 40px;
    }

    .hero-title {
        font-size: clamp(30px, 7vw, 42px);
    }

    .hero-search {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

        .hero-search input {
            padding: 12px 14px;
            border-bottom: 1px solid var(--border);
        }

        .hero-search .btn {
            border-radius: calc(var(--radius-md) - 4px);
            width: 100%;
        }

    .search-bar {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 8px;
    }

    .search-input-wrap {
        padding: 0 10px;
    }

    .filter-select {
        width: 100%;
    }

    .events-grid,
    .saloes-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .suppliers-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-header-row > div {
        flex: none;
        width: 100%;
    }

    .section-title {
        font-size: clamp(22px, 5.5vw, 30px);
    }

    .cta-box {
        padding: 36px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    /* Glow reduzido em mobile */
    .hero-glow .orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-glow .orb-2 {
        width: 250px;
        height: 250px;
    }

    .hero-glow .orb-3 {
        width: 200px;
        height: 200px;
    }

    .hero-glow .orb-4 {
        width: 120px;
        height: 120px;
    }

    .hero-glow .orb-pulse {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        gap: 14px;
    }

    .hero-stat-val {
        font-size: 22px;
    }

    .section-title {
        font-size: clamp(20px, 6vw, 26px);
    }

    .section-label {
        font-size: 10px;
    }
}
/* ══════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    max-width: 360px;
    margin: 0 auto;
}

.empty-icon {
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--t2);
    margin-bottom: 6px;
}

.empty-state p {
    font-size: 14px;
    color: var(--t3);
    line-height: 1.6;
}
/* CSS adicionar ao site.css ou à view */

.ec-img-real {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .ec-img-real svg {
        display: none;
    }

.spotlight-img[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .spotlight-img[style*="background-image"] .spotlight-icon {
        display: none;
    }
/* Adicionar ao site.css */

.nav-dropdown-admin {
    color: var(--purple) !important;
    font-weight: 600;
}

    .nav-dropdown-admin:hover {
        background: var(--purple-subtle) !important;
    }

    .nav-dropdown-admin svg {
        stroke: var(--purple) !important;
    }

.mobile-menu-admin {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
}

/* ══════════════════════════════════════════
   NOTIFICATION BANNER
   ══════════════════════════════════════════ */
.notif-banner {
    background: linear-gradient(135deg, rgba(201, 162, 77, 0.15), rgba(124, 58, 237, 0.15));
    border-bottom: 1px solid var(--accent-border);
    padding: 12px 0;
}

.notif-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.notif-banner-content svg {
    flex-shrink: 0;
    color: var(--accent);
}

.notif-banner-content span {
    font-size: 14px;
    color: var(--t1);
    flex: 1;
    min-width: 200px;
}

.notif-banner-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.notif-banner-link:hover {
    color: var(--accent-hover);
}

/* ══════════════════════════════════════════
   ONBOARDING PAGE
   ══════════════════════════════════════════ */
.onboarding-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(68px + 40px) 20px 60px;
}

.onboarding-container {
    max-width: 600px;
    text-align: center;
}

.onboarding-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.onboarding-subtitle {
    font-size: 16px;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 32px;
}

.onboarding-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
}

.onboarding-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.onboarding-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--t2);
}

/* ══════════════════════════════════════════
   RESPONSIVE — PAGE-SPECIFIC
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
    /* ── Nav ── */
    .nav-user-name { display: none; }
    .nav-user-btn { padding: 5px; }
    .nav-notif-btn { width: 34px; height: 34px; }
    .nav-notif-dropdown { width: calc(100vw - 32px) !important; right: -12px !important; }

    /* ── Form rows ── */
    .form-row { grid-template-columns: 1fr !important; }

    /* ── Painel ── */
    .painel-stats { grid-template-columns: 1fr !important; }
    .painel-actions { grid-template-columns: 1fr !important; }

    /* ── Espacos grid ── */
    .espacos-grid-responsive { grid-template-columns: 1fr !important; }

    /* ── Category carousel ── */
    .cat-carousel-item { flex: 0 0 220px; }
    .cat-carousel-img { height: 160px; }
    .cat-carousel-arrow { display: none; }

    /* ── CTA ── */
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { width: 100%; }

    /* ── Page headers ── */
    .page-header h1 { font-size: 24px !important; }

    /* ── Onboarding ── */
    .onboarding-title { font-size: 24px; }
    .onboarding-benefits { flex-direction: column; align-items: center; }

    /* ── Notif banner ── */
    .notif-banner-content { flex-direction: column; text-align: center; gap: 8px; }
    .notif-banner-content span { min-width: auto; }

    /* ── Admin ── */
    .admin-grid-2 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-inner { padding: 0 16px; }
    .btn-sm { padding: 10px 16px; font-size: 12px; }
    .btn-lg { padding: 12px 24px; font-size: 13px; }
}

/* ══════════════════════════════════════════
   THEME TOGGLE
   ══════════════════════════════════════════ */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--t2);
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

    .theme-toggle:hover {
        background: var(--surface-hover);
        border-color: var(--border-h);
        color: var(--t1);
    }

    .theme-toggle svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* Sun icon (show in light mode) */
    .theme-toggle .icon-sun { display: block; }
    .theme-toggle .icon-moon { display: none; }

    /* Moon icon (show in dark mode) */
    [data-theme="dark"] .theme-toggle .icon-sun { display: none; }
    [data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* Auth page toggle positioning */
.auth-theme-toggle {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10;
}

/* Admin topbar toggle */
.topbar-icon-btn.theme-toggle {
    width: 40px;
    height: 40px;
}

/* ══════════════════════════════════════════
   SCROLL-TO-TOP
   ══════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--purple-border);
    background: var(--purple);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 999;
}

    .scroll-top svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top:hover {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent-border);
        box-shadow: 0 4px 24px rgba(154, 123, 31, 0.35);
        transform: translateY(-2px);
    }

    .scroll-top:active {
        transform: translateY(0);
    }
/* ══════════════════════════════════════════
   NAV SCROLL STATE
   ══════════════════════════════════════════ */
.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}