/* ========== FONTS ========== */
/* Usando Poppins como fonte principal para garantir compatibilidade com numeros */

:root {
    /* Paleta Premium 2026 */
    --bg-light: #fbf6ef;
    --bg-warm: #fff2e0;
    --ink: #1b1410;
    --ink-soft: #3f352f;
    --muted: rgba(27, 20, 16, 0.64);

    /* Gradientes Magicos */
    --gradient-gold: linear-gradient(135deg, #ffe29a 0%, #f59e0b 55%, #f97316 100%);
    --gradient-magic: linear-gradient(135deg, #0f766e 0%, #0ea5a6 45%, #f59e0b 100%);
    --gradient-sunset: linear-gradient(135deg, #fb7185 0%, #f97316 45%, #fbbf24 100%);
    --gradient-cyan: linear-gradient(135deg, #0ea5a6 0%, #0d9488 50%, #0f766e 100%);
    --gradient-indigo: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #0f4c81 100%);
    --gradient-purple: linear-gradient(135deg, #14b8a6 0%, #0ea5a6 50%, #f59e0b 100%);
    --gradient-amber: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --gradient-coral: linear-gradient(135deg, #fb7185 0%, #f97316 50%, #ea580c 100%);

    /* Glassmorphism Premium */
    --glass-premium: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);

    /* Sombras em camadas */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.25);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;

    /* Animacoes */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Navigation height */
    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--navbar-height) + 16px);
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(1200px 800px at 10% -10%, rgba(14, 165, 166, 0.22), transparent 70%),
        radial-gradient(900px 700px at 90% 0%, rgba(245, 158, 11, 0.22), transparent 65%),
        linear-gradient(180deg, #fbf6ef 0%, #fff7ea 40%, #fffdf9 100%);
    background-attachment: scroll;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 50% 0%, rgba(255, 255, 255, 0.35), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section__container,
.section__header,
.section__content,
.atracoes__wrapper,
.section__content--contato {
    position: relative;
    z-index: 1;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
    pointer-events: auto;
}

* {
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* ========== NAVIGATION BAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.85) 100%);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.navbar--scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar--hidden {
    transform: translateY(-100%);
}

.navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    flex-shrink: 0;
    z-index: 2;
}

.navbar__logo-img {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s var(--transition-smooth);
}

.navbar__logo-img:hover {
    transform: scale(1.05);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    position: relative;
}

.navbar__toggle-icon {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #0ea5a6 0%, #f59e0b 100%);
    border-radius: 10px;
    transition: all 0.3s var(--transition-smooth);
}

.navbar__toggle--active .navbar__toggle-icon:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.navbar__toggle--active .navbar__toggle-icon:nth-child(2) {
    opacity: 0;
}

.navbar__toggle--active .navbar__toggle-icon:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 32px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar__item {
    position: relative;
}

.navbar__link {
    display: block;
    padding: 8px 16px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2b2f33;
    text-decoration: none;
    position: relative;
    border-radius: 12px;
    transition: all 0.3s var(--transition-smooth);
}

.navbar__link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.12) 0%, rgba(245, 158, 11, 0.12) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
}

.navbar__link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, #0ea5a6 0%, #f59e0b 50%, #f97316 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--transition-smooth);
}

.navbar__link:hover::before {
    opacity: 1;
}

.navbar__link:hover {
    color: #0f766e;
    transform: translateY(-2px);
}

.navbar__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar__link--active {
    color: #0f766e;
}

.navbar__link--active::before {
    opacity: 1;
}

.navbar__link--active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.scroll-progress {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    z-index: 999;
}

.scroll-progress__bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0ea5a6 0%, #f59e0b 60%, #f97316 100%);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
    transition: width 0.15s ease-out;
}

.navbar__item--cta {
    margin-left: 8px;
}

