/* ============================================================
   Festa Nacional do Peixe — Tramandaí/RS
   CSS Principal — v3.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* ─── Variáveis ─────────────────────────────────────────────── */
:root {
    /* Paleta azul/oceano — usada como --c-* nos templates */
    --c-950: #031c2e;
    --c-900: #0a2a45;
    --c-800: #0e3d63;
    --c-700: #165080;
    --c-600: #1a6aad;
    --c-500: #2085d8;
    --c-400: #3ba0f0;
    --c-300: #76c4ff;
    --c-200: #b6deff;
    --c-100: #dff0ff;
    --c-50:  #f0f8ff;

    /* Aliases longos (usados em algumas views e inline styles) */
    --ocean-950: var(--c-950);
    --ocean-900: var(--c-900);
    --ocean-800: var(--c-800);
    --ocean-700: var(--c-700);
    --ocean-600: var(--c-600);
    --ocean-500: var(--c-500);
    --ocean-400: var(--c-400);
    --ocean-300: var(--c-300);
    --ocean-200: var(--c-200);
    --ocean-100: var(--c-100);
    --ocean-50:  var(--c-50);

    /* Paleta dourada — usada como --g-* nos templates */
    --g-600: #b45309;
    --g-500: #d97706;
    --g-400: #f59e0b;
    --g-300: #fcd34d;
    --g-200: #fde68a;

    /* Aliases longos */
    --gold-600: var(--g-600);
    --gold-500: var(--g-500);
    --gold-400: var(--g-400);
    --gold-300: var(--g-300);
    --gold-200: var(--g-200);

    /* Paleta neutra — usada como --n-* nos templates */
    --n-950: #0c0f12;
    --n-900: #111418;
    --n-800: #1e2329;
    --n-700: #2d333d;
    --n-600: #404856;
    --n-500: #6b7585;
    --n-400: #9aa3b2;
    --n-300: #bcc3cf;
    --n-200: #dde2e9;
    --n-100: #f1f4f8;
    --n-50:  #f8f9fc;

    /* Aliases longos */
    --gray-950: var(--n-950);
    --gray-900: var(--n-900);
    --gray-800: var(--n-800);
    --gray-700: var(--n-700);
    --gray-600: var(--n-600);
    --gray-500: var(--n-500);
    --gray-400: var(--n-400);
    --gray-300: var(--n-300);
    --gray-200: var(--n-200);
    --gray-100: var(--n-100);
    --gray-50:  var(--n-50);

    /* Semânticos */
    --white:       #ffffff;
    --primary:     var(--c-600);
    --primary-h:   var(--c-700);
    --accent:      var(--g-400);
    --accent-h:    var(--g-500);
    --bg:          #ffffff;
    --bg-alt:      var(--n-50);
    --text:        var(--n-900);
    --text-muted:  var(--n-500);
    --muted:       var(--n-500);   /* alias curto usado nos templates */
    --border:      var(--n-200);
    --success:     #16a34a;
    --error:       #dc2626;

    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Layout */
    --navbar-h:  72px;
    --container: 1280px;

    /* Bordas */
    --radius-sm: 0.5rem;
    --radius:    1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow:    0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.10);

    /* Transições */
    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
    --ease:       cubic-bezier(0.4,0,0.2,1);

    /* Espaçamentos */
    --sp-1:  0.25rem;
    --sp-2:  0.5rem;
    --sp-3:  0.75rem;
    --sp-4:  1rem;
    --sp-5:  1.25rem;
    --sp-6:  1.5rem;
    --sp-8:  2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;

    /* Aliases space (compatibilidade) */
    --space-1:  var(--sp-1);
    --space-2:  var(--sp-2);
    --space-3:  var(--sp-3);
    --space-4:  var(--sp-4);
    --space-5:  var(--sp-5);
    --space-6:  var(--sp-6);
    --space-8:  var(--sp-8);
    --space-10: var(--sp-10);
    --space-12: var(--sp-12);
    --space-16: var(--sp-16);
    --space-20: var(--sp-20);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Utilitários ────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.section {
    padding: var(--sp-16) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--c-900);
    margin-bottom: var(--sp-2);
}

