/* =========================================================
   ENAJI Natal 2026 - Stylesheet refatorado
   Estrutura: tokens, base, componentes, seções e responsivo
========================================================= */

:root {
    --color-ink: #07111f;
    --color-ink-2: #101b2e;
    --color-blue: #1056a5;
    --color-cyan: #1ea7d7;
    --color-orange: #f36f21;
    --color-yellow: #f6c444;
    --color-green: #1dbb7b;
    --color-paper: #f6f2ea;
    --color-muted: #708096;
    --color-white: #ffffff;
    --font-main: "Inter", Arial, sans-serif;
    --font-display: "Manrope", "Inter", Arial, sans-serif;
    --radius-xl: 32px;
    --radius-lg: 22px;
    --shadow-premium: 0 28px 90px rgba(7, 17, 31, 0.22);
    --container: 1180px;
    --header-height: 100px;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--color-ink);
    background: var(--color-paper);
    font-family: var(--font-main);
}

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

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

button,
input {
    font: inherit;
}

.site-shell {
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 84px 0;
}

.section-dark {
    color: var(--color-white);
    background:
        radial-gradient(circle at 15% 15%, rgba(30, 167, 215, 0.25), transparent 28%),
        radial-gradient(circle at 85% 5%, rgba(243, 111, 33, 0.28), transparent 28%),
        linear-gradient(135deg, #07111f 0%, #0d1d34 58%, #111729 100%);
}

.section-light {
    background: linear-gradient(180deg, #fbf8f1 0%, #efe8dc 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    flex-shrink: 0;
    border-radius: 999px;
    background: currentColor;
}

.hero h1,
.section-heading h2,
.program-copy h2,
.gallery-heading h2,
.cta-card h2,
.audience-card h2,
.rn-copy h2,
.local-card h2,
.sponsors-card h2,
.inscription-status-card strong {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.055em;
}

.section-heading h2,
.program-copy h2,
.gallery-heading h2,
.cta-card h2 {
    color: var(--color-ink);
    font-size: clamp(2.2rem, 3.4vw, 3.8rem);
    line-height: 1.02;
}

.section-dark .section-heading h2,
.section-dark .cta-card h2,
.gallery-section .section-heading h2,
.gallery-heading h2 {
    color: var(--color-white);
}

.section-heading-center,
.gallery-heading {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.section-heading-center .eyebrow,
.gallery-heading .eyebrow {
    justify-content: center;
}

.intro-text p,
.program-copy p,
.cta-card p,
.audience-card p,
.rn-copy p,
.local-card p,
.sponsors-card p,
.section-lead {
    margin: 0;
    color: #445064;
    font-size: 1.08rem;
    line-height: 1.75;
}

.section-dark .cta-card p {
    color: rgba(255, 255, 255, 0.72);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #08111f;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    box-shadow: 0 18px 38px rgba(243, 111, 33, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 22px 44px rgba(243, 111, 33, 0.36);
    filter: brightness(1.04);
}

.btn-ghost {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.20);
}

.disabled-link {
    cursor: not-allowed;
    opacity: 0.72;
    pointer-events: none;
    box-shadow: none;
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: max(42px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(7, 17, 31, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.brand {
    display: flex;
    align-items: center;
    width: clamp(170px, 10vw, 205px);
    flex-shrink: 0;
}

@media (min-width: 1440px) {
    .brand {
        width: 190px;
    }
}

.brand img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.75vw, 12px);
}

.main-nav a {
    padding: 10px 11px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.68rem, 0.58vw, 0.74rem);
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.main-nav a:not(.nav-cta):hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.main-nav .nav-cta {
    padding: 11px 18px;
    color: #07111f;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    box-shadow: 0 12px 28px rgba(243, 111, 33, 0.24);
}

.main-nav .nav-cta:hover {
    color: #07111f;
    background: linear-gradient(135deg, #ffd35a, #ff7a1f);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(243, 111, 33, 0.36);
    filter: brightness(1.04);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--color-white);
}

@media (max-width: 1280px) {
    :root {
        --header-height: 92px;
    }

    .brand {
        width: 165px;
    }

    .main-nav {
        gap: 6px;
    }

    .main-nav a {
        padding: 9px 9px;
        font-size: 0.68rem;
    }

    .main-nav .nav-cta {
        padding: 10px 15px;
    }
}

/* Hero */

.hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 132px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 45%, #000, transparent 74%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.9fr);
    gap: 58px;
    align-items: center;
    max-width: 1120px;
}

.hero h1 {
    max-width: 620px;
    color: var(--color-white);
    font-size: clamp(3.2rem, 4.1vw, 4.65rem);
    line-height: 1.02;
}

.hero-copy p {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.68;
}

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

.countdown-card {
    display: inline-grid;
    grid-template-columns: repeat(4, minmax(68px, 1fr));
    gap: 10px;
    margin-top: 24px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.countdown-card div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}

.countdown-card strong,
.countdown-card span {
    display: block;
}

.countdown-card strong {
    color: var(--color-white);
    font-size: 1.45rem;
    line-height: 1;
}

.countdown-card span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 560px;
    margin-top: 30px;
}

.hero-metrics div {
    padding: 0;
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    color: var(--color-white);
    font-size: 1.02rem;
}

.hero-metrics span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.45;
}

.hero-card {
    position: relative;
}

.hero-image-wrap {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    transform: rotate(1.2deg);
}

.hero-image-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(7, 17, 31, 0.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.floating-card span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floating-card-top {
    top: 34px;
    left: -34px;
    width: 150px;
}

.floating-card-bottom {
    right: -28px;
    bottom: 38px;
}

.floating-card-bottom strong {
    max-width: 180px;
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.05;
}

/* Partners */

.partners-strip {
    position: relative;
    overflow: hidden;
    padding: 72px 0 78px;
    background:
        radial-gradient(circle at 30% 48%, rgba(243, 111, 33, 0.10), transparent 34%),
        radial-gradient(circle at 72% 48%, rgba(16, 86, 165, 0.10), transparent 34%),
        #07111f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
    text-align: center;
}

.partners-block {
    display: grid;
    grid-template-rows: 28px 190px;
    justify-items: center;
    align-items: start;
    gap: 28px;
    min-width: 0;
}

.partners-label,
.partners-support-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.partners-logos {
    display: grid;
    align-items: center;
    justify-items: center;
    width: 100%;
    min-height: 190px;
}

.partners-logos-main {
    grid-template-columns: minmax(170px, 1fr) 1px minmax(170px, 1fr);
    max-width: 620px;
}

.partners-logos-support {
    grid-template-columns: minmax(150px, 1fr) 1px minmax(150px, 1fr);
    max-width: 520px;
}

.partners-logos img {
    display: block;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.30));
}