.btn--nav {
    padding: 10px 24px;
    font-size: 14px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    /* Nav wrapper - contains the mobile menu */
    .navbar__container > nav[aria-label="Menu principal"] {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(80%, 320px);
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
        border-left: 3px solid rgba(14, 165, 166, 0.3);
        transform: translateX(100%);
        transition: transform 0.3s var(--transition-smooth);
        z-index: 1001;
        overflow-y: auto;
    }

    body.nav-open .navbar__container > nav[aria-label="Menu principal"] {
        transform: translateX(0);
    }

    .navbar__menu {
        display: flex !important;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        height: auto;
        background: transparent !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 100px 32px 32px;
        gap: 0;
        box-shadow: none;
        border-left: none;
        transform: none;
        z-index: auto;
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar__menu--active {
        transform: none;
    }

    .navbar__item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        pointer-events: auto !important;
    }

    .navbar__item--cta {
        margin-left: 0;
        margin-top: 24px;
        border-bottom: none;
    }

    .navbar__link {
        padding: 18px 16px;
        font-size: 17px;
        font-weight: 700;
        color: #1a1a1a !important;
        display: block;
        position: relative;
        z-index: 10;
        cursor: pointer;
        pointer-events: auto !important;
    }

    .navbar__link::before,
    .navbar__link::after {
        display: none !important;
        content: none !important;
    }

    .navbar__link:hover,
    .navbar__link:active {
        background: rgba(14, 165, 166, 0.12);
        color: #0f766e !important;
    }

    .btn--nav {
        width: 100%;
        justify-content: center;
        font-weight: 700;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--navbar-height) + clamp(16px, 4vw, 40px)) clamp(24px, 4vw, 60px) clamp(24px, 4vw, 60px);
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("../assets/img/new_hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero__background {
        background-image: url("../assets/img/new_hero_mobile.png");
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
}

.hero__content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 4vw, 56px);
    position: relative;
    z-index: 1;
    margin-top: clamp(650px, 70vh, 950px);
    animation: fadeInUp 0.8s var(--transition-smooth) backwards;
    animation-delay: 0.3s;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.8s backwards;
}

.hero__actions .btn {
    min-width: 180px;
    padding: 16px 32px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.hero__actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease 1.2s backwards;
}

.hero__scroll-icon {
    width: 28px;
    height: 44px;
    border: 2px solid var(--ink-soft);
    border-radius: 20px;
    position: relative;
}

.hero__scroll-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--ink-soft);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .hero__scroll-indicator {
        display: none;
    }
}

/* ========== BUTTONS PREMIUM ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 16px);
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s var(--transition-smooth);
    will-change: transform;
    user-select: none;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--transition-smooth);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn--primary {
    background: var(--gradient-magic);
    color: #fff;
    box-shadow: 0 6px 24px rgba(14, 165, 166, 0.35);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 32px rgba(14, 165, 166, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);
    border: 2px solid rgba(14, 165, 166, 0.35);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #0ea5a6;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(14, 165, 166, 0.2);
}

.btn--large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ========== SECTIONS ========== */
.section {
    position: relative;
    padding: clamp(64px, 10vw, 120px) clamp(24px, 4vw, 60px);
    overflow: hidden;
}

.section__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: center;
}

@media (min-width: 768px) {
    .section__container {
        grid-template-columns: 1fr 1fr;
    }
}

.section__container--center {
    grid-template-columns: 1fr;
    text-align: center;
}

.section__header {
    text-align: center;
    margin-bottom: clamp(32px, 6vw, 64px);
}

.section__overline {
    display: inline-block;
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.section__overline--cyan {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__overline--indigo {
    background: var(--gradient-indigo);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__overline--purple {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__overline--amber {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__overline--light {
    color: rgba(255, 255, 255, 0.85);
    background: none;
}

.section__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section__title--cyan {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__title--indigo {
    background: var(--gradient-indigo);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__title--purple {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__title--amber {
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__title--coral {
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    background-clip: text;
}

.section__title--white {
    color: #fff;
    background: none;
}

.section__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--ink-soft);
    max-width: 700px;
    margin: 0 auto 24px;
}

.section__subtitle--dark {
    color: var(--ink);
}

.section__subtitle--white {
    color: rgba(255, 255, 255, 0.9);
}

.section__text {
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--ink-soft);
    margin-bottom: 20px;
    line-height: 1.7;
}

.section__text--center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section__image-wrapper {
    position: relative;
}

.section__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========== TEMPORADA SECTION ========== */
.temporada__info {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.temporada__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 166, 0.15);
}

.temporada__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.temporada__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 4px;
}

.temporada__value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.temporada__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

/* ========== STAGE SECTION ========== */
.section--stage {
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.section__container--stage {
    gap: clamp(40px, 8vw, 80px);
}

.stage__content {
    max-width: 600px;
}

.stage__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stage__highlight {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 166, 0.2);
}

.stage__highlight-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 4px;
}

.stage__highlight-text {
    font-size: 13px;
    color: var(--ink-soft);
}

.stage__visual {
    position: relative;
}

.stage__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stage__image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== PUBLICO SECTION ========== */
.section--publico-grid {
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.03) 0%, rgba(15, 76, 129, 0.06) 100%);
}

.section__container--publico {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .section__container--publico {
        grid-template-columns: 1fr 1.2fr;
        grid-template-rows: auto auto;
    }
}

.publico__media {
    position: relative;
}

.publico__media-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.publico__image {
    width: 100%;
    height: auto;
    display: block;
}

.publico__tag {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--gradient-magic);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.publico__content {
    padding-top: 20px;
}

.publico__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .publico__stats {
        grid-column: 1 / -1;
    }
}