.section-title em {
    font-style: italic;
    color: var(--g-500);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--sp-12);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-subtitle {
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--c-100);
    color: var(--c-700);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: var(--sp-1) var(--sp-3);
    border-radius: 999px;
    margin-bottom: var(--sp-3);
    border: 1px solid var(--c-200);
}

.badge--gold {
    background: var(--g-200);
    color: var(--g-600);
    border-color: var(--g-300);
}

/* ─── Botões ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.925rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26,106,173,.4);
}
.btn--primary:hover {
    background: var(--primary-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,106,173,.5);
}

.btn--gold {
    background: var(--g-400);
    color: var(--n-950);
    box-shadow: 0 4px 14px rgba(245,158,11,.4);
    border-color: transparent;
}
.btn--gold:hover {
    background: var(--g-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,.5);
}

.btn--outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--ghost {
    color: var(--primary);
    background: transparent;
}
.btn--ghost:hover {
    background: var(--c-100);
    color: var(--c-700);
}

.btn--sm  { padding: 0.5rem 1rem;  font-size: 0.83rem; }
.btn--lg  { padding: 1rem 2rem;    font-size: 1.05rem; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    background: rgba(10,42,69,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: var(--c-900);
    box-shadow: var(--shadow-lg);
}

.navbar__container {
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-6);
}

.navbar__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar__logo {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Desktop: nav fixo centralizado na mesma faixa do header */
.navbar__nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: var(--navbar-h);
    z-index: 1001;
    pointer-events: auto;
}

.navbar__link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.45rem 0.65rem;
    color: rgba(255,255,255,.85);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.navbar__link i {
    font-size: 0.75rem;
    opacity: .75;
}

.navbar__link:hover,
.navbar__link.active {
    background: rgba(255,255,255,.1);
    color: var(--white);
}

.navbar__radio {
    background: var(--g-400) !important;
    color: var(--n-950) !important;
    border-radius: 999px;
    font-weight: 600;
}
.navbar__radio:hover {
    background: var(--g-300) !important;
    color: var(--n-950) !important;
}

.navbar__social {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    flex-shrink: 0;
}

.navbar__social a {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    transition: color var(--transition), transform var(--transition);
}
.navbar__social a:hover {
    color: var(--white);
    transform: scale(1.15);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
    flex-shrink: 0;
    cursor: pointer;
}
.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ─── BANNER BAR ─────────────────────────────────────────────── */
.banner-bar {
    position: relative;
    overflow: hidden;
    background: var(--n-900);
    margin-top: var(--navbar-h);
}

.banner-bar__track {
    position: relative;
    width: 100%;
}

.banner-bar__slide {
    display: none;
}
.banner-bar__slide.active {
    display: block;
}

.banner-bar__img-link {
    display: block;
}

.banner-bar__img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.banner-bar__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.45);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    transition: background var(--transition);
    border: none;
    cursor: pointer;
}
.banner-bar__arrow:hover { background: rgba(0,0,0,.7); }
.banner-bar__arrow--prev { left: var(--sp-4); }
.banner-bar__arrow--next { right: var(--sp-4); }

.banner-bar__dots {
    position: absolute;
    bottom: var(--sp-3);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.banner-bar__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.banner-bar__dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--navbar-h);
}

/* Quando há banner antes do hero, não precisa de margin-top extra */
.banner-bar + main .hero {
    padding-top: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-950) 0%, var(--c-800) 60%, var(--c-700) 100%);
    z-index: 0;
}

/* Slideshow de fundo */
.hero-mosaic {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-mosaic__cell {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.30) saturate(.7);
    opacity: 0;
    animation: heroSlide 30s ease-in-out infinite;
}

@keyframes heroSlide {
    0%      { opacity: 0;  transform: scale(1);    }
    1.67%   { opacity: 1;  transform: scale(1);    }
    16.67%  { opacity: 1;  transform: scale(1.05); }
    18.33%  { opacity: 0;  transform: scale(1.05); }
    100%    { opacity: 0;  transform: scale(1.05); }
}