.partners-logos-main .logo-fiern,
.partners-logos-main .logo-fiern-jovem {
    height: 170px;
    max-width: 260px;
}

.partners-logos-support .logo-novos-lideres,
.partners-logos-support .logo-enaji-evento {
    height: 190px;
    max-width: 210px;
    opacity: 0.96;
}

.partners-divider,
.partners-divider-small {
    display: block;
    width: 1px;
    height: 106px;
    align-self: center;
    justify-self: center;
    border-radius: 999px;
    opacity: 0.48;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 255, 255, 0.42),
        transparent
    );
}

@media (max-width: 991px) {
    .partners-strip {
        padding: 52px 0 58px;
    }

    .partners-content-split {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .partners-block {
        grid-template-rows: auto auto;
        gap: 26px;
    }

    .partners-block-support {
        padding-top: 38px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .partners-label,
    .partners-support-label {
        min-height: auto;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        white-space: normal;
    }

    .partners-logos {
        min-height: auto;
    }

    .partners-logos-main {
        grid-template-columns: minmax(120px, 1fr) 1px minmax(120px, 1fr);
        max-width: 520px;
    }

    .partners-logos-support {
        grid-template-columns: minmax(110px, 1fr) 1px minmax(110px, 1fr);
        max-width: 430px;
    }

    .partners-logos-main .logo-fiern,
    .partners-logos-main .logo-fiern-jovem {
        height: 118px;
        max-width: 210px;
    }

    .partners-logos-support .logo-novos-lideres,
    .partners-logos-support .logo-enaji-evento {
        height: 92px;
        max-width: 170px;
    }

    .partners-divider,
    .partners-divider-small {
        height: 76px;
    }
}

@media (max-width: 575px) {
    .partners-strip {
        padding: 48px 0 54px;
    }

    .partners-content-split {
        width: min(100% - 24px, var(--container));
        gap: 38px;
    }

    .partners-block {
        gap: 24px;
    }

    .partners-label,
    .partners-support-label {
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .partners-logos-main {
        grid-template-columns: minmax(98px, 1fr) 1px minmax(98px, 1fr);
        max-width: 390px;
    }

    .partners-logos-support {
        grid-template-columns: minmax(92px, 1fr) 1px minmax(92px, 1fr);
        max-width: 340px;
    }

    .partners-logos-main .logo-fiern,
    .partners-logos-main .logo-fiern-jovem {
        height: 140px;
        max-width: 165px;
    }

    .partners-logos-support .logo-novos-lideres,
    .partners-logos-support .logo-enaji-evento {
        height: 140px;
        max-width: 140px;
    }

    .partners-divider,
    .partners-divider-small {
        height: 64px;
    }
}

@media (max-width: 380px) {
    .partners-logos-main .logo-fiern,
    .partners-logos-main .logo-fiern-jovem {
        height: 82px;
        max-width: 135px;
    }

    .partners-logos-support .logo-novos-lideres,
    .partners-logos-support .logo-enaji-evento {
        height: 64px;
        max-width: 118px;
    }

    .partners-divider,
    .partners-divider-small {
        height: 54px;
    }
}

/* Sobre */

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.intro-grid .section-heading h2 {
    font-size: clamp(2.4rem, 3.6vw, 4rem);
    line-height: 1;
}

.intro-text {
    max-width: 620px;
}

.intro-text p + p {
    margin-top: 18px;
}

/* Objetivo */

.objective-section,
.experiences-section {
    position: relative;
    overflow: hidden;
}

.objective-grid,
.rn-grid,
.editions-grid,
.local-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.objective-section .section-heading h2 {
    font-size: clamp(2.3rem, 3.2vw, 3.7rem);
    line-height: 1.02;
}

.objective-section .section-heading p {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.65;
}

.objective-list {
    display: grid;
    gap: 14px;
}

.objective-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.objective-list article::before {
    content: none;
}

.objective-list article:hover {
    transform: translateX(6px);
    border-color: rgba(246, 196, 68, 0.28);
    background: rgba(255, 255, 255, 0.105);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.objective-list article span {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.objective-list article:hover span {
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(243, 111, 33, 0.26);
}

.objective-list article p {
    position: relative;
    z-index: 1;
}

.objective-list span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #07111f;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    font-weight: 900;
}

.objective-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

/* Público */

.audience-section {
    position: relative;
}

.audience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 70px rgba(7, 17, 31, 0.08);
}

.audience-card h2 {
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 0.98;
}

/* Programação */

.program-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.program-copy {
    position: sticky;
    top: 130px;
}

.program-copy h2 {
    max-width: 520px;
}

.program-lead {
    max-width: 440px;
    margin-top: 18px;
    color: #4f5f73;
    font-size: 1.02rem;
    line-height: 1.65;
}

.program-info-card {
    position: relative;
    max-width: 390px;
    margin-top: 24px;
    padding: 22px 24px 22px 26px;
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 50px rgba(7, 17, 31, 0.08);
}

.program-info-card strong,
.program-info-card span {
    display: block;
}

.program-info-card strong {
    color: var(--color-ink);
    font-size: 1.08rem;
    font-weight: 900;
}

.program-info-card span {
    margin-top: 7px;
    color: #5d6b7f;
    font-size: 0.94rem;
    line-height: 1.5;
}

.timeline {
    position: relative;
    display: grid;
    gap: 22px;
    max-width: 620px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 24px;
    width: 1px;
    background: linear-gradient(180deg, rgba(243, 111, 33, 0), rgba(243, 111, 33, 0.65), rgba(243, 111, 33, 0));
}

.timeline article {
    position: relative;
    padding: 28px 30px 28px 76px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.10);
}

.timeline article::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 13px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    box-shadow: 0 0 0 8px rgba(243, 111, 33, 0.12);
}

.timeline span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--color-blue);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.timeline h3 {
    margin: 0 0 16px;
    color: var(--color-ink);
    font-size: clamp(1.25rem, 1.6vw, 1.65rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.timeline p {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: #64728a;
    font-size: 1rem;
    line-height: 1.6;
}

.timeline p::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-orange);
}

.timeline p + p {
    margin-top: 10px;
}

