:root {
    --bg: #050505;
    --bg-soft: #0e0f11;
    --surface: rgba(17, 17, 17, 0.9);
    --surface-2: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4f4f4;
    --muted: rgba(244, 244, 244, 0.72);
    --accent: #f07a1f;
    --accent-2: #ff9a39;
    --accent-3: #c85b11;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max-width: 1600px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: #010100;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.space {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 12px 0;
}

[class*=vspace-] {
    display: none;
}

.space-32,[class*=vspace-32] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 32px 0 31px;
}

.space-30,[class*=vspace-30] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 30px 0 29px;
}

.space-28,[class*=vspace-28] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 28px 0 27px;
}

.space-26,[class*=vspace-26] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 26px 0 25px;
}

.space-24,[class*=vspace-24] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 24px 0 23px;
}

.space-22,[class*=vspace-22] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 22px 0 21px;
}

.space-20,[class*=vspace-20] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 20px 0 19px;
}

.space-18,[class*=vspace-18] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 18px 0 17px;
}

.space-16,[class*=vspace-16] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 16px 0 15px;
}

.space-14,[class*=vspace-14] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 14px 0 13px;
}

.space-12,[class*=vspace-12] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 12px 0 11px;
}

.space-10,[class*=vspace-10] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 10px 0 9px;
}

.space-8,[class*=vspace-8] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 8px 0 7px;
}

.space-6,[class*=vspace-6] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 6px 0 5px;
}

.space-4,[class*=vspace-4] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 4px 0 3px;
}

.space-2,[class*=vspace-2] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 2px 0 1px;
}

.space-0,[class*=vspace-0] {
    max-height: 1px;
    min-height: 1px;
    overflow: hidden;
    margin: 0;
}

.site-shell {
    position: relative;
    min-height: 100vh;
}

.secondary-page {
    background:
        radial-gradient(circle at top left, rgba(240, 122, 31, 0.18), transparent 30%),
        linear-gradient(180deg, #070707 0%, #050505 100%);
}

.site-shell-secondary::before {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 7%;
}

.site-shell-secondary::after {
    width: 380px;
    height: 380px;
    left: -140px;
    bottom: 12%;
}

.site-shell::before {
    width: 420px;
    height: 420px;
    background: rgba(240, 122, 31, 0.1);
    right: -180px;
    top: 10%;
}

.site-shell::after {
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.03);
    left: -220px;
    bottom: 8%;
}

.container-wide {
    width: min(var(--max-width), calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: #000;
    overflow: hidden;
    height: 160px;
}

.topbar-art {
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: 100%;
    opacity: 0.98;
    pointer-events: none;
    z-index: 0;
    object-fit: cover;
    object-position: left top;
}

.topbar > .container-wide {
    width: 100%;
    max-width: none;
    margin: 30px 0 0 10px;
    padding-left: 48px;
    padding-right: 40px;
}

.topbar-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo {
    width: 320px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin: 4px auto;
    border-radius: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: flex-end;
}

.nav a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:not(.nav-cta):hover {
    color: var(--accent);
}

.nav-cta:hover {
    color: #fff;
}

.nav-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: inset 0 -4px 7px 0 rgba(255, 255, 255, 0.32);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.nav-cta:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

@keyframes navCtaShine {
    0% {
        left: -70%;
    }
    100% {
        left: 125%;
    }
}

.nav-cta img,
.btn-pill img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 18px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: grid;
    align-items: center;
    padding: 46px 0 56px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgb(44 137 137 / 20%) 0%, rgb(11 35 35 / 10%) 23%, rgb(11 35 35 / 0%) 100%), #000;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 0 0;
    background-size: 100% 100%, auto;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.08;
    pointer-events: none;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-decor-top {
    left: -18px;
    top: -34px;
    width: 390px;
    height: auto;
    opacity: 0.92;
}

.hero-grid-2026 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
    padding-top: 12px;
}

.hero-copy-2026 {
    max-width: 680px;
}

.hero-kicker {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    font-weight: 700;
    color: #f5d93f;
    letter-spacing: -0.03em;
}

.hero h1 {
    margin: 10px 0 10px;
    font-size: clamp(56px, 7.5vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    max-width: 9ch;
}

.hero-tagline {
    margin: 0 0 18px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    color: #f4d640;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero-description {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 12px 30px rgba(240, 122, 31, 0.28);
}

.hero .btn-primary-custom {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    min-height: 48px;
    padding: 0 14px 0 16px;
    border-radius: 11px;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(180deg, #ebb586 0%, #f0801a 100%) border-box;
    color: #fff;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
}

.hero .btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.hero .btn-primary-custom:hover {
    color: var(--accent);
    text-decoration: none;
}

.hero .btn-primary-custom:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.hero-art {
    justify-self: end;
    width: min(100%, 840px);
    max-width: 840px;
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.42));
}

