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

:root {
    --gold: #FFC200;
    --gold-light: #FFD54F;
    --gold-dark: #CC9B00;
    --green: #006700;
    --green-light: #008F00;
    --black: #0A0A0A;
    --dark: #151515;
    --dark-card: #2B2B2B;
    --dark-border: rgba(255,194,0,0.15);
    --text-primary: #F5F5F5;
    --text-secondary: #BDBDBD;
    --text-muted: #757575;
    --red-accent: var(--green);
    --container-xl: 1280px;
    --container: 1200px;
    --container-sm: 960px;
    --gutter: 48px;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

[data-lucide] {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
    vertical-align: middle;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--black);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* ── NAV ── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 72px;
    background: rgba(10,10,10,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}
.nav-logo:hover { transform: scale(1.02); }
.nav-logo img { display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    padding: 16px 24px;
    z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    padding: 12px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    border-radius: 4px;
    padding: 12px;
    font-weight: 600;
    margin-top: 8px;
    border: none;
}

/* ── BUTTONS ── */
.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ── SECTIONS SHARED ── */
section { padding: 96px var(--gutter); }
.site-shell {
    width: min(calc(100% - var(--gutter) * 2), var(--container));
    margin: 0 auto;
}
.site-shell-wide {
    width: min(calc(100% - var(--gutter) * 2), var(--container-xl));
    margin: 0 auto;
}
.site-shell-narrow {
    width: min(calc(100% - var(--gutter) * 2), var(--container-sm));
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 40px;
}
@media (min-width: 1200px) and (max-width: 1300px) {
    .section-header { justify-content: flex-start; gap: 60px; }
}
.section-header a {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold-dark);
    transition: border-color 0.2s;
}
.section-header a:hover { border-color: var(--gold); }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 220px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: #000;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,1) 100%),
                linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 40%);
    z-index: 1;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,194,0,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 20% 80%, rgba(0,103,0,0.1) 0%, transparent 60%);
    z-index: 2;
}

.hero-container {
    position: relative;
    min-height: calc(100vh - 340px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-content { position: relative; z-index: 10; max-width: 660px; }
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(38px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 12px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    position: absolute;
    right: 0; bottom: -140px;
    display: flex; gap: 48px;
    z-index: 10;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: 'Roboto Slab', serif;
    font-size: 36px; font-weight: 700;
    color: var(--gold); display: block;
}
.stat-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ── COLAGEM ── */
.collage-section {
    padding: 100px 0;
    background: var(--black);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.collage-grid {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-gallery 60s linear infinite;
    padding: 40px 0 60px; /* Mais espaço vertical para evitar cortes */
}

@keyframes marquee-gallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * (50% + 20px))); }
}

.collage-tile {
    position: relative;
    width: 300px;
    background: linear-gradient(180deg, #f8f4ed 0%, #efe7db 100%);
    padding: 12px 12px 68px;
    border-radius: 4px;
    border: 1px solid rgba(61,49,36,0.10);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: grab;
    flex-shrink: 0;
    margin: 0;
}

.collage-tile img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(61,49,36,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.collage-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #4b3c2d;
    text-align: center;
    letter-spacing: 0.02em;
    text-wrap: balance;
}

/* Inclinações alternadas suaves */
.collage-tile:nth-child(odd) { transform: rotate(-1.4deg); }
.collage-tile:nth-child(even) { transform: rotate(1.8deg); }
.collage-tile:nth-child(3n) { transform: rotate(-2.2deg); }
.collage-tile:nth-child(4n) { transform: rotate(1.2deg); }

.collage-tile:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.06) !important;
    z-index: 50;
    border-color: rgba(255,194,0,0.28);
    box-shadow: 0 28px 60px rgba(0,0,0,0.38);
    cursor: pointer;
}

.collage-grid:hover {
    animation-play-state: paused;
}

.collage-section .section-title,
.collage-section .section-label {
    text-align: center;
    margin-bottom: 8px;
}

.collage-section .section-label {
    justify-content: center;
}



 /* ── CASTING ── */