.timeline p strong {
    color: var(--color-ink);
    font-weight: 900;
}

/* Experiências */

.experiences-section {
    padding-top: 68px;
    padding-bottom: 82px;
}

.experiences-section .section-heading {
    max-width: 820px;
}

.experiences-section .section-heading h2 {
    max-width: 760px;
    font-size: clamp(2.3rem, 3.2vw, 3.7rem);
    line-height: 1.02;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 940px;
    margin: 44px auto 0;
}

.experience-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.14);
}

.experience-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.experience-card span,
.destination-card span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 18px;
    font-size: 1.6rem;
}

.experience-card span {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-card h3,
.destination-card h3 {
    margin: 0 0 12px;
    font-size: 1.6rem;
}

.experience-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

/* RN / Destinos */

.rn-section {
    position: relative;
    overflow: hidden;
    padding-top: 82px;
    padding-bottom: 56px;
    background:
        radial-gradient(circle at 78% 22%, rgba(243, 111, 33, 0.16), transparent 30%),
        radial-gradient(circle at 18% 70%, rgba(16, 86, 165, 0.10), transparent 34%),
        linear-gradient(135deg, #fbf8f1 0%, #f0e4d3 52%, #e7d8c2 100%);
}

.rn-grid {
    grid-template-columns: 0.95fr 1.25fr;
    align-items: center;
}

.rn-copy h2 {
    max-width: 560px;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 0.98;
}

.rn-copy p {
    max-width: 600px;
    margin-top: 18px;
}

.rn-copy .btn {
    margin-top: 24px;
}

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

.destination-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 34px 30px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.10);
}

.destination-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.destination-card span {
    background: rgba(243, 111, 33, 0.10);
    border: 1px solid rgba(243, 111, 33, 0.16);
}

.destination-card h3 {
    color: var(--color-ink);
    font-size: 1.55rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.destination-card p {
    margin: 0;
    color: #59687d;
    font-size: 0.98rem;
    line-height: 1.7;
}

.destination-card p + p {
    margin-top: 12px;
}

.destination-card strong {
    display: block;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(7, 17, 31, 0.08);
    color: var(--color-blue);
    font-size: 0.88rem;
    line-height: 1.45;
}

.section-note {
    position: relative;
    width: min(100% - 40px, var(--container));
    max-width: var(--container);
    margin: 26px auto 0;
    padding: 16px 24px 16px 28px;
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.06);
    border-radius: 18px;
    color: #596677;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 16px 42px rgba(7, 17, 31, 0.06);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* Sugestões */

main section[id] {
    scroll-margin-top: 120px;
}

.suggestions-section {
    position: relative;
    overflow: hidden;
    padding-top: 130px;
    padding-bottom: 92px;
    background:
        radial-gradient(circle at 14% 18%, rgba(16, 86, 165, 0.12), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(243, 111, 33, 0.14), transparent 28%),
        linear-gradient(180deg, #fbf8f1 0%, #efe5d6 100%);
}

.suggestions-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.52;
    background-image:
        linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at 50% 35%, #000, transparent 76%);
}

.suggestions-header,
.suggestions-grid {
    position: relative;
    z-index: 1;
}

.suggestions-header {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
    align-items: end;
    margin-bottom: 42px;
}

.suggestions-header h2 {
    max-width: 640px;
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
}

.suggestions-header p {
    max-width: 600px;
    margin: 0;
    color: #4f5f73;
    font-size: 1.02rem;
    line-height: 1.75;
}

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

.suggestion-category-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.suggestion-category-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.suggestion-category-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 111, 33, 0.12), transparent 68%);
    pointer-events: none;
}

.suggestion-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 111, 33, 0.22);
    box-shadow: 0 30px 80px rgba(7, 17, 31, 0.13);
}

.suggestion-category-card-featured {
    background:
        radial-gradient(circle at 88% 0%, rgba(246, 196, 68, 0.20), transparent 38%),
        rgba(255, 255, 255, 0.82);
}

.suggestion-category-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.suggestion-category-head > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(243, 111, 33, 0.16);
    border-radius: 18px;
    background: rgba(243, 111, 33, 0.10);
    font-size: 1.55rem;
}

.suggestion-category-head small {
    display: block;
    margin-bottom: 5px;
    color: var(--color-blue);
    font-size: 0.70rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.suggestion-category-head h3 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.suggestion-links {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.suggestion-links a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(7, 17, 31, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.suggestion-links a:hover {
    transform: translateX(4px);
    border-color: rgba(243, 111, 33, 0.24);
    background: rgba(255, 255, 255, 0.92);
}

.suggestion-links strong {
    color: #18243a;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.25;
}

.suggestion-links em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #07111f;
    background: linear-gradient(135deg, rgba(246, 196, 68, 0.72), rgba(243, 111, 33, 0.42));
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Edições */

.editions-grid {
    align-items: center;
}

#edicoes .section-heading h2 {
    max-width: 620px;
    margin-bottom: 20px;
    line-height: 0.98;
}

#edicoes .section-lead {
    max-width: 620px;
    margin-top: 0;
}

.editions-table {
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(7, 17, 31, 0.08);
}

.editions-table div {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr 72px;
    gap: 12px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(7, 17, 31, 0.07);
    transition: background 0.25s ease, color 0.25s ease;
}

.editions-table div:last-child {
    border-bottom: 0;
}

.editions-table div:hover {
    background: rgba(243, 111, 33, 0.055);
}

.editions-table div:hover strong {
    color: var(--color-orange);
}

.editions-table div:hover em {
    color: var(--color-ink);
}

.editions-table strong {
    color: var(--color-blue);
}

.editions-table span {
    color: #3d4a5d;
}

.editions-table em {
    color: var(--color-muted);
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.editions-table .is-current {
    color: #07111f;
    background: linear-gradient(135deg, rgba(246, 196, 68, 0.24), rgba(243, 111, 33, 0.14));
}

.editions-table .is-current:hover {
    background: linear-gradient(135deg, rgba(246, 196, 68, 0.30), rgba(243, 111, 33, 0.18));
}

/* Depoimentos */

.statements {
    padding-top: 82px;
    padding-bottom: 96px;
}

.statements .section-heading h2 {
    max-width: 760px;
    font-size: clamp(2.4rem, 3.2vw, 3.8rem);
    line-height: 1.02;
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 48px auto 0;
}

.statement-card {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 34px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.statement-card::before {
    content: "“";
    position: absolute;
    top: 12px;
    right: 24px;
    color: rgba(246, 196, 68, 0.10);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    pointer-events: none;
}

.statement-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
    opacity: 0.85;
}

.statement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 196, 68, 0.32);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
}