.hero-art img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-bg {
    justify-self: end;
    width: min(100%, 840px);
    position: absolute;
    bottom: 0;
}

.hero-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.orange-shadow {
    background: radial-gradient(ellipse 300px 50px at 45% 50%, rgb(226 78 12 / 25%) 0%, rgba(193, 62, 0, 0.08) 63%, rgb(1 1 1) 100%), #000;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 0 0;
    background-size: 100% 100%, auto;
    z-index: 1;
    position: absolute;
    height: 100px;
    width: 400px;
    top: 100px;
}

.section-divider-orange {
    width: 100%;
    height: 4px;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(240, 122, 31, 0.15) 12%,
            rgba(240, 122, 31, 0.92) 50%,
            rgba(240, 122, 31, 0.15) 88%,
            rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 0 10px 4px rgba(240, 122, 31, 0.5), 0 0 20px 10px rgba(240, 122, 31, 0.2);
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.section-divider-gray {
    width: 100%;
    height: 4px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(64 64 64 / 15%) 12%, rgb(64 64 64 / 90%) 50%, rgb(64 64 64 / 15%) 88%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.hero-info {
    position: relative;
    z-index: 1;
    margin: 24px 0 0;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-meta-card {
    min-width: 260px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-meta-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 42px;
}

.hero-meta-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: #fff;
}

.hero-meta-icon-calendar {
    width: 30px;
    height: 34px;
    flex: 0 0 30px;
}

.hero-meta-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.15;
}

.hero-meta-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.section {
    position: relative;
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-title {
    margin: 0;
    font-size: 36px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--accent);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.section-lead {
    margin: 0;
    max-width: 680px;
    color: var(--muted);
    line-height: 1.7;
}

.section-action {
    flex: 0 0 auto;
}

.about-event {
    padding-top: 90px;
}

.about-event-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 44px;
    align-items: center;
}

.about-event-copy {
    max-width: 540px;
}

.about-event-title {
    max-width: 100%;
    margin-bottom: 16px;
}

.about-event-title span {
    color: var(--accent);
}

.about-event-text {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.34;
    text-align: justify;
    max-width: 508px;
}

.about-event-cta {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    min-height: 48px;
    padding: 0 14px 0 16px;
    border-radius: 11px;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(180deg, #ebb586 0%, #f0801a 100%) border-box;
    color: #fff;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
}

.about-event-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.about-event-cta:hover {
    color: var(--accent);
    text-decoration: none;
}

.about-event-cta:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.about-event-visual {
    justify-self: end;
    width: min(100%, 554px);
}

.about-event-panel {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 313px;
    padding: 38px 28px 34px;
    border-radius: 11px;
    background: #000;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.about-event-panel::before,
.about-event-panel::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.about-event-panel::after {
    inset: 2px;
    border-radius: 9px;
    background: linear-gradient(0deg, rgba(237, 118, 38, 0.07) 0%, rgba(60, 60, 60, 0.07) 26%, rgba(255, 255, 255, 0.07) 51%, rgba(60, 60, 60, 0.07) 78%, rgba(237, 118, 38, 0.07) 100%);
    z-index: 0;
}

.about-event-panel::before {
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: conic-gradient(from 180deg at 50% 50%, rgba(183, 99, 18, 1) 19%, rgba(99, 63, 27, 0.77) 29%, rgba(249, 128, 11, 0.76) 51%, rgba(120, 72, 25, 0.81) 75%, rgba(109, 67, 26, 0.36) 83%, rgba(222, 117, 14, 1) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.about-event-panel::before,
.about-event-panel::after {
    box-sizing: border-box;
}

.about-event-panel > * {
    position: relative;
    z-index: 2;
}

.about-event-stat {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 0;
    padding: 0 0px 0 24px;
}

.about-event-stat:nth-child(1),
.about-event-stat:nth-child(2) {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(125, 118, 118, 0.7);
}

.about-event-stat:nth-child(1),
.about-event-stat:nth-child(3) {
    padding-right: 28px;
    border-right: 1px solid rgba(125, 118, 118, 0.7);
}

.about-event-stat:nth-child(2),
.about-event-stat:nth-child(4) {
    padding-left: 28px;
}

.about-event-stat img {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    object-fit: contain;
}

.about-event-stat-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.about-event-stat strong {
    color: var(--accent);
    font-size: 28px;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.about-event-stat span {
    color: #fff;
    font-size: 15px;
    line-height: 1.02;
    font-weight: 300;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.agenda-chip {
    padding: 18px;
    min-height: 132px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.agenda-chip:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(240, 122, 31, 0.45);
}

.agenda-date {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.agenda-chip h3 {
    margin: 14px 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.agenda-chip p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.agenda-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
}

.programacao-section {
    overflow: hidden;
    background: radial-gradient(circle at 95% 0%, rgb(44 137 137 / 20%) 0%, rgb(11 35 35 / 10%) 15%, rgb(11 35 35 / 0%) 100%), #000;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 0 0;
    background-size: 100% 100%, auto;
}

.programacao-shell {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.programacao-header {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.programacao-heading {
    min-width: 0;
}

.programacao-banner {
    background: linear-gradient(#010303, #010303) padding-box, linear-gradient(180deg, #ebb586 0%, #f0801a 100%) border-box;
    border: 2px solid transparent;
    border-radius: 16px;
    padding-bottom: 20px;
}

.programacao-kicker {
    margin: 0 0 3px;
    font-size: 16px;
    line-height: 1.02;
}

.programacao-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.programacao-stage {
    position: relative;
    width: 100%;
}

.programacao-cta {
    flex: 0 0 auto;
    min-height: 47px;
    padding: 0 15px 0 14px;
    border-radius: 11px;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(180deg, #ebb586 0%, #f0801a 100%) border-box;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    gap: 0;
    white-space: nowrap;
}

.programacao-cta img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    flex: 0 0 auto;
    margin-left: 12px;
}

.programacao-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.programacao-cta:hover {
    color: var(--accent);
    text-decoration: none;
}

.programacao-cta:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.programacao-tabs {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.programacao-tab {
    flex: 0 0 auto;
    width: 228px;
    min-height: 93px;
    padding: 14px 10px 12px;
    border-radius: 11px;
    border: 2px solid rgba(60, 60, 60, 0.64);
    background: rgba(0, 0, 0, 0.35);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.programacao-tab:nth-child(3) {
    width: 227px;
}

.programacao-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.programacao-tab:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.programacao-tab.is-active {
    border-color: transparent;
    background:
        linear-gradient(180deg, #f98023 0%, #f07a1f 100%) padding-box,
        conic-gradient(from 90deg at 50% 50%, rgba(249, 120, 35, 1) 12%, rgba(250, 145, 52, 1) 22%, rgba(239, 121, 39, 1) 32%, rgba(255, 154, 57, 1) 42%, rgba(236, 115, 36, 1) 84%, rgba(248, 136, 57, 1) 100%) border-box;
}

.programacao-tab-date {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.02;
    font-weight: 700;
    text-transform: uppercase;
}

.programacao-tab-weekday {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-size: 16px;
    line-height: 1.02;
    font-weight: 300;
}

.programacao-list {
    display: flex;
    margin-top: 50px;
    justify-content: center;
    gap: 20px;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
    will-change: opacity, transform;
}

.programacao-list.is-list-leaving {
    opacity: 0;
    transform: translateX(-500px);
}

.programacao-list.is-list-entering {
    animation: programacaoListEnter 0.5s ease both;
}

.programacao-row {
    display: flex;
    gap: 13px;
}

.programacao-item {
    flex: 0 0 auto;
    position: relative;
}

.programacao-item .programacao-item-content {
    border-radius: 9px;
    padding: 14px 18px 12px 65px;
    border: 2px solid #3c3c3c;
    background: #373838;
    min-height: 72px;
    width: 263px;
}

.programacao-item-time {
    width: 100%;
    color: #ed7626;
    font-size: 16px;
    line-height: 2;
    font-weight: 600;
    text-align: center;
}

.programacao-item-arrow {
    position: absolute;
    left: -40px;
    top: 4px;
    height: 60px;
    z-index: 10;
}

.programacao-item-icon {
    position: absolute;
    left: 19px;
    top: 11px;
    width: 35px;
    height: 40px;
    object-fit: contain;
}

.programacao-item-title {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.02;
    font-weight: 300;
    white-space: pre-line;
    max-width: 171px;
}

.programacao-note {
    width: 100%;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
    line-height: 1.02;
    text-align: center;
}

@keyframes programacaoListEnter {
    from {
        opacity: 0;
        transform: translateX(-500px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1199px) {
    .programacao-header {
        width: 100%;
        margin-left: 0;
    }

    .programacao-stage {
        width: 100%;
        margin-left: 0;
    }

    .programacao-list {
        width: 100%;
        margin-left: 0;
    }

    .programacao-note {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .programacao-header {
        margin-bottom: 28px;
    }

    .programacao-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
        margin-bottom: 24px;
    }

    .programacao-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .programacao-list {
        gap: 16px;
        width: 100%;
    }

    .programacao-item {
        min-height: 84px;
        width: 100%;
        padding-right: 12px;
    }

    .programacao-item-title {
        font-size: 15px;
    }

    .programacao-note {
        font-size: 14px;
    }

    .programacao-cta {
        min-height: 44px;
        padding: 0 12px 0 12px;
        font-size: 12px;
    }
}

/* Gallery */
.gallery-section {
    overflow: hidden;
    background: radial-gradient(circle at 95% 100%, rgb(44 137 137 / 20%) 0%, rgb(11 35 35 / 10%) 15%, rgb(11 35 35 / 0%) 100%), #000;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 0 0;
    background-size: 100% 100%, auto;
}

.gallery-shell {
    position: relative;
    min-height: 466px;
}

.gallery-kicker {
    margin: 0 0 3px;
    font-size: 16px;
    line-height: 1.02;
}

.gallery-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.gallery-carousel {
    position: absolute;
    top: 30px;
    height: 320px;
    padding: 0;
}

.gallery-slider {
    width: 100%;
    height: 100%;
}

.gallery-slider .ms-view {
    width: 100% !important;
    height: 280px !important;
    overflow: hidden;
}

.gallery-slider .ms-container {
    width: 100% !important;
    height: 280px !important;
    overflow: hidden;
}

.gallery-slider .ms-slide {
    width: 223px !important;
    height: 230px !important;
}

.gallery-card {
    width: 223px;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.gallery-card:nth-child(n + 2) {
    width: 222px;
}

.gallery-card img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    display: block;
}

.gallery-card.is-first img {
    border-radius: 10px 9px 0 0;
}

.gallery-nav {
    position: absolute;
    top: 170px;
    width: 52.93px;
    height: 52.93px;
    padding: 0;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 3;
    overflow: hidden;
}

.gallery-nav img {
    width: 43.14px;
    height: 37.88px;
    object-fit: contain;
    display: block;
}

.gallery-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.gallery-nav:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.gallery-nav-prev {
    left: -30px;
}

.gallery-nav-prev img {
    transform: rotate(180deg);
}

.gallery-nav-next {
    right: -30px;
}

.gallery-scroll {
    position: absolute;
    left: 50%;
    top: 396px;
    width: 246.35px;
    height: 5.77px;
    transform: translateX(-50%);
}

.gallery-cta {
    position: relative;
    width: 267px;
    min-height: 48px;
    padding: 0 15px 0 14px;
    border-radius: 11px;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(180deg, #ebb586 0%, #f0801a 100%) border-box;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    justify-content: space-between;
    gap: 0;
    white-space: nowrap;
}

.gallery-cta img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    flex: 0 0 auto;
    margin-left: 12px;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.gallery-cta:hover {
    color: var(--accent);
    text-decoration: none;
}

.gallery-cta:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

@media (max-width: 1199px) {
    .gallery-shell {
        width: 100%;
        min-height: 520px;
        margin-left: 0;
    }

    .gallery-kicker,
    .gallery-title,
    .gallery-carousel,
    .gallery-cta {
        left: 0;
    }

    .gallery-nav-prev {
        left: 0;
    }

    .gallery-nav-next {
        right: 0;
    }

    .gallery-carousel {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .gallery-shell {
        min-height: auto;
        padding-bottom: 24px;
    }

    .gallery-kicker,
    .gallery-title,
    .gallery-nav,
    .gallery-scroll,
    .gallery-cta {
        position: static;
    }

    .gallery-kicker {
        margin-bottom: 3px;
    }

    .gallery-title {
        max-width: none;
        margin-bottom: 16px;
    }

    .gallery-carousel {
        position: static;
        width: 100%;
        height: auto;
        padding: 0;
        margin-top: 0;
    }

    .gallery-slider {
        height: auto;
        visibility: visible !important;
    }

    .gallery-slider .ms-view,
    .gallery-slider .ms-container {
        height: auto;
    }

    .gallery-slider .ms-slide {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        display: block;
        width: 100% !important;
        height: auto !important;
        margin: 0 0 12px;
    }

    .gallery-card,
    .gallery-card:nth-child(n + 2) {
        width: 100%;
        height: auto;
    }

    .gallery-card img {
        height: 180px;
    }

    .gallery-nav,
    .gallery-scroll {
        display: none;
    }

    .gallery-cta {
        width: 100%;
        margin-top: 18px;
    }
}

/* Home sponsors */
.home-sponsors-section {
    overflow: hidden;
    background: radial-gradient(circle at 95% 0%, rgb(44 137 137 / 20%) 0%, rgb(11 35 35 / 10%) 15%, rgb(11 35 35 / 0%) 100%), #000;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 0 0;
    background-size: 100% 100%, auto;
}

.home-sponsors-shell {
    position: relative;
    min-height: 200px;
}

.home-sponsors-kicker {
    margin: 0 0 3px;
    font-size: 16px;
    line-height: 1.02;
}

.home-sponsors-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.home-sponsors-row {
    position: relative;
    top: 30px;
    display: flex;
    justify-content: space-between;
}

.home-sponsor-card {
    position: relative;
    width: 228px;
    height: 93px;
    border-radius: 11px;
    border: 2px solid #3c3c3c;
    background: rgba(0, 0, 0, 0.35);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.home-sponsor-card + .home-sponsor-card {
    margin-left: 12px;
}

.home-sponsor-card:nth-child(3) {
    width: 227px;
}

.home-sponsor-card:nth-child(4) {
    width: 228px;
}

.home-sponsor-card img {
    display: block;
    object-fit: contain;
}

.home-sponsor-card:nth-child(1) img {
    width: 143px;
    height: 45px;
}

.home-sponsor-card:nth-child(2) img {
    width: 155px;
    height: 36px;
}

.home-sponsor-card:nth-child(3) img {
    width: 113px;
    height: 76px;
}

.home-sponsor-card:nth-child(4) img {
    width: 171px;
    height: 87px;
}

.home-sponsor-card:nth-child(5) {
    display: block;
}

.home-sponsor-label {
    position: absolute;
    left: 32px;
    top: 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.02;
    text-align: left;
}

.home-sponsors-arrow {
    position: absolute;
    left: 1170px;
    top: 212px;
    width: 60.55px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-sponsors-arrow img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.home-sponsors-cta {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 15px 0 14px;
    border-radius: 11px;
    border: 2px solid transparent;
    color: #fff;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
}

.home-sponsors-cta img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;
    margin-left: 12px;
}

.home-sponsors-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.home-sponsors-cta:hover {
    color: var(--accent);
    text-decoration: none;
}

.home-sponsors-cta:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

@media (max-width: 1199px) {
    .home-sponsors-shell {
        width: 100%;
        min-height: 380px;
        margin-left: 0;
    }

    .home-sponsors-kicker,
    .home-sponsors-title,
    .home-sponsors-row,
    .home-sponsors-cta {
        left: 0;
    }

    .home-sponsors-row {
        width: 100%;
    }

    .home-sponsors-arrow {
        left: auto;
        right: 0;
    }
}

@media (max-width: 767px) {
    .home-sponsors-shell {
        min-height: auto;
        padding-bottom: 24px;
    }

    .home-sponsors-kicker,
    .home-sponsors-title,
    .home-sponsors-row,
    .home-sponsors-arrow,
    .home-sponsors-cta {
        position: static;
    }

    .home-sponsors-kicker {
        margin-bottom: 3px;
    }

    .home-sponsors-title {
        margin-bottom: 18px;
        max-width: none;
    }

    .home-sponsors-row {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-sponsor-card,
    .home-sponsor-card + .home-sponsor-card {
        width: 100%;
        margin-left: 0;
    }

    .home-sponsors-arrow {
        display: none;
    }

    .home-sponsors-cta {
        width: 100%;
        margin-top: 18px;
    }
}

.hotels-section {
    overflow: hidden;
    background: radial-gradient(circle at 95% 100%, rgb(44 137 137 / 20%) 0%, rgb(11 35 35 / 10%) 15%, rgb(11 35 35 / 0%) 100%), #000;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 0 0;
    background-size: 100% 100%, auto;
}

.hotels-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 28px;
    align-items: center;
}

.hotels-copy {
    max-width: 80%;
}

.hotels-kicker {
    margin-top: 0;
}

.hotels-title {
    margin-bottom: 0;
}

.hotels-text {
    margin: 16px 0 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.34;
    text-align: justify;
}

.hotels-cta {
    margin-top: 30px;
    width: 269px;
    min-height: 47px;
    padding: 0 15px 0 14px;
    border-radius: 11px;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(180deg, #ebb586 0%, #f0801a 100%) border-box;
    color: #fff;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    gap: 0;
}

.hotels-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.hotels-cta:hover {
    color: var(--accent);
    text-decoration: none;
}

.hotels-cta:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.hotels-carousel {
    position: relative;
    width: min(100%, 820px);
    height: 400px;
    justify-self: end;
    padding: 0 50px;
}

.hotels-slider {
    width: 100%;
    height: 100%;
}

.hotels-slider .ms-view {
    width: 100% !important;
    height: 360px !important;
    overflow: hidden;
}

.hotels-slider .ms-container {
    width: 100% !important;
    height: 360px !important;
    overflow: hidden;
}

.hotels-slider .ms-slide {
    width: 221px !important;
    height: 313px !important;
}

.ms-bullet {
    border-radius: 8px;
}

.hotel-panel {
    width: 221px;
    height: 313px;
    border-radius: 11px;
    border: 2px solid transparent;
    background:
        linear-gradient(0deg, rgba(237, 118, 38, 0.07) 0%, rgba(60, 60, 60, 0.07) 26%, rgba(255, 255, 255, 0.07) 51%, rgba(60, 60, 60, 0.07) 78%, rgba(237, 118, 38, 0.07) 100%) padding-box,
        linear-gradient(180deg, #ebb586 0%, #f0801a 100%) border-box;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

.hotel-panel-media {
    width: 100%;
    height: 213px;
    overflow: hidden;
    border-radius: 10px 9px 0 0;
}

.hotel-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-panel-body {
    position: relative;
    height: 100px;
    padding: 6px 8px 0;
    background: #000;
}

.hotel-panel-body h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.hotel-panel-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 14px;
    line-height: 1.02;
    font-weight: 300;
}

.hotel-panel-location img {
    width: 32px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 32px;
}

.hotels-nav {
    position: absolute;
    top: 117px;
    width: 52.93px;
    height: 52.93px;
    padding: 0;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 3;
    overflow: hidden;
}

.hotels-nav img {
    width: 43.14px;
    height: 37.88px;
    object-fit: contain;
    transform-origin: center center;
}

.hotels-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.hotels-nav:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.hotels-nav-prev {
    left: -15px;
    transform: rotate(180deg);
}

.hotels-nav-next {
    right: 0;
}

.sponsor-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sponsor-card {
    min-height: 118px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
}

.sponsor-card img {
    max-width: 150px;
    max-height: 64px;
    object-fit: contain;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    padding: 28px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(240, 122, 31, 0.14), transparent 35%),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.info-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.info-card ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.contact-section {
    position: relative;
    background: radial-gradient(ellipse 450px 80px at 45% 50%, rgb(226 78 12 / 25%) 0%, rgba(193, 62, 0, 0.08) 63%, rgb(2 2 2) 100%), #000;
    background-repeat: no-repeat, no-repeat;
    background-position: center center, 0 0;
    background-size: 100% 100%, auto;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    right: 0;
    top: 50%;
    width: 415px;
    height: 420px;
    transform: translateY(-50%);
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
}

.contact-shell {
    position: relative;
    min-height: 349px;
    z-index: 1;
}

.contact-kicker {
    margin: 0 0 3px;
    font-size: 16px;
    line-height: 1.02;
}

.contact-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.contact-info {
    position: relative;
}

.contact-info-data {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.contact-info-data p {
    margin-left: 10px;
}

.contact-info-data img {
    width: 50px;
}

.contact-content {
    margin-top: 40px;
    height: 300px;
    display: grid;
    width: 100%;
    grid-template-columns: minmax(260px, 40%) minmax(0, 30%);
    align-items: start;
    gap: 0;
}

.contact-content > .contact-info,
.contact-content > .contact-form {
    width: 100%;
    min-width: 0;
}

.contact-content > .contact-info {
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: space-evenly;
}

.contact-content > .contact-form {
    grid-column: 2;
}

.contact-info-phone,
.contact-info-email,
.contact-info-address {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.34;
}

.contact-form {
    position: relative;
    width: 100%;
    justify-self: stretch;
}

.contact-field {
    margin-bottom: 8px;
    border-radius: 4px;
    background: #404040;
    border: 1px solid #656363;
    width: 100%;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.34;
    outline: none;
    padding: 0 18px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a4a4a4;
    opacity: 1;
}

.contact-form .row {
    width: 100%;
    display: flex;
    gap: 6px;
}

.contact-form .row .col {
    width: 50%;
}

.contact-field-message textarea {
    padding-top: 8px;
    resize: none;
}

.contact-submit {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: inset 0 -4px 7px 0 rgba(255, 255, 255, 0.32);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.06) 65%, transparent 100%);
    transform: skewX(-20deg);
    opacity: 0;
    pointer-events: none;
}

.contact-submit:hover {
    color: #fff;
    text-decoration: none;
}

.contact-submit:hover::before {
    opacity: 1;
    animation: navCtaShine 0.85s ease forwards;
}

.footer {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #000;
    color: #fff;
    width: 100%;
}

.footer-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 48px;
    align-items: start;
    min-height: 324px;
    padding: 80px 0 50px;
}

.footer-brand {
    width: 100%;
    max-width: 402px;
    height: auto;
}

.footer-content {
    display: contents;
}

.footer-logo-group {
    grid-column: 1;
}

.footer-nav-group {
    grid-column: 2;
}

.footer-event-group {
    grid-column: 3;
}

.footer-event-items {
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 20px;
}

.footer-social-group {
    grid-column: 4;
}

.footer-label {
    margin: 0;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
}

.footer-nav-list {
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.97;
    text-transform: uppercase;
}

.footer-nav-list a {
    color: #fff;
}

.footer-event-items p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.footer-event-items p span {
    margin-left: 8px;
}

.footer-event-items p img {
    width: 30px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 30px;
    margin-top: -2px;
}

.footer-social-group .footer-label {
    margin-bottom: 13px;
}

.footer-social-links {
    display: flex;
    gap: 0;
    width: 100%;
    height: 54px;
    justify-content: flex-start;
}

.footer-social-links a {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
}

.footer-social-links img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    min-width: 280px;
    max-width: min(420px, calc(100vw - 40px));
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(8, 8, 8, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    display: none;
}

.toast strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.toast span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.toast.success {
    border-color: rgba(89, 192, 125, 0.35);
}

.toast.error {
    border-color: rgba(229, 94, 94, 0.35);
}

.section-anchor {
    scroll-margin-top: 110px;
}

.page-hero {
    position: relative;
    padding: 72px 0 44px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.22;
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: center;
}

.page-hero-copy h1 {
    margin: 10px 0 16px;
    font-size: clamp(34px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    max-width: 11ch;
}

.page-hero-subtitle {
    margin: 0 0 10px;
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
}

.page-hero-description {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.page-hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.page-hero-visual {
    min-height: 320px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.page-hero-visual-inner {
    height: 100%;
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 30%, rgba(240, 122, 31, 0.2), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.page-hero-visual-inner img {
    max-height: 270px;
    object-fit: contain;
    opacity: 0.96;
}

.page-section {
    position: relative;
    padding: 34px 0 110px;
}

.page-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.page-card {
    padding: 28px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(240, 122, 31, 0.14), transparent 36%),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.page-card h2,
.page-card h3 {
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}

.page-card p,
.page-card li {
    color: var(--muted);
    line-height: 1.8;
}

.page-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.sponsor-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sponsor-group {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.sponsor-group h2 {
    margin: 0 0 18px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.sponsor-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sponsor-logo {
    min-height: 92px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
}

.sponsor-logo img {
    max-width: 140px;
    max-height: 48px;
    object-fit: contain;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.theme-card {
    padding: 0;
    overflow: hidden;
}

.theme-banner {
    width: 100%;
    min-height: 180px;
    object-fit: cover;
}

.theme-card-body {
    padding: 26px;
}

.theme-card-body strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 18px;
}

.theme-card-body p {
    margin: 0;
}

@media (max-width: 1199px) {
    .hero-grid-2026,
    .info-grid,
    .hotels-shell,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-event-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .agenda-grid,
    .sponsor-strip,
    .sponsor-page-grid,
    .theme-grid,
    .page-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-art {
        justify-self: start;
        width: min(100%, 760px);
    }

    .hotels-shell {
        gap: 22px;
    }

    .hotels-copy {
        max-width: none;
    }

    .hotels-title {
        max-width: none;
    }

    .hotels-carousel {
        justify-self: start;
    }

    .contact-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .footer-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 32px;
        min-height: auto;
        padding: 40px 0 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 402px;
    }

    .footer-nav-group {
        grid-column: 1;
    }

    .footer-event-group {
        grid-column: 2;
    }

    .footer-social-group {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .topbar > .container-wide {
        padding-left: 12px;
        padding-right: 12px;
    }

    .topbar-art {
        left: -32px;
        top: -18px;
        width: 280px;
        opacity: 0.96;
    }

    .container-wide {
        width: min(var(--max-width), calc(100% - 24px));
    }

    .topbar-inner {
        min-height: 76px;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 20px 22px;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-left: 0;
    }

    .nav.is-open {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: clamp(36px, 14vw, 58px);
    }

    .hero p {
        font-size: 16px;
    }

    .agenda-grid,
    .sponsor-strip,
    .form-grid .two-cols,
    .sponsor-page-grid,
    .theme-grid,
    .page-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid-2026 {
        gap: 18px;
        padding-top: 0;
    }

    .about-event {
        padding-top: 70px;
    }

    .about-event-copy {
        max-width: none;
    }

    .about-event-title {
        max-width: none;
    }

    .about-event-visual {
        width: 100%;
    }

    .about-event-panel {
        max-width: 554px;
        margin: 0 auto;
    }

    .hotels-shell {
        gap: 20px;
    }

    .hotels-text {
        text-align: left;
        font-size: 16px;
    }

    .hotels-cta {
        width: 269px;
    }

    .hotels-carousel {
        width: 100%;
        height: auto;
        padding: 72px 0 34px;
    }

    .hotels-slider {
        height: auto;
        visibility: visible !important;
    }

    .hotels-slider .ms-view,
    .hotels-slider .ms-container {
        height: auto;
    }

    .hotels-slider .ms-slide {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        display: block;
        width: min(100%, 221px) !important;
        height: auto !important;
        margin: 0 0 18px;
    }

    .hotel-panel {
        width: min(100%, 221px);
        margin: 0 auto;
    }

    .hotels-nav {
        display: none !important;
    }

    .hotels-nav-prev {
        left: 8px;
    }

    .hotels-nav-next {
        right: 8px;
    }

    .hero-decor-top {
        left: -46px;
        top: -18px;
        width: 290px;
        opacity: 0.9;
    }

    .hero-kicker {
        font-size: 24px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 64px);
        max-width: none;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-art {
        width: 100%;
    }

    .hero-info {
        margin-top: 20px;
    }

    .about-event-text {
        text-align: left;
        font-size: 16px;
    }

    .about-event-cta {
        width: fit-content;
    }

    .about-event-panel {
        min-height: 0;
        padding: 24px 16px;
    }

    .about-event-panel::before {
        left: 16px;
        right: 16px;
    }

    .about-event-panel::after {
        top: 16px;
        bottom: 16px;
    }

    .about-event-stat {
        gap: 14px;
    }

    .about-event-stat img {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .about-event-stat strong {
        font-size: 22px;
    }

    .about-event-stat span {
        font-size: 13px;
        line-height: 1.15;
    }

    .hotel-panel-location {
        margin-top: 32px;
    }

    .hero-meta-card {
        width: 100%;
        min-width: 0;
    }

    .page-hero {
        padding-top: 52px;
    }

    .page-hero-visual {
        min-height: 260px;
    }

    .page-hero-visual-inner {
        min-height: 260px;
    }

    .section {
        padding: 84px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        padding-bottom: 30px;
    }

    .footer-brand,
    .footer-nav-group,
    .footer-event-group,
    .footer-social-group {
        grid-column: auto;
    }

    .footer-social-links {
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 18px;
    }

    .hero-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card-top img {
        width: 190px;
    }
}

.registration-content {
    width: 100%;
}

.registration-content .actions {
    display: flex;
    justify-content: space-evenly;
}

.registration-content .info-title {
    font-size: 48px;
    padding: 60px 20px 20px 20px;
    color: var(--accent);
    font-weight: bold;
}

.registration-content .actions {
    display: flex;
    justify-content: space-evenly;
}

.registration-content .actions .action-button a {
    text-decoration: none;
}

.registration-content .login-link a {
    color: rgba(255, 255, 255, 0.82);
    padding-top: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline !important;
}

.form-inscricao {
    text-align: center;
    display: flex;
    height: 50vh;
    justify-content: center;
    align-items: center;
}

.form-inscricao h4 {
    font-size: 24px;
    padding: 60px 20px 20px 20px;
    color: var(--accent);
    font-weight: bold;
}

.form-inscricao .form-input {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.form-inscricao input {
    padding: 0 4px 0 6px;
    display: block;
    width: 60%;
    margin-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.82);
    outline: none;
    background: none;
    color: rgba(255, 255, 255, 0.82);
}

.form-inscricao .nav-cta {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.login-container {
    text-align: center;
    display: flex;
    height: 50vh;
    justify-content: center;
    align-items: center;
}

.login-container .login-title {
    font-size: 24px;
    padding: 60px 20px 20px 20px;
    color: var(--accent);
    font-weight: bold;
}

.login-container .form-login span {
    padding-right: 8px;
}

.login-container .form-login input {
    padding: 0 4px 0 6px;
    display: block;
    width: 100%;
    margin-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.82);;
    outline: none;
    background: none;
    color: rgba(255, 255, 255, 0.82);;
    text-align: center;
}

.login-container .login-link a:hover {
    color: var(--accent) !important;
}