#casting { background: var(--dark); }
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
}
.artist-card {
    background: var(--dark-card);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.artist-cover-link {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.artist-cover-link img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s;
    filter: grayscale(20%);
}
.artist-cover-link:hover img { transform: scale(1.06); filter: grayscale(0%); }
.artist-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.3s;
}
.artist-cover-link:hover .artist-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(201,168,76,0.1) 100%);
}
.artist-genre { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.artist-name { 
    font-family: 'Roboto Slab', serif; 
    font-size: 18px; 
    font-weight: 700; 
    color: #fff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.artist-btn {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold); color: var(--black);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; padding: 5px 12px;
    border-radius: 2px; text-transform: uppercase;
    opacity: 0; transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s;
}
.artist-cover-link:hover .artist-btn { opacity: 1; transform: translateY(0); }
.artist-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(13,13,13,0.98) 0%, rgba(8,8,8,1) 100%);
    flex: 1;
}
.artist-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
}
.artist-social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--dark-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}
.artist-social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    transform: translateY(-1px);
}
.artist-social-link span,
.artist-social-link svg {
    width: 16px;
    height: 16px;
    display: block;
}
.artist-page-link {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin-top: auto;
}
.artist-page-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ── SOBRE ── */
#sobre {
    background: linear-gradient(rgba(10,10,10,0.94), rgba(10,10,10,0.94)), 
                url('../images/public-animado.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
#sobre > .site-shell,
#buffet-cta > .site-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sobre-image { 
    position: relative; 
    max-width: 440px;
    justify-self: center; /* Centraliza o bloco todo na coluna do grid */
}
.sobre-img-frame {
    width: 100%; 
    aspect-ratio: 4/5;
    background: var(--dark-card);
    border-radius: 4px; overflow: hidden;
    position: relative;
}
.sobre-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sobre-img-frame::after {
    content: '';
    position: absolute; inset: -2px;
    border: 1px solid var(--gold);
    transform: translate(12px, 12px);
    border-radius: 4px; z-index: -1;
}
.sobre-badge {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--gold); color: var(--black);
    padding: 20px; text-align: center; z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.sobre-badge-num { font-family: 'Roboto Slab', serif; font-size: 36px; font-weight: 900; display: block; line-height: 1; }
.sobre-badge-text { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-top: 4px; }
.sobre-text p { color: var(--text-secondary); font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.sobre-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
.service-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px; border: 1px solid var(--dark-border);
    border-radius: 4px; transition: border-color 0.2s;
}
.service-item:hover { border-color: var(--gold); }
.service-icon {
    width: 32px; height: 32px;
    background: rgba(201,168,76,0.1);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 14px;
}
.service-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.service-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── CARNAVAL ── */
#carnaval-cta { 
    background: var(--black); 
    padding: 120px var(--gutter); 
    position: relative;
}
.carnaval-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,194,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.carnaval-card {
    background: #FFFFFF;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    padding: 64px;
    align-items: center;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}
.carnaval-logo { height: 40px; margin-bottom: 32px; display: block; }
.carnaval-card-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.25;
    margin-bottom: 24px;
}
.carnaval-card-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}
.btn-primary-dark {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary-dark:hover { background: var(--green); transform: translateY(-2px); }

.carnaval-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.carnaval-video iframe { width: 100%; height: 100%; border: none; }

@media (max-width: 1024px) {
    .carnaval-card { grid-template-columns: 1fr; gap: 48px; padding: 48px 32px; }
    #carnaval-cta { padding: 80px 24px; }
}

/* ── NOTÍCIAS ── */
#noticias { background: var(--black); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    justify-content: center;
}
@media (min-width: 992px) {
    .news-card.featured {
        grid-column: span 2;
        max-width: 960px;
    }
}
.news-card {
    background: var(--dark-card);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
    width: 100%;
    height: 100%;
}
.news-card:hover { transform: translateY(-3px); }
.news-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    transition: transform 0.4s ease, filter 0.3s ease;
    overflow: hidden;
}
.news-card:hover .news-img {
    filter: brightness(1.1);
}
.news-card.featured .news-img { aspect-ratio: 16/10; }
.news-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.news-title { font-family: 'Roboto Slab', serif; font-weight: 700; line-height: 1.3; color: var(--text-primary); margin-bottom: 8px; }
.news-card.featured .news-title { font-size: 22px; }
.news-card:not(.featured) .news-title { font-size: 16px; }
.news-meta { font-size: 12px; color: var(--text-muted); }