.statement-card p {
    position: relative;
    z-index: 1;
    min-height: auto;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.75;
}

.statement-card p + p {
    margin-top: 14px;
}

.statement-card div {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.statement-card strong,
.statement-card span {
    display: block;
}

.statement-card strong {
    color: var(--color-white);
    font-size: 1.06rem;
    font-weight: 900;
}

.statement-card span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
    line-height: 1.45;
}

/* Local e galeria */

.gallery-section {
    padding-top: 82px;
    padding-bottom: 92px;
    color: var(--color-white);
    background: #0a1424;
}

.local-grid {
    align-items: stretch;
}

.local-card,
.local-highlight {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.local-card h2,
.local-card p {
    color: var(--color-white);
}

.local-card h2 {
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 0.98;
}

.local-card p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.74);
}

.local-highlight {
    display: grid;
    min-height: 260px;
    align-content: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(246, 196, 68, 0.22), transparent 35%),
        linear-gradient(135deg, rgba(246, 196, 68, 0.14), rgba(243, 111, 33, 0.12));
}

.local-highlight strong,
.local-highlight span {
    display: block;
    font-size: clamp(2.4rem, 4.8vw, 4.6rem);
    line-height: 0.95;
}

.local-highlight span {
    color: var(--color-yellow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;
    grid-template-rows: repeat(2, 220px);
    gap: 18px;
    margin-top: 34px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.025);
    filter: brightness(1.08);
}

.gallery-large {
    grid-row: span 2;
}

/* Patrocinadores */

.sponsors-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(243, 111, 33, 0.10), transparent 32%),
        linear-gradient(180deg, #fbf8f1 0%, #efe8dc 100%);
}

.sponsors-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
    overflow: hidden;
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 80px rgba(7, 17, 31, 0.10);
}

.sponsors-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.sponsors-card h2 {
    max-width: 440px;
    margin-bottom: 26px;
    font-size: clamp(2.2rem, 4vw, 4.1rem);
    line-height: 1;
}

.sponsors-card p {
    max-width: 470px;
    font-size: 1rem;
    line-height: 1.7;
}

.sponsor-placeholders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sponsor-placeholders span {
    position: relative;
    display: grid;
    min-height: 108px;
    place-items: center;
    border: 1px solid rgba(7, 17, 31, 0.10);
    border-radius: 22px;
    color: #5e6d82;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 247, 240, 0.72));
    box-shadow: 0 14px 36px rgba(7, 17, 31, 0.06);
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sponsor-placeholders span::before {
    content: "";
    position: absolute;
    top: 16px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
    opacity: 0.75;
}

.sponsor-placeholders span:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 111, 33, 0.28);
    color: var(--color-ink);
    background: linear-gradient(135deg, rgba(246, 196, 68, 0.16), rgba(243, 111, 33, 0.08));
}

/* CTA inscrições */

.cta-section {
    padding-top: 80px;
}

.cta-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 44px;
    align-items: start;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: var(--shadow-premium);
}

.cta-card-simple {
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
}

.cta-card-simple h2 {
    max-width: 620px;
    font-size: clamp(2.6rem, 4vw, 4.6rem);
    line-height: 0.98;
}

.contact-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.contact-lines a {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--color-yellow);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 900;
}

.inscription-status-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 10%, rgba(246, 196, 68, 0.22), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.inscription-status-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.inscription-status-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-yellow);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inscription-status-card strong {
    display: block;
    color: var(--color-white);
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.95;
}

.inscription-status-card p {
    max-width: 360px;
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.02rem;
    line-height: 1.65;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    color: #07111f;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    font-weight: 900;
}

/* Formulário antigo, mantido caso seja reaproveitado */

.interest-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.interest-form label {
    display: grid;
    gap: 8px;
}

.interest-form label:nth-child(1),
.interest-form button {
    grid-column: 1 / -1;
}

.interest-form span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 800;
}

.interest-form input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    outline: 0;
    background: rgba(255, 255, 255, 0.08);
}

.interest-form input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

/* Footer */

.site-footer {
    padding: 34px 0;
    color: rgba(255, 255, 255, 0.66);
    background:
        radial-gradient(circle at 85% 20%, rgba(243, 111, 33, 0.12), transparent 28%),
        #07111f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.footer-brand {
    display: grid;
    justify-items: start;
    gap: 14px;
}

.footer-brand img {
    width: 180px;
    flex-shrink: 0;
}

.footer-brand p {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    width: 100%;
    padding: 22px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
}

.footer-info {
    text-align: left;
}

.footer-info strong,
.footer-info span {
    display: block;
}

.footer-info strong,
.footer-info span:first-child {
    color: var(--color-white);
    font-size: 0.94rem;
    font-weight: 900;
}

.footer-info span {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.footer-tags a,
.footer-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--color-yellow);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 900;
}

.footer-actions {
    display: grid;
    justify-items: end;
}

.footer-actions a:last-child {
    color: #07111f;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
}

/* Feature cards antigos, mantidos para segurança */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 54px;
}

.feature-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 55px rgba(7, 17, 31, 0.08);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto -45px -45px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 167, 215, 0.24), rgba(243, 111, 33, 0.22));
}

.feature-number {
    display: inline-flex;
    margin-bottom: 42px;
    color: var(--color-orange);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.feature-card h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}

/* Animações */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

/* Desktop largo */

@media (min-width: 1440px) {
    .hero-grid {
        max-width: 1180px;
    }

    .hero-image-wrap img {
        height: 460px;
    }
}

/* Notebook / telas médias */

