*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

: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)
}

[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: #8b5cf6;
    --purple-hover: #a78bfa;
    --purple-subtle: rgba(139,92,246,0.1);
    --purple-border: rgba(139,92,246,0.25);
    --grad: linear-gradient(135deg,#c9a24d 0%,#8b5cf6 100%);
    --grad-h: linear-gradient(135deg,#dbb660 0%,#a78bfa 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
}

[data-theme="light"] {
    --bg: #faf9f6;
    --bg-sec: #f3f1ed;
    --surface: #fff;
    --surface-hover: #f8f7f4;
    --accent: #8a6b1e;
    --accent-hover: #a07d28;
    --accent-subtle: rgba(138,107,30,0.07);
    --accent-border: rgba(138,107,30,0.2);
    --purple: #6d28d9;
    --purple-hover: #7c3aed;
    --purple-subtle: rgba(109,40,217,0.07);
    --purple-border: rgba(109,40,217,0.2);
    --grad: linear-gradient(135deg,#8a6b1e 0%,#6d28d9 100%);
    --grad-h: linear-gradient(135deg,#a07d28 0%,#7c3aed 100%);
    --ambient: linear-gradient(160deg,rgba(138,107,30,0.04) 0%,rgba(109,40,217,0.04) 50%,transparent 80%);
    --glow-g: rgba(138,107,30,0.04);
    --glow-p: rgba(109,40,217,0.04);
    --t1: #1a1816;
    --t2: #5c5750;
    --t3: #a09a90;
    --border: rgba(0,0,0,0.07);
    --border-h: rgba(0,0,0,0.14);
    --nav-bg: rgba(250,249,246,0.9);
    --tag-bg: rgba(138,107,30,0.1);
    --tag-t: #6b5518;
    --tag2-bg: rgba(109,40,217,0.1);
    --tag2-t: #5b21b6;
    --shadow: 0 8px 32px rgba(0,0,0,0.06);
    --input-bg: #f5f4f0
}

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
}

    .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
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--t3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0
}

    .theme-toggle:hover {
        border-color: var(--purple-border);
        color: var(--purple);
        background: var(--purple-subtle)
    }

/* 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(139,92,246,0.2),0 4px 24px rgba(201,162,77,0.15)
    }

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent-border)
}

    .btn-outline:hover {
        background: var(--accent-subtle);
        border-color: var(--accent);
        color: var(--accent-hover)
    }

/* MOBILE */
.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
    }

/* HERO */
.hero {
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    background: var(--ambient)
}

    .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
}

.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
}

[data-theme="light"] .spotlight-img {
    background: linear-gradient(135deg,#ece4f5 0%,#f0e8d8 50%,#f5efe2 100%)
}

.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
}

[data-theme="light"] .spotlight-icon {
    opacity: .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
}

.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: 20px;
    flex-wrap: wrap
}

.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(26px,3vw,40px);
    font-weight: 700;
    color: var(--t1);
    line-height: 1.15;
    letter-spacing: -0.03em
}

    .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(-3px);
        box-shadow: var(--shadow),0 0 40px var(--glow-p);
        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)
}

[data-theme="light"] .ec-img-1 {
    background: linear-gradient(135deg,#f0e8f5,#f0e8d8)
}

[data-theme="light"] .ec-img-2 {
    background: linear-gradient(135deg,#e0ecf5,#c5e0e8)
}

[data-theme="light"] .ec-img-3 {
    background: linear-gradient(135deg,#f5e0ec,#f0c5dd)
}

[data-theme="light"] .ec-img-4 {
    background: linear-gradient(135deg,#e0e0f5,#c5c5eb)
}

[data-theme="light"] .ec-img-5 {
    background: linear-gradient(135deg,#ecf5e0,#ddebc5)
}

[data-theme="light"] .ec-img-6 {
    background: linear-gradient(135deg,#e0f5ec,#c5ebdd)
}

.ec-img svg {
    width: 44px;
    height: 44px;
    stroke: var(--t3);
    fill: none;
    stroke-width: 1;
    opacity: .25;
    position: relative;
    z-index: 1
}

.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-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
}

[data-theme="light"] .filter-select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09a90' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
}

.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)
}

[data-theme="light"] .sc-img-1 {
    background: linear-gradient(135deg,#f5f0e8,#e8e0d0)
}

[data-theme="light"] .sc-img-2 {
    background: linear-gradient(135deg,#e0f0ec,#d0e8e0)
}

[data-theme="light"] .sc-img-3 {
    background: linear-gradient(135deg,#f0e0ec,#e8d0e0)
}

[data-theme="light"] .sc-img-4 {
    background: linear-gradient(135deg,#e8e0f5,#ddd0eb)
}

[data-theme="light"] .sc-img-5 {
    background: linear-gradient(135deg,#e0f5e8,#d0ebdd)
}

[data-theme="light"] .sc-img-6 {
    background: linear-gradient(135deg,#f5ece0,#ebe0d0)
}

.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
}

[data-theme="light"] .sc-type {
    background: rgba(255,255,255,.7);
    color: var(--t1)
}

.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
}

[data-theme="light"] .sc-rating {
    background: rgba(255,255,255,.7)
}

.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)
    }

/* CTA */
.cta-section {
    padding: 80px 0;
    background: var(--bg-sec)
}

.cta-box {
    max-width: 600px;
    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)
        }

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.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
    }

    .cta-box {
        padding: 36px 24px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 28px
    }

    .hero-stats {
        gap: 14px
    }

    .hero-stat-val {
        font-size: 22px
    }

    .section-title {
        font-size: clamp(22px,6vw,30px)
    }
}


/* ===== 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;
    }

    /* Orbe dourado — canto superior direito */
    .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;
    }

    /* Orbe roxo — centro-esquerda */
    .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;
    }

    /* Orbe roxo escuro — canto inferior direito */
    .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;
    }

    /* Orbe dourado pequeno — flutuante */
    .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;
    }

    /* Pulso de fundo */
    .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;
    }

/* Keyframes */
@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);
    }
}

/* Ajustar o hero para suportar o glow */
.hero {
    position: relative;
    isolation: isolate;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

/* Light theme — glows mais suaves */
[data-theme="light"] .hero-glow .orb-1 {
    background: radial-gradient(circle, rgba(138,107,30,0.3) 0%, transparent 70%);
}

[data-theme="light"] .hero-glow .orb-2 {
    background: radial-gradient(circle, rgba(109,40,217,0.25) 0%, transparent 70%);
}

[data-theme="light"] .hero-glow .orb-3 {
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-glow .orb-4 {
    background: radial-gradient(circle, rgba(160,125,40,0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-glow .orb-pulse {
    background: radial-gradient(circle, rgba(109,40,217,0.15) 0%, transparent 65%);
}

/* Responsivo — reduzir orbs em mobile */
@media (max-width: 768px) {
    .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;
    }
}