.publico__stat {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(2, 132, 199, 0.15);
    text-align: center;
}

.publico__stat-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 8px;
}

.publico__stat-text {
    font-size: 14px;
    color: var(--ink-soft);
}

/* ========== ATRACOES SECTION ========== */
.section--atracoes {
    padding-left: 0;
    padding-right: 0;
}

.atracoes__wrapper {
    max-width: 100%;
    overflow: hidden;
}

.atracoes__title-icon {
    width: 80px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}

.atracoes__scroll {
    margin-top: 40px;
}

.atracoes__viewport {
    overflow: hidden;
    width: 100%;
}

.atracoes__track {
    display: flex;
    gap: 24px;
    animation: marquee var(--atracoes-duration, 30s) linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--atracoes-loop, 100%) * -1));
    }
}

.atracoes__track:hover {
    animation-play-state: paused;
}

.atracoes__grid {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.atracao-card {
    flex: 0 0 280px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 166, 0.15);
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.atracao-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 166, 0.4);
}

.atracao-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.atracao-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.atracao-card__desc {
    font-size: 14px;
    color: var(--ink-soft);
}

/* ========== ESTRUTURA SECTION ========== */
.estrutura__details {
    max-width: 1000px;
    margin: 0 auto;
}

.mapa__wrapper {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mapa__image {
    width: 100%;
    height: auto;
    display: block;
}

.estrutura__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.estrutura__stat {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(245, 158, 11, 0.2);
    text-align: center;
}

.estrutura__stat-number {
    display: block;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    background: var(--gradient-amber);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.estrutura__stat-label {
    font-size: 14px;
    color: var(--ink-soft);
}

/* ========== MARKETING SECTION ========== */
.section--marketing {
    background: linear-gradient(180deg, rgba(251, 113, 133, 0.03) 0%, rgba(249, 115, 22, 0.05) 100%);
}

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

@media (min-width: 768px) {
    .section__container--marketing {
        grid-template-columns: 1fr 1fr;
    }
}

.marketing__channels {
    list-style: none;
    margin: 24px 0;
}

.marketing__channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.marketing__channel-icon {
    font-size: 24px;
}

.marketing__channel-text {
    font-size: 16px;
    color: var(--ink);
}

.marketing__ticker {
    overflow: hidden;
    padding: 16px 0;
    margin-top: 24px;
}

.marketing__ticker-track {
    display: flex;
    gap: 32px;
    animation: ticker 20s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marketing__ticker-track span {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marketing__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.marketing__orbit {
    position: relative;
    width: 280px;
    height: 280px;
}

.marketing__core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-coral);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.marketing__core-title {
    font-size: 14px;
    font-weight: 700;
}

.marketing__core-subtitle {
    font-size: 11px;
    opacity: 0.85;
}

.marketing__node {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.marketing__node--social {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.marketing__node--influencers {
    top: 25%;
    right: 0;
}

.marketing__node--tv {
    bottom: 25%;
    right: 0;
}

.marketing__node--ooh {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.marketing__node--partners {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.marketing__card {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    border: 1px solid rgba(249, 115, 22, 0.2);
    text-align: center;
}

.marketing__card-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f97316;
    margin-bottom: 8px;
}

.marketing__card-text {
    font-size: 14px;
    color: var(--ink-soft);
}

/* ========== MARCAS SECTION ========== */
.section--marcas {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
}

.section--marcas::before {
    display: none;
}

.section__container--marcas {
    max-width: 1200px;
    margin: 0 auto;
}

.marcas__intro {
    text-align: center;
    margin-bottom: 48px;
}

.marcas__meter {
    max-width: 400px;
    margin: 32px auto 0;
}

.marcas__meter-bar {
    height: 6px;
    background: linear-gradient(90deg, #0ea5a6, #f59e0b, #f97316);
    border-radius: 999px;
    margin-bottom: 12px;
}

.marcas__meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.marcas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.marcas__card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}

.marcas__card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.marcas__card--wide {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .marcas__card--wide {
        grid-column: span 2;
    }
}

.marcas__card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.marcas__card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.marcas__card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== REGULAMENTO SECTION ========== */
.section--regulamento {
    background: rgba(255, 255, 255, 0.5);
}

.regulamento__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.regulamento__section {
    margin-bottom: 32px;
}

.regulamento__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.regulamento__list {
    list-style: none;
}

.regulamento__item {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--ink-soft);
}

.regulamento__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gradient-amber);
    border-radius: 50%;
}

.regulamento__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* ========== CONTATO SECTION ========== */
.section--contato {
    background: linear-gradient(180deg, rgba(14, 165, 166, 0.03) 0%, rgba(13, 148, 136, 0.06) 100%);
}

.section__content--contato {
    max-width: 1200px;
    margin: 0 auto;
}

.projecao__header {
    text-align: center;
    margin-bottom: 48px;
}

.projecao__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.projecao__chip {
    padding: 8px 16px;
    background: var(--gradient-cyan);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
}

.projecao__lead {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--ink-soft);
    max-width: 800px;
    margin: 24px auto 0;
}

.projecao__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.projecao__stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 166, 0.15);
}