/* Layout interno do hero */
.hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--sp-16) var(--sp-6);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    align-items: center;
}

.hero__container--split {
    grid-template-columns: 1fr 1.3fr;
}

/* Coluna do logo */
.hero__logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__logo-img {
    display: block;
    width: 70%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 16px 48px rgba(42,132,216,.6));
    animation: logoFloat 4s ease-in-out infinite;
    transform-origin: center center;
}

.hero__logo-img--large {
    width: 80%;
    max-width: 420px;
}

@keyframes logoFloat {
    0%   { transform: translateY(0)     scale(1);     filter: drop-shadow(0 16px 48px rgba(42,132,216,.6)); }
    50%  { transform: translateY(-12px) scale(1.03);  filter: drop-shadow(0 28px 56px rgba(42,132,216,.85)); }
    100% { transform: translateY(0)     scale(1);     filter: drop-shadow(0 16px 48px rgba(42,132,216,.6)); }
}

/* Conteúdo textual */
.hero__content {
    color: var(--white);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--g-300);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: var(--sp-2) var(--sp-4);
    border-radius: 999px;
    margin-bottom: var(--sp-6);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: var(--sp-6);
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.hero__title em {
    font-style: italic;
    color: var(--g-400);
    display: block;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    max-width: 480px;
    margin-bottom: var(--sp-8);
    line-height: 1.7;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    color: rgba(255,255,255,.82);
    font-size: 0.88rem;
}

.hero__meta-item i {
    color: var(--g-400);
    font-size: 0.95rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

/* Countdown dentro do hero */
.hero__countdown--inline {
    display: inline-block;
    background: rgba(10,42,69,.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-lg);
    padding: var(--sp-5) var(--sp-6);
    text-align: center;
    color: var(--white);
    margin-top: var(--sp-2);
    margin-bottom: var(--sp-8);
}

.hero__countdown-label {
    font-size: 0.72rem;
    color: var(--g-300);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
    font-weight: 600;
}

.hero__countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--sp-5);
}

.hero__countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__countdown-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--g-400);
}

.hero__countdown-label-unit {
    font-size: 0.62rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
    background: var(--c-600);
    color: var(--white);
    padding: var(--sp-8) 0;
}

.stats-bar__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
    display: flex;
    justify-content: center;
    gap: var(--sp-16);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--g-300);
    display: block;
    line-height: 1;
}

.stat-item__label {
    font-size: 0.83rem;
    color: rgba(255,255,255,.78);
    margin-top: var(--sp-2);
}

/* ─── SEÇÃO OCEAN ────────────────────────────────────────────── */
.section--ocean {
    background: linear-gradient(180deg, var(--c-900) 0%, var(--c-950) 100%);
    color: var(--white);
    position: relative;
}

.section--ocean .section-title {
    color: var(--white);
}

.section--ocean .section-subtitle {
    color: rgba(255,255,255,.7);
}

/* ─── CARDS EVENTOS ──────────────────────────────────────────── */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.card-evento {
    background: var(--c-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.card-evento:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-evento__img {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    background: var(--c-800);
}

.card-evento__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-evento:hover .card-evento__img img {
    transform: scale(1.07);
}

.card-evento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,28,46,.9) 0%, transparent 55%);
    pointer-events: none;
}

.card-evento__body {
    padding: var(--sp-5);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.card-evento__date {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--g-400);
    color: var(--n-950);
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--sp-1) var(--sp-3);
    border-radius: 999px;
    align-self: flex-start;
}

.card-evento__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
}

.card-evento__local {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--g-300);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 3px 10px;
    align-self: flex-start;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-evento__local i {
    flex-shrink: 0;
    font-size: 0.72rem;
    color: var(--g-400);
}