/* ── BUFFET ── */
#buffet-cta {
    background: var(--dark);
    padding: 96px 0 72px;
    overflow: hidden;
}
#buffet-cta > .site-shell {
    margin-bottom: 80px;
}
.buffet-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 480px;
    justify-self: center;
    padding-right: 20px; /* Margem de segurança extra */
}
.buffet-image-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.buffet-image-grid img:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--gold);
}
.buffet-copy .section-desc {
    max-width: 680px;
}
.buffet-label {
    --gold: #c0392b;
}
.buffet-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}
.buffet-desc {
    margin-bottom: 32px;
}
.galeria-grid {
    --diamond-gap: 8px;
    overflow: hidden;
    width: 100%;
    max-height: 500px;
    padding: 44px 0 56px;
}
.galeria-row {
    --cols: 7;
    --losango-size: calc((100vw - ((var(--cols) - 1) * var(--diamond-gap))) / var(--cols));
    display: flex;
    justify-content: center;
    gap: var(--diamond-gap);
    margin: calc(var(--losango-size) * -0.16) 0;
}
.galeria-row.offset {
    --cols: 6;
    --losango-size: calc((100vw - ((var(--cols) - 1) * var(--diamond-gap))) / var(--cols));
    transform: translateX(calc((var(--losango-size) + var(--diamond-gap)) / 2));
}
.losango {
    width: var(--losango-size);
    height: var(--losango-size);
    transform: rotate(45deg);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}
.losango-inner {
    width: 100%;
    height: 100%;
    transform: rotate(-45deg) scale(1.42);
    overflow: hidden;
}
.losango-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: brightness(0.92);
}
.losango:hover .losango-inner img {
    transform: scale(1.06);
    filter: brightness(1);
}

/* ── CONTATO ── */
#contato { padding: 100px 20px; background: var(--black); text-align: left; }
.contato-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.contato-layout > * { min-width: 0; }
.contato-info { text-align: left; }
.contato-info .section-label { justify-content: flex-start; }
.contato-info .section-label::before { display: block; }
.contato-info .contato-desc { text-align: left; margin-bottom: 40px; font-size: 17px; max-width: 460px; width: 100%; color: var(--text-secondary); line-height: 1.7; }
.contato-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact Form */
.contato-form-wrapper { background: var(--dark-card); padding: 48px; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); border: 1px solid var(--dark-border); min-width: 0; overflow: hidden; }
.contato-form-group { margin-bottom: 20px; }
.contato-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contato-form-row > * { min-width: 0; }
.contato-form label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.contato-form input, 
.contato-form textarea { width: 100%; background: #1a1a1a; border: 1px solid #333; color: #fff; padding: 14px 16px; border-radius: 8px; outline: none; transition: border-color 0.3s, background 0.3s; font-family: inherit; font-size: 15px; }
.contato-form input:focus, 
.contato-form textarea:focus { border-color: var(--gold); background: #222; }
.contato-form input::placeholder, 
.contato-form textarea::placeholder { color: #555; }
.cf-turnstile { max-width: 100%; width: 100%; overflow: hidden; }
.cf-turnstile > div,
.cf-turnstile iframe { max-width: 100% !important; }

/* Mobile adjustments */
@media (max-width: 991px) {
    .contato-layout { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .contato-info { display: flex; flex-direction: column; align-items: center; }
    .contato-info .section-label { justify-content: center; }
    .contato-info .section-label::before { display: none; }
    .contato-info .contato-desc { text-align: center; }
    .contato-form-wrapper { padding: 32px 24px; }
}
@media (max-width: 500px) {
    .contato-cards-grid { grid-template-columns: 1fr; width: 100%; }
    .contato-form-row { grid-template-columns: 1fr; }
}
.contato-card {
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    min-height: 170px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s, transform 0.2s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.contato-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}
.contato-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background 0.2s, transform 0.2s;
}
.contato-icon i,
.contato-icon span,
.contato-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}
.contato-card:hover .contato-icon {
    background: rgba(255, 255, 255, 0.07);
    transform: scale(1.05);
}
.contato-card-compact {
    min-height: auto;
    padding: 24px 16px;
}
.contato-icon-sm {
    width: 44px;
    height: 44px;
}
.contact-icon-inner {
    width: 22px !important;
    height: 22px !important;
}
.contact-name-sm {
    font-size: 14px;
}
.contato-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.contato-detail {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.contato-presskit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 14px 32px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contato-presskit:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 255, 255, 0.04);
}

/* ── INNER PAGES ── */
.inner-page { padding: 120px var(--gutter) 80px; max-width: var(--container-xl); margin: 0 auto; }
.inner-header { margin-bottom: 56px; }

/* ── FOOTER ── */
footer {
    background: #070707;
    border-top: 1px solid var(--dark-border);
    padding: 56px var(--gutter) 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-secondary); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--text-secondary); }
