*, *::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 48px 80px;
}
.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-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: 80px; bottom: 60px;
    display: flex; gap: 48px;
    z-index: 10;
}
#hero {
    padding-bottom: 220px;
}
.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: 280px;
    aspect-ratio: 4/3;
    background: #fff;
    padding: 10px 10px 40px; /* Estilo Polaroid */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: grab;
    flex-shrink: 0;
}

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

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

.collage-tile:hover {
    transform: rotate(0deg) scale(1.15) !important;
    z-index: 50;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
    cursor: pointer;
}

.collage-section:hover .collage-grid {
    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/galeria/viewpoint_fotos20-768x510.avif');
    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: block;
    transition: transform 0.2s;
    width: 100%;
    margin: 0 auto;
    max-width: 480px;
}
.news-card:hover { transform: translateY(-3px); }
.news-img {
    width: 100%; aspect-ratio: 16/9;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; color: var(--gold);
    transition: transform 0.4s ease, filter 0.3s ease;
}
.news-card:hover .news-img {
    filter: brightness(1.1);
}
.news-card.featured .news-img { aspect-ratio: 16/10; }
.news-body { padding: 20px; }
.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;
}
.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-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; 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); }
.contato-form-group { margin-bottom: 20px; }
.contato-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.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; }

/* 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-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 var(--gutter) 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;
    }
}