.card-evento__info {
    font-size: 0.82rem;
    color: var(--c-300);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.card-evento__ticket {
    margin-top: auto;
    padding-top: var(--sp-3);
}

/* ─── CARDS NOTÍCIAS ─────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.card-noticia {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    color: inherit;
}

.card-noticia:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-200);
}

.card-noticia__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--n-100);
}

.card-noticia__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-noticia:hover .card-noticia__img img {
    transform: scale(1.06);
}

.card-noticia__body {
    padding: var(--sp-5);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.card-noticia__date {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.card-noticia__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--c-900);
    flex: 1;
}

.card-noticia__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-noticia__footer {
    padding: var(--sp-4) var(--sp-5);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ─── SOBERANAS ──────────────────────────────────────────────── */
.sob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}

.sob-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.sob-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--g-300);
}

.sob-card__foto {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--c-900);
}

.sob-card__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sob-card:hover .sob-card__foto img {
    transform: scale(1.05);
}

.sob-card__body {
    padding: var(--sp-4) var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.sob-card__edicao {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--g-500);
    padding-bottom: var(--sp-2);
    border-bottom: 1px solid var(--border);
}

.sob-card__row {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sob-card__role {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--n-400);
}

.sob-card__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-900);
}

/* ─── LOCAL DA FESTA (home grid) ─────────────────────────────── */
.locais-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.card-local-home {
    display: block;
    background: var(--c-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.06);
    transition: all var(--transition);
    color: var(--white);
}

.card-local-home:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-local-home__img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: var(--c-800);
}

.card-local-home__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-local-home:hover .card-local-home__img img {
    transform: scale(1.07);
}

.card-local-home__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,28,46,.85) 0%, transparent 50%);
}

.card-local-home__body {
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.card-local-home__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-local-home__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
}

.card-local-home__link {
    font-size: 0.83rem;
    color: var(--g-300);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-2);
    transition: color var(--transition);
}

.card-local-home:hover .card-local-home__link {
    color: var(--g-200);
}

/* ─── CARDS VÍDEOS ───────────────────────────────────────────── */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.card-video {
    background: var(--n-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.card-video:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-video__thumb {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--n-800);
}

.card-video__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-video:hover .card-video__thumb img {
    transform: scale(1.04);
}

.card-video__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    transition: background var(--transition);
}

.card-video__thumb:hover .card-video__play {
    background: rgba(0,0,0,.55);
}

.card-video__play-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--c-600);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.card-video__thumb:hover .card-video__play-icon {
    transform: scale(1.1);
}

.card-video__body {
    padding: var(--sp-5);
}

.card-video__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
}

/* ─── PONTOS COMERCIAIS ──────────────────────────────────────── */
.pontos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.card-ponto {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.card-ponto:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--c-200);
}

.card-ponto__img {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--n-100);
}

.card-ponto__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-ponto:hover .card-ponto__img img {
    transform: scale(1.05);
}

.card-ponto__body {
    padding: var(--sp-5);
}

.card-ponto__type {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--c-600);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: var(--sp-2);
}

.card-ponto__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-900);
    margin-bottom: var(--sp-3);
}

.card-ponto__info {
    font-size: 0.84rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.card-ponto__info i {
    color: var(--c-500);
    width: 16px;
    flex-shrink: 0;
}

/* ─── GALERIA ─────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-3);
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
    background: var(--n-100);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(3,28,46,.55);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

/* ─── CARROSSEL DE NOTÍCIA ────────────────────────────────────── */
.ncar {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--n-950);
    user-select: none;
}

.ncar__track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.ncar__slide {
    display: none;
    position: absolute;
    inset: 0;
    cursor: zoom-in;
}
.ncar__slide.active { display: block; }

.ncar__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ncar__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
    color: #fff;
    font-size: .82rem;
    padding: .75rem 1rem .5rem;
}

.ncar__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: background var(--transition);
    z-index: 2;
}
.ncar__btn:hover { background: rgba(0,0,0,.85); }
.ncar__btn--prev { left: .75rem; }
.ncar__btn--next { right: .75rem; }

.ncar__dots {
    position: absolute;
    bottom: .65rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.ncar__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}
.ncar__dot.active {
    background: var(--white);
    width: 22px;
    border-radius: 4px;
}