.footer-contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}
.footer-bottom { border-top: 1px solid var(--dark-border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--text-muted); }
.footer-credit a {
    margin-left: 4px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-credit a:hover {
    color: var(--gold);
    text-decoration: underline;
}
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
    width: 36px; height: 36px; border: 1px solid var(--dark-border);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.social-link span,
.social-link svg {
    width: 18px;
    height: 18px;
    display: block;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card.featured { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
    :root { --gutter: 24px; }
    #navbar { height: 80px; }
    .nav-inner { padding-left: 8px; padding-right: 8px; }
    .nav-logo img { height: 42px !important; }
    .nav-links { display: none; }
    .nav-hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px; height: 44px;
    }
    .nav-mobile { top: 80px; padding: 18px 24px 20px; }
    
    #hero { padding: 120px 0 60px; }
    .hero-stats { display: none; }
    
    #sobre > .site-shell,
    #buffet-cta > .site-shell { 
        grid-template-columns: minmax(0, 1fr); 
        gap: 48px; 
        text-align: center;
    }
    .section-label { justify-content: center; }
    .section-label::before { display: none; }
    .section-desc { margin: 0 auto 32px; }
    .sobre-image { width: 100%; max-width: 100%; margin: 0 auto; position: relative; }
    .sobre-img-frame::after { display: none; }
    .sobre-badge { right: 10px; bottom: 10px; padding: 12px; }
    .sobre-badge-num { font-size: 24px; }
    .sobre-badge-text { font-size: 10px; }
    .sobre-services { grid-template-columns: 1fr; text-align: left; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 64px var(--gutter); }
    .news-grid { grid-template-columns: 1fr; }
    .artists-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sobre-badge { right: 0; bottom: -15px; }
    .inner-page { padding: 100px var(--gutter) 60px; }
    
    footer { padding: 48px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    
    #buffet-cta { padding: 64px 0 48px; }
    .buffet-image-grid { padding-right: 0; }
    
    .galeria-grid { padding: 20px 0 34px; }
    .galeria-row { --cols: 5; }
    .galeria-row.offset { --cols: 4; }
    .galeria-row .losango:nth-child(n + 6) { display: none; }
    .galeria-row.offset .losango:nth-child(n + 5) { display: none; }
}

@media (max-width: 520px) {
    .hero-title { font-size: 34px; }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; text-align: center; }

    .galeria-row { --cols: 4; }
    .galeria-row.offset { --cols: 3; }
    .galeria-row .losango:nth-child(n + 5) { display: none; }
    .galeria-row.offset .losango:nth-child(n + 4) { display: none; }
}