@media (max-width: 1366px) {
    :root {
        --header-height: 82px;
    }

    .site-header {
        padding-inline: max(36px, calc((100vw - var(--container)) / 2));
    }

    .brand,
    .brand img {
        width: 125px;
    }

    .main-nav a {
        padding: 8px 10px;
        font-size: 0.70rem;
    }

    .main-nav .nav-cta {
        padding: 9px 16px;
    }

    .hero {
        min-height: 720px;
        padding-top: 110px;
        padding-bottom: 54px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.95fr);
        gap: 38px;
        max-width: 1100px;
    }

    .hero h1 {
        max-width: 580px;
        font-size: clamp(2.65rem, 3.6vw, 3.95rem);
    }

    .hero-copy p {
        max-width: 570px;
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .btn {
        min-height: 48px;
        padding: 0 22px;
    }

    .countdown-card {
        margin-top: 20px;
    }

    .countdown-card div {
        padding: 12px;
    }

    .countdown-card strong {
        font-size: 1.35rem;
    }

    .countdown-card span {
        font-size: 0.68rem;
    }

    .hero-metrics {
        gap: 10px;
        margin-top: 20px;
    }

    .hero-metrics strong {
        font-size: 1.02rem;
    }

    .hero-metrics span {
        font-size: 0.76rem;
    }

    .hero-image-wrap img {
        height: min(44svh, 410px);
    }

    .floating-card-top {
        left: -18px;
    }

    .floating-card-bottom {
        right: -8px;
        bottom: 24px;
    }
}

/* Tablet */