.ncar__counter {
    position: absolute;
    top: .65rem;
    right: .75rem;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    z-index: 2;
}

/* ─── GRADE DIÁRIA HOME ─────────────────────────────────────── */
.grade-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.grade-home-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    border: 1px solid var(--n-100);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.grade-home-card__hd {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.1rem;
    background: var(--ocean-700);
    color: #fff;
}

.grade-home-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,.15);
    border-radius: 8px;
    padding: .35rem .7rem;
    min-width: 46px;
    flex-shrink: 0;
}
.grade-home-card__num  { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.grade-home-card__mes  { font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; opacity: .85; }
.grade-home-card__dia  { font-size: .95rem; font-weight: 700; }
.grade-home-card__qtd  { font-size: .72rem; opacity: .8; margin-top: .1rem; }
.grade-home-card__star {
    margin-left: auto;
    color: var(--gold-300);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.grade-home-list {
    list-style: none;
    padding: .6rem .9rem .9rem;
    margin: 0;
    flex: 1;
}

.grade-home-item {
    display: grid;
    grid-template-columns: 36px 10px 1fr;
    gap: 0 .5rem;
    align-items: baseline;
    padding: .28rem 0;
    border-bottom: 1px solid var(--n-50);
}
.grade-home-item:last-child { border-bottom: none; }

.grade-home-item__hora {
    font-size: .72rem;
    font-weight: 700;
    color: var(--ocean-600);
    text-align: right;
    white-space: nowrap;
}
.grade-home-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}
.grade-home-item__txt {
    font-size: .78rem;
    color: var(--text-main);
    line-height: 1.35;
}

/* Destaque nacional */
.grade-home-item--nac .grade-home-item__txt { font-weight: 700; color: var(--ocean-900); }
.grade-home-item--nac .grade-home-item__hora { color: #b45309; }

/* Botão "mais" */
.grade-home-item--mais .grade-home-item__txt a {
    font-size: .75rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.grade-home-item--mais .grade-home-item__txt a:hover { text-decoration: underline; }

/* Badge dots */
.badge--nacional    { background: #f59e0b; }
.badge--show        { background: var(--ocean-400); }
.badge--apresentacao{ background: #10b981; }
.badge--abertura    { background: #f97316; }
.badge--esporte     { background: #8b5cf6; }
.badge--outro       { background: var(--n-400); }

@media (max-width: 900px) {
    .grade-home-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .grade-home-grid { grid-template-columns: 1fr; }
}

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: var(--sp-5);
    right: var(--sp-5);
    color: var(--white);
    font-size: 1.3rem;
    background: rgba(255,255,255,.14);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,.28); }

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 1.3rem;
    background: rgba(255,255,255,.14);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    border: none;
}
.lightbox__nav:hover    { background: rgba(255,255,255,.28); }
.lightbox__nav--prev    { left: var(--sp-5); }
.lightbox__nav--next    { right: var(--sp-5); }

/* ─── SPONSORS BAR ───────────────────────────────────────────── */
.sponsors-bar {
    background: var(--n-50);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-6) 0;
}

.sponsors-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-8);
    justify-content: center;
}

.sponsors-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.sponsors-bar__group {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.sponsors-bar__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--n-400);
    white-space: nowrap;
}

.sponsors-bar__logos {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    flex-wrap: wrap;
}

.sponsors-bar__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition);
}

.sponsors-bar__logo:hover {
    opacity: .75;
}

.sponsors-bar__logo img {
    max-height: 48px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    display: block;
}

.sponsors-bar__logo span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--n-600);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: var(--c-950);
    color: rgba(255,255,255,.8);
}

.footer__body {
    padding: var(--sp-16) 0 var(--sp-8);
}

.footer__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-12);
}

.footer__brand-logo {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: var(--sp-4);
    opacity: .9;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.footer__brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 700;
}

.footer__brand p {
    font-size: 0.78rem;
    color: var(--c-400);
}

.footer__tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: var(--sp-6);
}

.footer__social {
    display: flex;
    gap: var(--sp-3);
}