@media (max-width: 480px) {
    :root { --gutter: 16px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
    .section-header a { padding-bottom: 0; }
}

@media (max-width: 375px) {
    .hero-title { font-size: 30px !important; }
    .nav-logo img { height: 38px !important; }
}

@media (max-width: 345px) {
    .hero-title { font-size: 28px !important; }
    .nav-inner { padding: 0 4px; }
}

/* ── WHATSAPP FLOAT ── */
@keyframes wpp-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wpp-float {
    position: fixed;
    bottom: 150px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    text-decoration: none;
    animation: wpp-pulse 2s infinite;
    transition: background-color 0.2s ease;
}
.wpp-float:hover {
    background-color: #1EBE5D;
}
.wpp-float span {
    width: 32px;
    height: 32px;
    display: block;
}
@media (max-width: 768px) {
    .wpp-float {
        bottom: 120px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    .wpp-float span {
        width: 28px;
        height: 28px;
    }
}

/* LGPD Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    padding: 24px;
    width: calc(100% - 48px);
    max-width: 420px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cookie-icon {
    color: var(--gold);
    flex-shrink: 0;
}
.cookie-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    font-family: 'Roboto Slab', serif;
}
.cookie-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.cookie-text a:hover {
    color: #ffaa00;
}
.cookie-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}
.cookie-btn:hover {
    background: #ffaa00;
}
.cookie-btn:active {
    transform: scale(0.97);
}
@media (max-width: 500px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
        padding: 20px;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* ── CARNAVAL PAGE ── */
.carna-particles {
    position: fixed;
    inset: -20px 0 0 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    top: -20px;
    opacity: 0;
    transform-style: preserve-3d;
    animation: float-particle 12s linear infinite;
}

/* Shapes */
.s-circle { border-radius: 50%; width: 8px; height: 8px; }
.s-square { width: 6px; height: 6px; }
.s-ribbon { width: 4px; height: 12px; border-radius: 2px; }

/* Colors */
.p-gold { background: var(--gold); }
.p-green { background: #00ff00; }
.p-purple { background: #9b59b6; }
.p-pink { background: #ff2a85; }

/* ── CARNA HERO ── */
.carna-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    overflow: hidden;
    background: #000;
}
.carna-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/public-animado.webp') center/cover no-repeat;
    opacity: 0.5;
}
.carna-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.2) 100%);
    z-index: 1;
}
.carna-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}
.carna-hero-label {
    justify-content: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gold-light);
}
.carna-hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(48px, 9vw, 110px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.carna-hero-text {
    font-size: 20px;
    color: #e0e0e0;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}
.carna-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── CARNA ABOUT ── */
.carna-about-section {
    padding: 100px 20px;
    background: #0a0a0a;
}
.carna-about-shell {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.carna-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}
.carna-about-title {
    font-family: 'Roboto Slab', serif;
    font-size: 40px;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.2;
}
.carna-about-text {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}
.carna-about-text.mb-sm {
    margin-bottom: 20px;
}
.carna-about-text.mb-lg {
    margin-bottom: 32px;
}
.carna-about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.carna-about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.1);
}
.carna-about-img-deco {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(255,194,0,0.3);
    border-radius: 20px;
    pointer-events: none;
}