@media (max-width: 980px) {
    :root {
        --header-height: 82px;
    }

    .site-header {
        height: var(--header-height);
        padding-inline: 20px;
    }

    .brand,
    .brand img {
        width: 118px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 24px;
        background: rgba(7, 17, 31, 0.96);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
    }

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

    .main-nav a {
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 118px 0 56px;
    }

    .hero-grid,
    .intro-grid,
    .objective-grid,
    .program-grid,
    .rn-grid,
    .editions-grid,
    .local-grid,
    .audience-card,
    .sponsors-card,
    .cta-card,
    .cta-card-simple {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .program-copy {
        position: static;
    }

    .hero-card {
        width: 100%;
        max-width: 620px;
        margin-inline: auto;
    }

    .hero-image-wrap {
        transform: none;
        border-radius: 26px;
    }

    .hero-image-wrap img {
        height: 360px;
    }

    .floating-card-top {
        top: 18px;
        left: 18px;
        width: 150px;
    }

    .floating-card-bottom {
        right: 18px;
        bottom: 18px;
    }

    .experience-grid,
    .destination-grid,
    .statement-grid,
    .suggestions-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .statement-card {
        min-height: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-grid img {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-brand {
        justify-items: center;
    }

    .footer-brand p {
        max-width: 300px;
    }

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

    .footer-info {
        text-align: center;
    }

    .footer-tags {
        justify-content: center;
    }

    .footer-actions {
        justify-items: center;
    }
}

/* Celular */

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 64px 0;
    }

    .site-header {
        padding-inline: 18px;
    }

    .brand,
    .brand img {
        width: 108px;
    }

    .main-nav {
        right: 14px;
        left: 14px;
        border-radius: 20px;
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 42px;
    }

    .hero-grid {
        gap: 30px;
    }

    .eyebrow {
        gap: 8px;
        margin-bottom: 14px;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .eyebrow::before {
        width: 28px;
    }

    .hero h1,
    .section-heading h2,
    .program-copy h2,
    .gallery-heading h2,
    .cta-card h2,
    .audience-card h2,
    .rn-copy h2,
    .local-card h2,
    .sponsors-card h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.02;
    }

    .hero-copy p,
    .intro-text p,
    .program-copy p,
    .cta-card p,
    .audience-card p,
    .rn-copy p,
    .sponsors-card p,
    .section-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-copy p {
        max-width: 100%;
        margin-top: 18px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        padding-inline: 18px;
        text-align: center;
    }

    .countdown-card {
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin-top: 20px;
        padding: 8px;
        border-radius: 20px;
    }

    .countdown-card div {
        min-width: 0;
        padding: 12px 6px;
        border-radius: 15px;
    }

    .countdown-card strong {
        font-size: clamp(1rem, 5vw, 1.35rem);
    }

    .countdown-card span {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 22px;
    }

    .hero-metrics div {
        padding: 14px 10px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.045);
    }

    .hero-metrics strong {
        font-size: 0.98rem;
        line-height: 1.15;
    }

    .hero-metrics span {
        margin-top: 6px;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .hero-card {
        max-width: 100%;
        margin-top: 10px;
    }

    .hero-image-wrap img {
        height: 270px;
    }

    .floating-card {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .floating-card-top {
        top: 12px;
        left: 12px;
        width: 122px;
    }

    .floating-card-bottom {
        right: 12px;
        bottom: 12px;
        max-width: 162px;
    }

    .floating-card-bottom strong {
        font-size: 1rem;
    }


    .objective-list article {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding: 15px;
    }

    .objective-list span {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .objective-list article:hover {
        transform: translateY(-2px);
    }

    .audience-card,
    .sponsors-card,
    .cta-card,
    .local-card,
    .local-highlight {
        padding: 30px 24px;
        border-radius: 28px;
    }

    #programacao {
        padding-top: 58px;
    }

    .program-grid {
        gap: 28px;
    }

    .program-info-card {
        max-width: 100%;
        margin-top: 22px;
    }

    .timeline {
        max-width: 100%;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline article {
        margin-bottom: 0;
        padding: 24px 20px 24px 54px;
        border-radius: 22px;
    }

    .timeline article::before {
        left: 8px;
    }

    .timeline p {
        padding-left: 15px;
        font-size: 0.95rem;
    }

    .experience-card,
    .destination-card,
    .statement-card {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 24px;
    }

    .rn-section {
        padding-top: 64px;
        padding-bottom: 48px;
    }

    .rn-grid {
        gap: 34px;
    }

    .destination-card h3 {
        font-size: 1.45rem;
    }

    .section-note {
        width: min(100% - 28px, var(--container));
        padding: 15px 18px;
    }

    .editions-table div {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 16px 18px;
    }

    .editions-table em {
        text-align: left;
    }

    .statement-card p {
        min-height: auto;
    }

    .local-highlight strong,
    .local-highlight span {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .gallery-grid,
    .sponsor-placeholders,
    .interest-form,
    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        gap: 14px;
    }

    .gallery-grid img {
        height: 250px;
        border-radius: 22px;
    }

    .sponsor-placeholders span {
        min-height: 86px;
    }

    .contact-lines {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-lines a {
        justify-content: center;
        text-align: center;
        word-break: break-word;
    }

    .suggestions-section {
        padding-top: 66px;
        padding-bottom: 68px;
    }

    .suggestions-header {
        gap: 20px;
        margin-bottom: 28px;
    }

    .suggestion-category-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .suggestion-links a {
        grid-template-columns: 1fr;
        gap: 8px;
        align-items: start;
    }

    .suggestion-links em {
        justify-self: start;
    }

}

/* Celular estreito */

@media (max-width: 520px) {
    .hero h1 {
        font-size: clamp(2.45rem, 10.8vw, 3.25rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-metrics div {
        padding: 14px 18px;
    }

    .hero-metrics strong,
    .hero-metrics span {
        display: inline;
    }

    .hero-metrics strong {
        margin-right: 8px;
    }

    .hero-image-wrap img {
        height: 245px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero h1,
    .section-heading h2,
    .program-copy h2,
    .gallery-heading h2,
    .cta-card h2,
    .audience-card h2,
    .rn-copy h2,
    .local-card h2,
    .sponsors-card h2 {
        font-size: clamp(1.85rem, 10.5vw, 2.55rem);
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10.4vw, 2.85rem);
    }

    .hero-copy p {
        font-size: 0.96rem;
    }

    .countdown-card {
        gap: 6px;
    }

    .countdown-card div {
        padding: 10px 4px;
    }

    .countdown-card strong {
        font-size: 1.05rem;
    }

    .countdown-card span {
        font-size: 0.56rem;
    }

    .hero-image-wrap img {
        height: 225px;
    }

    .floating-card-top {
        width: 112px;
    }

    .floating-card-bottom {
        max-width: 145px;
    }

    .floating-card-bottom span {
        font-size: 0.65rem;
    }

    .floating-card-bottom strong {
        font-size: 0.92rem;
    }

    .audience-card,
    .sponsors-card,
    .cta-card,
    .local-card,
    .local-highlight {
        padding: 26px 20px;
    }

    .gallery-grid img {
        height: 220px;
    }
}

.section-note a {
    color: var(--color-blue);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gallery-heading {
    margin-top: 54px;
    margin-bottom: 28px;
}

/* Hero com logo principal em destaque */

.hero {
    min-height: 760px;
    padding: 126px 0 76px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1fr);
    gap: 74px;
    align-items: center;
    max-width: 1180px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-copy > img {
    width: clamp(280px, 25vw, 430px);
    max-width: 100%;
    height: auto;
    margin: 24px 0 28px;
    filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.28));
}

.hero-copy h3 {
    max-width: 560px;
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.35vw, 1.65rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.hero-copy p {
    max-width: 590px;
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.68;
}

.hero-actions {
    margin-top: 28px;
}

.countdown-card {
    margin-top: 24px;
}

.hero-image-wrap {
    transform: none;
    border-radius: 32px;
}

.hero-image-wrap img {
    height: 470px;
}

.floating-card-bottom {
    right: -28px;
    bottom: 46px;
    max-width: 260px;
    padding: 20px 22px;
}

.floating-card-bottom span {
    font-size: 0.72rem;
}

.floating-card-bottom strong {
    max-width: 220px;
    font-size: 1.18rem;
    line-height: 1.08;
}

@media (max-width: 1366px) {
    .hero {
        min-height: 720px;
        padding-top: 112px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
        gap: 54px;
        max-width: 1100px;
    }

    .hero-copy > img {
        width: clamp(260px, 24vw, 360px);
        margin: 18px 0 24px;
    }

    .hero-copy h3 {
        max-width: 500px;
        font-size: clamp(1.12rem, 1.25vw, 1.45rem);
    }

    .hero-copy p {
        max-width: 540px;
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .hero-image-wrap img {
        height: 410px;
    }

    .floating-card-bottom {
        right: -10px;
        bottom: 34px;
    }
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-copy > img {
        width: min(100%, 360px);
        margin: 18px 0 24px;
    }

    .hero-copy h3 {
        font-size: clamp(1.25rem, 5vw, 1.7rem);
    }

    .hero-image-wrap img {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .hero {
        padding-top: 112px;
    }

    .hero-copy > img {
        width: min(100%, 300px);
        margin: 16px 0 22px;
    }

    .hero-copy h3 {
        font-size: 1.28rem;
        line-height: 1.22;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-image-wrap img {
        height: 260px;
    }

    .floating-card-bottom {
        right: 12px;
        bottom: 12px;
        max-width: 180px;
    }
}

/* Hero com logo em destaque - ajuste fino */

.hero {
    min-height: 740px;
    padding: 118px 0 64px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1fr);
    gap: 70px;
    align-items: center;
    max-width: 1180px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-copy > img {
    width: clamp(300px, 20vw, 390px);
    max-width: 100%;
    height: auto;
    margin: 18px 0 34px;
    filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.26));
}

.hero-copy h3 {
    max-width: 570px;
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.45vw, 1.75rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 610px;
    margin-top: 22px;
    font-size: 1.03rem;
    line-height: 1.66;
}

.hero-image-wrap {
    transform: none;
    border-radius: 30px;
}

.hero-image-wrap img {
    height: 450px;
}

.floating-card-bottom {
    right: -28px;
    bottom: 36px;
    max-width: 280px;
    padding: 20px 22px;
}

@media (max-width: 1366px) {
    .hero {
        min-height: 700px;
        padding-top: 108px;
        padding-bottom: 56px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
        gap: 54px;
        max-width: 1080px;
    }

    .hero-copy > img {
        width: clamp(500px, 22vw, 340px);
        margin: 14px 0 28px;
    }

    .hero-copy h3 {
        max-width: 520px;
        font-size: clamp(1.2rem, 1.35vw, 1.5rem);
    }

    .hero-copy p {
        max-width: 540px;
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .hero-image-wrap img {
        height: 390px;
    }
}

@media (max-width: 980px) {
    .hero {
        padding-top: 118px;
        padding-bottom: 48px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-copy {
        align-items: flex-start;
    }

    .hero-copy > img {
        width: min(78vw, 330px);
        margin: 18px auto 34px;
        align-self: center;
    }

    .hero-copy h3 {
        max-width: 100%;
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        line-height: 1.18;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .countdown-card {
        width: 100%;
    }

    .hero-metrics {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-image-wrap img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .hero {
        padding-top: 112px;
    }

    .hero-copy > img {
        width: min(80vw, 280px);
        margin-bottom: 30px;
    }

    .hero-copy h3 {
        font-size: 1.35rem;
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero-image-wrap img {
        height: 260px;
    }
}

/* Hero - logo protagonista ajustada */

.hero {
    min-height: calc(100svh - var(--header-height));
    padding: 118px 0 58px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1fr);
    gap: 68px;
    align-items: center;
    max-width: 1180px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-logo-main {
    width: clamp(280px, 18vw, 360px);
    max-width: 100%;
    height: auto;
    margin: 18px 0 34px;
    filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.26));
}

.hero-copy h3 {
    max-width: 560px;
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.45vw, 1.7rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 590px;
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.62;
}

.hero-actions {
    margin-top: 26px;
}

.countdown-card {
    margin-top: 22px;
}

.hero-metrics {
    margin-top: 26px;
}

.hero-image-wrap {
    transform: none;
    border-radius: 30px;
}

.hero-image-wrap img {
    height: 430px;
}

.floating-card-bottom {
    right: -22px;
    bottom: 34px;
    max-width: 270px;
    padding: 20px 22px;
}

@media (max-width: 1366px) {
    .hero {
        min-height: 700px;
        padding-top: 106px;
        padding-bottom: 52px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
        gap: 52px;
        max-width: 1080px;
    }

    .hero-logo-main {
        width: clamp(250px, 20vw, 320px);
        margin: 12px 0 28px;
    }

    .hero-copy h3 {
        max-width: 520px;
        font-size: clamp(1.22rem, 1.35vw, 1.5rem);
    }

    .hero-copy p {
        max-width: 540px;
        font-size: 0.98rem;
    }

    .hero-image-wrap img {
        height: 390px;
    }
}

@media (max-width: 980px) {
    .hero {
        padding-top: 112px;
        padding-bottom: 48px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-logo-main {
        width: min(74vw, 310px);
        margin: 18px auto 34px;
        align-self: center;
    }

    .hero-copy h3 {
        max-width: 100%;
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        line-height: 1.18;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 260px;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .countdown-card {
        width: 100%;
    }

    .hero-metrics {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-image-wrap img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .hero-logo-main {
        width: min(76vw, 270px);
        margin-bottom: 32px;
    }

    .hero-copy h3 {
        font-size: 1.35rem;
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero-image-wrap img {
        height: 260px;
    }
}

@media (min-width: 981px) {
    .hero-metrics div {
        padding: 18px 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.035);
    }

    .hero-metrics {
        gap: 14px;
        max-width: 560px;
    }
}

.hero-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-card-info {
    display: grid;
    gap: 18px;
    width: 100%;
}

.hero-card .countdown-card {
    width: min(100%, 430px);
    margin-top: 0;
}

.hero-card .hero-metrics {
    width: 100%;
    max-width: 560px;
    margin-top: 0;
}

@media (min-width: 981px) {
    .hero-card .hero-metrics div {
        padding: 16px 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.035);
    }
}

@media (max-width: 980px) {
    .hero-card {
        gap: 20px;
    }

    .hero-card-info {
        gap: 16px;
    }

    .hero-card .countdown-card {
        width: 100%;
    }

    .hero-card .hero-metrics {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .hero-card .hero-metrics {
        gap: 10px;
    }

    .hero-card .hero-metrics div {
        padding: 14px 10px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.045);
    }
}

.hero-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-image-wrap {
    position: relative;
    z-index: 1;
}

.hero-card-info {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    padding: 0 12px;
    display: grid;
    gap: 16px;
}

.hero-card .countdown-card {
    width: min(100%, 420px);
    margin: 0 auto;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-card .hero-metrics {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.hero-card-info {
    position: relative;
    z-index: 2;
    margin-top: -28px;
    padding: 0 28px;
    display: grid;
    gap: 18px;
}

.hero-card .countdown-card {
    width: min(100%, 430px);
    margin: 0 auto;
}

.hero-card .hero-metrics {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.hero-card .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-card .hero-metrics div {
    min-height: 92px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
    .hero-card-info {
        margin-top: 18px;
        padding: 0;
    }

    .hero-card .countdown-card,
    .hero-card .hero-metrics {
        width: 100%;
        max-width: 100%;
    }
}

.hero-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-card-info {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
    margin-top: -24px;
    padding: 0 34px;
}

.hero-card .countdown-card {
    width: min(100%, 400px);
    margin: 0 auto;
    background: rgba(38, 50, 72, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.hero-card .hero-metrics {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    gap: 14px;
}

.hero-card .hero-metrics div {
    min-height: 92px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
    .hero-card-info {
        margin-top: 20px;
        padding: 0;
        gap: 18px;
    }

    .hero-card .countdown-card,
    .hero-card .hero-metrics {
        width: 100%;
        max-width: 100%;
    }

    .hero-card .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .hero-card-info {
        margin-top: 18px;
    }

    .hero-card .hero-metrics {
        gap: 10px;
    }

    .hero-card .hero-metrics div {
        min-height: 84px;
        padding: 14px 10px;
    }
}

.hero-grid {
    align-items: center;
}

.hero-card {
    margin-top: 24px;
}

.hero-card-info {
    margin-top: -22px;
    padding: 0 42px;
}

.hero-card .countdown-card {
    width: min(100%, 380px);
}

.hero-card .hero-metrics {
    max-width: 520px;
}

.hero-card .hero-metrics div {
    min-height: 86px;
    padding: 15px 18px;
}

.hero-card-info {
    gap: 14px;
}

.hero-card .hero-metrics div {
    min-height: 78px;
    padding: 14px 16px;
}

.hero-copy .eyebrow {
    align-self: flex-start;
}

.hero-logo-main,
.hero-copy > img {
    align-self: center;
    margin-top: 28px;
    margin-bottom: 42px;
}

@media (max-width: 575px) {
    .hero-actions {
        width: 100%;
        max-width: 260px;
        gap: 14px;
        margin-top: 28px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 54px;
    }
}

@media (min-width: 420px) and (max-width: 980px) {
    .hero-actions {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: auto;
        flex: 1;
        min-height: 54px;
        padding-inline: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 419px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 270px;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .suggestion-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .suggestion-links a {
        min-height: 72px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 8px;
        padding: 12px;
    }

    .suggestion-links strong {
        font-size: 0.88rem;
        line-height: 1.2;
    }

    .suggestion-links em {
        width: fit-content;
        min-height: 24px;
        padding: 0 9px;
        font-size: 0.62rem;
    }
}

@media (max-width: 389px) {
    .suggestion-links {
        grid-template-columns: 1fr;
    }

    .suggestion-links a {
        min-height: 58px;
        grid-template-columns: 1fr auto;
        align-content: initial;
    }
}

@media (max-width: 575px) {
    .suggestion-category-card {
        padding: 22px 18px;
    }

    .suggestion-category-head {
        margin-bottom: 18px;
    }
}

/* Vídeo institucional */

.video-section {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 88px;
    background:
        radial-gradient(circle at 16% 24%, rgba(16, 86, 165, 0.13), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(243, 111, 33, 0.16), transparent 28%),
        linear-gradient(180deg, #fbf8f1 0%, #efe5d6 100%);
}

.video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at 50% 35%, #000, transparent 76%);
}

.video-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    max-width: 1080px;
}

.video-copy {
    max-width: 980px;
}

.video-copy h2 {
    max-width: 920px;
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.35vw, 2.55rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.video-copy p {
    max-width: 980px;
    margin: 16px 0 0;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.6;
}

.video-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 28px;
    background: #07111f;
    box-shadow: 0 28px 80px rgba(7, 17, 31, 0.16);
}

.video-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.video-card video,
.video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #07111f;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-section {
        padding-top: 54px;
        padding-bottom: 64px;
    }

    .video-grid {
        width: min(100% - 28px, var(--container));
        gap: 22px;
    }

    .video-copy h2 {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
    }

    .video-copy p {
        font-size: 0.95rem;
    }

    .video-card {
        border-radius: 22px;
    }
}

/* =========================================================
   HOSPEDAGEM - BLOCO NOVO (ISOLADO)
   Inserir sem alterar o restante da página
========================================================= */

.lodging-section {
    position: relative;
    overflow: hidden;
    padding-top: 88px;
    padding-bottom: 88px;
    background:
        radial-gradient(circle at 16% 20%, rgba(16, 86, 165, 0.10), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(243, 111, 33, 0.12), transparent 26%),
        linear-gradient(180deg, #fffaf3 0%, #efe5d8 100%);
}

.lodging-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at 50% 35%, #000, transparent 76%);
}

.lodging-section .container {
    position: relative;
    z-index: 1;
}

/* ----------------------------- */
/* Hotel oficial */
/* ----------------------------- */

.lodging-official {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: center;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(246, 196, 68, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.10);
}

.lodging-official-copy {
    max-width: 560px;
}

.lodging-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 18px;
    padding: 0 14px;
    border-radius: 999px;
    color: #07111f;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    box-shadow: 0 12px 28px rgba(243, 111, 33, 0.20);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lodging-official-copy h2,
.lodging-alt-head h2,
.lodging-card-body h3 {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.045em;
}

.lodging-official-copy h2,
.lodging-alt-head h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1.02;
}

.lodging-official-copy p,
.lodging-alt-head p,
.lodging-card-body p {
    margin: 0;
    color: #4f5f73;
    font-size: 1rem;
    line-height: 1.72;
}

.lodging-official-copy p + p {
    margin-top: 16px;
}

.lodging-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.lodging-official-media {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(7, 17, 31, 0.16);
    display: flex;
    /*align-items: center;
    justify-content: center;
    background: #fff;*/
}

.lodging-official-media::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 1;
    height: 5px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.lodging-official-media img {
    width: 100%;
    /*height: 100%;
    min-height: 420px;*/
    height: auto;
    object-fit: contain;
}

/* ----------------------------- */
/* Alternativas */
/* ----------------------------- */

.lodging-alt-head {
    max-width: 860px;
    margin: 54px 0 28px;
}

.lodging-alt-head p {
    margin-top: 16px;
    max-width: 760px;
}

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

.lodging-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 60px rgba(7, 17, 31, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lodging-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

.lodging-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 111, 33, 0.22);
    box-shadow: 0 30px 80px rgba(7, 17, 31, 0.13);
}

.lodging-card-media {
    position: relative;
    overflow: hidden;
}

.lodging-card-media img {
    width: 100%;
    /*height: 260px;*/
    object-fit: cover;
    transition: transform 0.35s ease;
}

.lodging-card:hover .lodging-card-media img {
    transform: scale(1.03);
}

.lodging-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px 24px 24px;
}

.lodging-card-body h3 {
    font-size: 1.7rem;
    line-height: 1.02;
}

.lodging-card-body p {
    margin-top: 14px;
}

.lodging-link {
    margin-top: auto;
    align-self: flex-start;
    min-height: 50px;
    padding-inline: 20px;
    color: var(--color-ink);
    border: 1px solid rgba(7, 17, 31, 0.10);
    background: /*rgba(255, 255, 255, 0.72);*/
    linear-gradient(135deg, var(--color-yellow), var(--color-orange));
}

.lodging-link:hover {
    color: var(--color-ink);
    border-color: rgba(243, 111, 33, 0.22);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 28px rgba(7, 17, 31, 0.10);
}

/* ----------------------------- */
/* Responsivo */
/* ----------------------------- */

@media (max-width: 980px) {
    .lodging-official,
    .lodging-alt-grid {
        grid-template-columns: 1fr;
    }

    .lodging-official {
        gap: 24px;
    }

    .lodging-official-media img {
        min-height: 320px;
    }

    .lodging-alt-head {
        margin-top: 42px;
    }
}

@media (max-width: 720px) {
    .lodging-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .lodging-official {
        padding: 24px 20px;
        border-radius: 28px;
    }

    .lodging-official-copy h2,
    .lodging-alt-head h2 {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }

    .lodging-official-media,
    .lodging-card {
        border-radius: 24px;
    }

    .lodging-official-media img {
        min-height: 250px;
    }

    .lodging-card-media img {
        height: 220px;
    }

    .lodging-card-body {
        padding: 22px 18px 20px;
    }

    .lodging-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .lodging-official-copy h2,
    .lodging-alt-head h2 {
        font-size: clamp(1.7rem, 9vw, 2.2rem);
    }

    .lodging-card-body h3 {
        font-size: 1.42rem;
    }

    .lodging-official-media img {
        min-height: 220px;
    }

    .lodging-card-media img {
        height: 200px;
    }
}

/* ============================= */
/* INSCRIÇÕES - IFRAME */
/* ============================= */

.cta-form-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.cta-form-wrapper iframe {
    width: 100%;
    height: 700px;
    border: 0;
    scrollbar-width: none;
}

.cta-form-wrapper iframe::-webkit-scrollbar {
    display: none;
}

/* ajuste responsivo */

@media (max-width: 980px) {
    .cta-form-wrapper {
        height: 650px;
    }
}

@media (max-width: 575px) {
    .cta-form-wrapper {
        height: 900px;
    }
}