.footer__social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: var(--sp-5);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,.58);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__address {
    font-style: normal;
    font-size: 0.88rem;
    color: rgba(255,255,255,.6);
    display: flex;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
    line-height: 1.65;
}

.footer__address i {
    color: var(--c-400);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer__email {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.85rem;
    color: var(--c-300);
    margin-bottom: var(--sp-5);
    transition: color var(--transition);
}
.footer__email:hover { color: var(--white); }

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

.footer__badge {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 999px;
}

.footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--sp-6) var(--sp-6) 0;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,.35);
    line-height: 1.9;
}

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
    padding: calc(var(--navbar-h) + var(--sp-12)) 0 var(--sp-12);
    background: linear-gradient(135deg, var(--c-900) 0%, var(--c-700) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59,160,240,.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-6);
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: var(--sp-4);
    margin-top: var(--sp-4);
}

.page-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    max-width: 600px;
}

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 0.82rem;
    color: rgba(255,255,255,.6);
}

.breadcrumb a {
    color: var(--c-300);
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--white); }

.breadcrumb__sep {
    opacity: .4;
}

/* ─── PAGINAÇÃO ──────────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-12);
}

.pagination__btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    color: var(--c-700);
    border: 1px solid var(--border);
    background: var(--white);
    text-decoration: none;
}

.pagination__btn:hover,
.pagination__btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ─── FILTROS / TABS ─────────────────────────────────────────── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-8);
}

.filter-tab {
    padding: var(--sp-2) var(--sp-5);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-700);
    background: var(--c-50);
    border: 2px solid var(--c-200);
    transition: all var(--transition);
    cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ─── ARTIGO / DETALHE NOTÍCIA ───────────────────────────────── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--sp-12);
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--sp-12) var(--sp-6);
}

.article__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: var(--sp-8);
    box-shadow: var(--shadow);
    display: block;
}

.article__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--c-950);
    margin-bottom: var(--sp-4);
}

.article__meta {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-6);
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
}

.article__meta i { color: var(--c-500); }

.article__content {
    font-size: 1.03rem;
    line-height: 1.8;
    color: var(--n-800);
}

.article__content p      { margin-bottom: var(--sp-5); }
.article__content h2     { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: var(--sp-8) 0 var(--sp-4); color: var(--c-900); }
.article__content h3     { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin: var(--sp-6) 0 var(--sp-3); color: var(--c-800); }
.article__content img    { border-radius: var(--radius); margin: var(--sp-6) 0; max-width: 100%; }
.article__content ul, .article__content ol { padding-left: 1.5rem; margin-bottom: var(--sp-5); }
.article__content li     { margin-bottom: var(--sp-2); }

.article__share {
    margin-top: var(--sp-10);
    padding-top: var(--sp-8);
    border-top: 2px solid var(--border);
}

.article__share h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-muted);
    margin-bottom: var(--sp-4);
}

.share-buttons {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.share-btn {
    padding: var(--sp-2) var(--sp-4);
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    transition: all var(--transition);
    color: var(--white);
}

.share-btn--whatsapp { background: #25d366; }
.share-btn--facebook { background: #1877f2; }
.share-btn--twitter  { background: #1da1f2; }
.share-btn:hover { opacity: .85; transform: translateY(-2px); }

/* ─── SIDEBAR ────────────────────────────────────────────────── */
.sidebar__widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: var(--sp-6);
    box-shadow: var(--shadow-sm);
}

.sidebar__widget-title {
    padding: var(--sp-4) var(--sp-5);
    background: var(--c-50);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--c-800);
}

.sidebar__related-item {
    display: flex;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    color: inherit;
}

.sidebar__related-item:last-child { border-bottom: none; }
.sidebar__related-item:hover { background: var(--n-50); }

.sidebar__related-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--n-100);
}

.sidebar__related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar__related-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-900);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar__related-date {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-top: var(--sp-2);
}

/* ─── ALERTAS ────────────────────────────────────────────────── */
.alert {
    padding: var(--sp-4) var(--sp-6);
    border-radius: var(--radius);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
}

.alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.alert--error   { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.alert--info    { background: var(--c-50); border: 1px solid var(--c-200); color: var(--c-700); }

/* ─── SCROLL TOP ─────────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: var(--sp-6);
    right: var(--sp-6);
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    transform: translateY(10px);
    border: none;
    font-size: 0.9rem;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-h);
    transform: translateY(-2px);
}

/* ─── ANIMAÇÕES ──────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── WAVE DIVIDER ───────────────────────────────────────────── */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.wave-divider svg { display: block; }

/* ─── CARD GENÉRICO (pontos.php) ─────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* ─── TABLE SCROLL (tabelas em mobile) ───────────────────────── */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll table {
    min-width: 480px;
}

/* ─── PONTO ROW (pontos.php) ─────────────────────────────────── */
.ponto-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.ponto-row__logo {
    width: 140px;
    flex-shrink: 0;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   Breakpoints:  1200  1024  768  640  480  375
   ═══════════════════════════════════════════════════════════════ */

/* ── 1200px – desktop médio ─────────────────────────────────── */
@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 1024px – tablet landscape ──────────────────────────────── */
@media (max-width: 1024px) {
    /* Hero: empilha logo + conteúdo, oculta logo */
    .hero__container--split { grid-template-columns: 1fr; }
    .hero__logo-col         { display: none; }

    /* Grids: 3 → 2 colunas */
    .cards-grid,
    .eventos-grid,
    .videos-grid    { grid-template-columns: repeat(2, 1fr); }

    .locais-home-grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer: 3 → 2 colunas */
    .footer__container { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
    .footer__col:first-child { grid-column: 1 / -1; }

    /* Artigo: remove sidebar */
    .article-layout { grid-template-columns: 1fr; }
    .article-layout aside { display: none; }
}

/* ── 768px – tablet portrait / smartphone grande ────────────── */
@media (max-width: 768px) {
    :root { --navbar-h: 60px; }

    /* — Navbar — */
    .navbar__nav {
        display: none;
        position: fixed;
        top: var(--navbar-h);
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        transform: none;
        background: var(--c-950);
        padding: var(--sp-4) var(--sp-4) var(--sp-8);
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        flex: none;
        gap: 2px;
        box-shadow: var(--shadow-xl);
        border-top: 1px solid rgba(255,255,255,.07);
        z-index: 2000;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .navbar__nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .navbar__link      { width: 100%; padding: var(--sp-3) var(--sp-4); font-size: .9rem; border-radius: var(--radius); }
    .navbar__toggle    { display: flex; }
    .navbar__social    { display: none; }

    /* — Hero — */
    .hero {
        min-height: auto;
        padding-top: var(--navbar-h);
        padding-bottom: var(--sp-12);
    }
    .hero__container { padding: var(--sp-10) var(--sp-4); }
    .hero__title     { font-size: clamp(1.75rem, 6vw, 2.4rem); }
    .hero__subtitle  { font-size: .98rem; max-width: 100%; }
    .hero__meta      { gap: var(--sp-3); }
    .hero__meta-item { font-size: .82rem; }
    .hero__actions   { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__countdown--inline { width: 100%; }

    /* — Stats bar — */
    .stats-bar__container {
        gap: var(--sp-6);
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    .stat-item__num  { font-size: 2rem; }

    /* — Grids: 2 → 1 coluna — */
    .cards-grid,
    .eventos-grid,
    .videos-grid,
    .locais-home-grid,
    .pontos-grid    { grid-template-columns: 1fr; }

    /* Soberanas: 4 → 2 colunas */
    .sob-grid { grid-template-columns: repeat(2, 1fr); }

    /* Galeria: 2 colunas */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* — Footer — */
    .footer__container { grid-template-columns: 1fr; }
    .footer__col:first-child { grid-column: auto; }
    .footer__body { padding: var(--sp-12) 0 var(--sp-6); }

    /* — Sponsors bar — */
    .sponsors-bar__inner { flex-direction: column; align-items: center; gap: var(--sp-5); }
    .sponsors-bar__divider { width: 60px; height: 1px; }
    .sponsors-bar__group { flex-direction: column; align-items: center; text-align: center; }

    /* — Banner — */
    .banner-bar__img { max-height: 200px; }

    /* — Seções — */
    .section { padding: var(--sp-12) 0; }
    .section-header { margin-bottom: var(--sp-8); }

    /* — Page hero — */
    .page-hero {
        padding: calc(var(--navbar-h) + var(--sp-8)) 0 var(--sp-8);
    }
    .page-hero__title { font-size: clamp(1.5rem, 6vw, 2rem); margin-top: var(--sp-3); }

    /* — Paginação — */
    .pagination { flex-wrap: wrap; }

    /* — Pontos — */
    .ponto-row { flex-direction: column; }
    .ponto-row__logo { width: 100px; }

    /* — Compartilhar — */
    .share-buttons { flex-wrap: wrap; }
}

/* ── 640px – smartphone padrão ──────────────────────────────── */
@media (max-width: 640px) {
    .container { padding: 0 var(--sp-4); }

    /* Countdown compacto */
    .hero__countdown--inline { padding: var(--sp-4); }
    .hero__countdown-num     { font-size: 1.6rem; }
    .hero__countdown-timer   { gap: var(--sp-4); }

    /* Botões hero menores */
    .hero__actions .btn--lg  { padding: .875rem 1.5rem; font-size: .95rem; }

    /* Stats: 2 colunas fixas */
    .stats-bar__container { gap: var(--sp-4); }
    .stat-item__num       { font-size: 1.75rem; }

    /* Soberanas: 1 coluna */
    .sob-grid { grid-template-columns: 1fr; }

    /* Galeria: 2 colunas pequenas */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }

    /* Footer compacto */
    .footer__brand-logo  { height: 48px; }
    .footer__bottom      { font-size: .73rem; }

    /* Breadcrumb truncado */
    .breadcrumb { flex-wrap: wrap; font-size: .78rem; }

    /* Banner ainda menor */
    .banner-bar__img { max-height: 160px; }

    /* Artigo */
    .article-layout { padding: var(--sp-6) var(--sp-4); }
    .article__title { font-size: 1.4rem; }
    .article__meta  { font-size: .78rem; gap: var(--sp-3); }
}

/* ── 480px – smartphone pequeno ─────────────────────────────── */
@media (max-width: 480px) {
    .section { padding: var(--sp-10) 0; }

    /* Hero */
    .hero__title     { font-size: 1.7rem; }
    .hero__eyebrow   { font-size: .68rem; }
    .hero__meta      { flex-direction: column; gap: var(--sp-2); }

    /* Stats: empilha em 2×2 */
    .stats-bar__container { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
    .stat-item__num  { font-size: 1.6rem; }
    .stat-item__label { font-size: .75rem; }

    /* Galeria: 1 coluna */
    .gallery-grid { grid-template-columns: 1fr; }

    /* Countdown */
    .hero__countdown-num   { font-size: 1.4rem; }
    .hero__countdown-timer { gap: var(--sp-3); }

    /* Filtros */
    .filter-tab { font-size: .8rem; padding: var(--sp-2) var(--sp-3); }

    /* Navbar logo menor */
    .navbar__logo { height: 38px; }

    /* Lightbox nav em baixo */
    .lightbox__nav--prev { left: var(--sp-3); }
    .lightbox__nav--next { right: var(--sp-3); }

    /* Modal soberanas */
    .sob-modal__inner { grid-template-columns: 1fr; }
}

/* ── 375px – iPhone SE / muito pequeno ──────────────────────── */
@media (max-width: 375px) {
    :root { --navbar-h: 56px; }

    .navbar__logo    { height: 34px; }
    .hero__title     { font-size: 1.5rem; }
    .hero__actions .btn { font-size: .85rem; }

    .stats-bar__container { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

    .footer__container { gap: var(--sp-8); }
    .container { padding: 0 var(--sp-3); }
}