/* ── CARNA HIGHLIGHTS ── */
.carna-highlights-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    text-align: center;
    border-top: 1px solid rgba(255,194,0,0.1);
    border-bottom: 1px solid rgba(255,194,0,0.1);
}
.carna-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.carna-highlights-val {
    font-family: 'Roboto Slab', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.carna-highlights-lbl {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ── CARNA VIDEO ── */
.carna-video-section {
    padding: 120px 20px;
    background: #0a0a0a;
    text-align: center;
}
.carna-video-title {
    font-family: 'Roboto Slab', serif;
    font-size: 40px;
    margin-bottom: 60px;
    color: #fff;
}
.carna-video-box {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}
.carna-video-inner {
    aspect-ratio: 16/9;
    width: 100%;
    background: #000;
}
.carna-video-iframe {
    width: 100%;
    height: 100%;
}

/* ── CARNA GALLERY MARQUEE ── */
.carna-gallery-section {
    padding: 40px 0 120px;
    background: #0a0a0a;
    overflow: hidden;
}
.carna-gallery-marquee {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: carna-marquee 45s linear infinite;
    padding: 0 12px;
    position: relative;
    z-index: 10;
}
.carna-gallery-item {
    height: 320px;
    width: auto;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.carna-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

/* Helper Buttons & Animations */
.btn-carna {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 50px;
}
.btn-round {
    border-radius: 50px;
}
.mask-ornament {
    margin-bottom: 24px;
    animation: float-mask 4s ease-in-out infinite;
}
.carna-mask-svg {
    width: 90px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(255,194,0,0.3));
}

@keyframes carna-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

@keyframes float-mask {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes float-particle {
    0% {
        transform: translateY(-10px) rotate(0deg) translateX(0);
        opacity: 0;
    }
    8% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(105vh) rotate(540deg) translateX(100px);
        opacity: 0;
    }
}

/* ── GALERIA MODAL ── */
.collage-tile {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collage-tile:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.08) !important;
}

.gallery-modal {
    border: none;
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    background: transparent;
    z-index: 1000;
}

.gallery-modal::backdrop {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
}

.gallery-modal-content {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

.gallery-image-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#modalImage {
    width: 100%;
    height: auto;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    animation: galleryFadeIn 0.3s ease;
}

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

.gallery-caption {
    margin-top: 16px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 194, 0, 0.1);
    border: 1px solid rgba(255, 194, 0, 0.3);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255, 194, 0, 0.2);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 194, 0, 0.1);
    border: 1px solid rgba(255, 194, 0, 0.3);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.gallery-close:hover {
    background: rgba(255, 194, 0, 0.2);
    border-color: var(--gold);
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* ── CARNA RESPONSIVENESS ── */
@media (max-width: 991px) {
    .carna-about-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    .carna-about-grid > div {
        text-align: center !important;
    }
    .carna-hero-title {
        font-size: 72px !important;
    }
}

@media (max-width: 500px) {
    .carna-hero-title {
        font-size: 56px !important;
    }
}

/* ── GALERIA BUFFET ── */
.buffet-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
}

.buffet-gallery-item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.buffet-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.buffet-gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0) brightness(0.6);
}

.buffet-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    color: #fff;
    background: rgba(192, 57, 43, 0.4);
}

.buffet-gallery-item:hover .buffet-gallery-overlay {
    opacity: 1;
}

.buffet-gallery-modal {
    border: none;
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    background: transparent;
    z-index: 1000;
}

.buffet-gallery-modal::backdrop {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
}

.buffet-modal-content {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

.buffet-image-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#buffetModalImage {
    width: 100%;
    height: auto;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    animation: buffetFadeIn 0.3s ease;
}

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

.buffet-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: #c0392b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.buffet-gallery-nav:hover {
    background: rgba(192, 57, 43, 0.2);
    border-color: #c0392b;
    transform: translateY(-50%) scale(1.1);
}

.buffet-gallery-prev {
    left: 20px;
}

.buffet-gallery-next {
    right: 20px;
}

.buffet-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: #c0392b;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.buffet-gallery-close:hover {
    background: rgba(192, 57, 43, 0.2);
    border-color: #c0392b;
}

.buffet-gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

.buffet-cta-btn {
    background: #c0392b !important;
    color: #fff !important;
}

.buffet-cta-btn:hover {
    background: #a93226 !important;
}

/* ── GALERIA MODAL RESPONSIVENESS ── */
@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    #modalImage {
        max-width: 95vw;
        max-height: 70vh;
    }

    .buffet-gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .buffet-gallery-prev {
        left: 12px;
    }

    .buffet-gallery-next {
        right: 12px;
    }

    .buffet-gallery-close {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    #buffetModalImage {
        max-width: 95vw;
        max-height: 70vh;
    }
}