.projecao__stat-value {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.projecao__stat-label {
    font-size: 14px;
    color: var(--ink-soft);
}

.projecao__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .projecao__layout {
        grid-template-columns: 1fr 1fr;
    }
}

.fogos__galeria {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fogos__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s var(--transition-smooth);
}

.fogos__card:hover {
    transform: scale(1.02);
}

.fogos__image {
    width: 100%;
    height: auto;
    display: block;
}

.fogos__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.projecao__panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contato__info {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(14, 165, 166, 0.15);
}

.contato__badge {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contato__badge-year {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contato__badge-label {
    font-size: 14px;
    color: var(--ink-soft);
}

.contato__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato__producer,
.contato__link,
.contato__horarios {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--ink-soft);
}

.contato__link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato__link:hover {
    color: #0f766e;
}

.contato__icon {
    font-size: 20px;
    flex-shrink: 0;
}

.cta__actions--panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px clamp(24px, 4vw, 60px) 32px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer__content {
    margin-bottom: 32px;
}

.footer__logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #fff;
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== FLOATING CTA ========== */
.cta-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--gradient-magic);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(14, 165, 166, 0.4);
    z-index: 900;
    transition: all 0.3s var(--transition-smooth);
}

.cta-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(14, 165, 166, 0.5);
}

.cta-float__icon {
    font-size: 20px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

body.lightbox-open {
    overflow: hidden;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(14, 165, 166, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--transition-smooth);
    z-index: 899;
    box-shadow: var(--shadow-md);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #fff;
    border-color: #0ea5a6;
    transform: translateY(-4px);
}

.back-to-top svg {
    color: #0f766e;
}

/* ========== POPUP ========== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay--visible {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-content {
    position: relative;
}

.popup-image-wrapper {
    position: relative;
}

.popup-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
}

.popup-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-arrow--next {
    right: -60px;
}

.popup-arrow svg {
    width: 24px;
    height: 24px;
}

.popup-pagination {
    text-align: center;
    margin-top: 16px;
}

.popup-page-indicator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

body.popup-open {
    overflow: hidden;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== LAZY IMAGES ========== */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 480px) {
    .hero__content {
        margin-top: clamp(400px, 60vh, 600px);
        padding: 24px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .temporada__actions {
        flex-direction: column;
    }

    .temporada__actions .btn {
        width: 100%;
    }

    .stage__highlights {
        grid-template-columns: 1fr;
    }

    .cta-float {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
    }

    .back-to-top {
        bottom: 80px;
        right: 16px;
    }

    .popup-arrow--next {
        right: 8px;
    }
}
