/* =================================================================
   HOLIDAY PRODUTORA — Selo Musical Rock/Grunge
   ================================================================= */

:root {
    --primary: #ff1744;
    --primary-bright: #ff3d68;
    --primary-deep: #b71338;
    --bg: #0a0a0a;
    --bg-soft: #141414;
    --surface: #1a1a1a;
    --surface-light: #242424;
    --text: #f2f2f2;
    --text-muted: #9a9a9a;
    --line: rgba(255, 255, 255, 0.08);
    --noise-opacity: 0.045;
    --shadow-glow: 0 0 40px rgba(255, 23, 68, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* GRAIN/NOISE OVERLAY GLOBAL */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: var(--noise-opacity);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

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

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover { color: var(--primary); }

.display-font {
    font-family: 'Bebas Neue', 'Anton', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.handwritten {
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
}

/* ==================== NAV ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s;
}

.nav.scrolled {
    padding: 0.7rem 3rem;
    background: rgba(10, 10, 10, 0.92);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--text);
}

.nav-logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(255, 23, 68, 0.5));
    transition: transform 0.3s;
}

.nav-logo:hover img { transform: rotate(-8deg) scale(1.05); }

.nav-menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    box-shadow: 0 0 8px var(--primary);
}

.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 0.7rem 1.6rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.2em;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.nav-cta:hover {
    background: transparent;
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../bg/bg_hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(255, 23, 68, 0.25), transparent 60%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.55), rgba(10, 10, 10, 0.92) 80%, var(--bg));
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0, 0, 0, 0.15) 3px, rgba(0, 0, 0, 0.15) 4px);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1100px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary-bright);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.4em;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.45); }
    50% { box-shadow: 0 0 0 12px rgba(255, 23, 68, 0); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 12vw, 11rem);
    line-height: 0.85;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 23, 68, 0.45);
    position: relative;
}

.hero h1 .highlight {
    color: var(--primary);
    display: block;
    position: relative;
    animation: glitch 6s infinite;
}

@keyframes glitch {
    0%, 92%, 100% { transform: translate(0); text-shadow: 0 0 30px rgba(255, 23, 68, 0.6); }
    93% { transform: translate(-3px, 1px); text-shadow: 3px 0 0 #00ffff, -3px 0 0 var(--primary); }
    94% { transform: translate(3px, -1px); text-shadow: -3px 0 0 #00ffff, 3px 0 0 var(--primary); }
    95% { transform: translate(0, 0); }
}

.hero p {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-bright);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 23, 68, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.6s;
}

.btn:hover::before { left: 100%; }

/* Soundwave animado decoração */
.hero-waves {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    z-index: 6;
    opacity: 0.6;
}

.hero-waves span {
    display: block;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    animation: wave 1.4s ease-in-out infinite;
}

.hero-waves span:nth-child(1) { height: 30%; animation-delay: 0s; }
.hero-waves span:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.hero-waves span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.hero-waves span:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.hero-waves span:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.hero-waves span:nth-child(6) { height: 50%; animation-delay: 0.5s; }
.hero-waves span:nth-child(7) { height: 80%; animation-delay: 0.6s; }
.hero-waves span:nth-child(8) { height: 95%; animation-delay: 0.7s; }
.hero-waves span:nth-child(9) { height: 65%; animation-delay: 0.8s; }
.hero-waves span:nth-child(10) { height: 40%; animation-delay: 0.9s; }
.hero-waves span:nth-child(11) { height: 70%; animation-delay: 1.0s; }
.hero-waves span:nth-child(12) { height: 50%; animation-delay: 1.1s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1.5); }
}

/* ==================== MARQUEE ==================== */
.marquee {
    background: var(--primary);
    color: #fff;
    overflow: hidden;
    padding: 1.4rem 0;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-1.5deg);
    margin: 4rem 0;
    box-shadow: 0 6px 30px rgba(255, 23, 68, 0.35);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 38s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.marquee span::after {
    content: '★';
    font-size: 1.5rem;
}

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

/* ==================== SECTIONS ==================== */
section { position: relative; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad {
    padding: 7rem 0;
}

.section-head {
    margin-bottom: 4rem;
    position: relative;
}

.section-head .eyebrow {
    font-family: 'Permanent Marker', cursive;
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    transform: rotate(-2deg);
    display: inline-block;
}

.section-head h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.section-head h2 .ink {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-head h2 .ink::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: -2%;
    width: 104%;
    height: 0.12em;
    background: var(--primary);
    opacity: 0.25;
    transform: skewX(-12deg);
    z-index: -1;
}

.section-sub {
    color: var(--text-muted);
    max-width: 700px;
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* ==================== O SELO ==================== */
.about {
    background: var(--bg);
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-img::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid var(--primary);
    z-index: 2;
    pointer-events: none;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
    transition: transform 0.8s;
}

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

.about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin: 1.5rem 0 1rem;
    letter-spacing: 0.05em;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 23, 68, 0.4);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* ==================== LANÇAMENTOS ==================== */
.releases {
    background: var(--bg-soft);
    background-image: url('../bg/bg_texture.jpg');
    background-size: cover;
    background-blend-mode: multiply;
    background-color: rgba(10, 10, 10, 0.85);
}

.releases::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg), transparent 12%, transparent 88%, var(--bg));
    pointer-events: none;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.release-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.release-card {
    background: var(--surface);
    overflow: hidden;
    position: relative;
    transition: all 0.4s;
    border: 1px solid var(--line);
}

.release-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 23, 68, 0.25);
}

.release-cover {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.release-card:hover .release-cover img { transform: scale(1.08); }

.release-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent 50%);
}

.release-play {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.6);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(255, 23, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 23, 68, 0); }
}

.release-play:hover { transform: scale(1.1); color: #fff; }

.release-yt {
    position: absolute;
    bottom: 1.4rem;
    right: 5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    transition: all 0.3s;
}

.release-yt:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
    transform: scale(1.08);
}

.release-info {
    padding: 1.6rem 1.5rem 1.8rem;
}

.release-tag {
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
}

.release-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin: 0.4rem 0 0.2rem;
    line-height: 1;
}

.release-artist {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== CASTING ==================== */
.casting {
    background: var(--bg);
}

.casting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ----- Bloco de casting (com header e variações) ----- */
.cast-block {
    margin-top: 3.5rem;
}
.cast-block:first-of-type { margin-top: 2rem; }

.cast-block-head {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    flex-wrap: wrap;
}

.cast-block-eyebrow {
    font-family: 'Permanent Marker', cursive;
    color: var(--primary-bright);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.cast-block-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.06em;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

/* Bloco de distribuição mostra 2 cards centralizados */
.casting-grid-distrib {
    grid-template-columns: repeat(4, 1fr);
}
.casting-grid-distrib .artist-card {
    grid-column: span 1;
}
@media (min-width: 1025px) {
    .casting-grid-distrib { grid-template-columns: repeat(4, 1fr); }
    .casting-grid-distrib .artist-card:nth-child(1) { grid-column: 2 / span 1; }
}

.cast-names {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--line);
    justify-content: center;
}

.cast-names .tag {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--line);
    color: #fff;
    transition: all 0.3s;
    cursor: default;
}

.cast-names .tag:hover {
    border-color: var(--primary);
    color: var(--primary-bright);
    transform: translateY(-2px);
}

.cast-names .tag-more {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 0.05em;
}

.cast-more {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
}

.artist-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: all 0.4s;
}

.artist-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 23, 68, 0.3);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: grayscale(0.6) contrast(1.05);
    transition: all 0.5s;
}

.artist-card:hover img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.08);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 10%, rgba(10, 10, 10, 0.4) 60%, transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: all 0.3s;
}

.artist-card:hover .artist-overlay {
    background: linear-gradient(to top, rgba(255, 23, 68, 0.85) 10%, rgba(10, 10, 10, 0.4) 60%, transparent);
}

.artist-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1;
}

.artist-tag {
    font-size: 0.8rem;
    color: var(--primary-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-weight: 600;
    transition: color 0.3s;
}

.artist-card:hover .artist-tag {
    color: #fff;
}

/* ==================== SERVIÇOS ==================== */
.services {
    background: var(--bg-soft);
    background-image: url('../bg/bg_studio.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
}

.services > .container { position: relative; z-index: 2; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    background: rgba(20, 20, 20, 0.85);
    border-color: var(--primary);
    transform: translateY(-6px);
}

.service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.4;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin: 0.6rem 0 1rem;
    letter-spacing: 0.05em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* ==================== EQUIPE ==================== */
.team {
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    background: var(--surface);
    padding: 2rem;
    border: 1px solid var(--line);
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 23, 68, 0.2);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
    position: relative;
    box-shadow: 0 0 30px rgba(255, 23, 68, 0.3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.team-card:hover .team-photo img { filter: grayscale(0); }

.team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.team-role {
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==================== FESTIVAL ==================== */
.festival {
    background: url('../bg/bg_festival.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.festival::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(255, 23, 68, 0.35));
}

.festival > .container { position: relative; z-index: 2; }

.festival-head { text-align: center; margin-bottom: 4rem; }

.festival-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.85;
    color: #fff;
    text-shadow: 4px 4px 0 var(--primary);
    transform: rotate(-2deg);
    display: inline-block;
}

.festival-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.festival-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 23, 68, 0.6);
}

.festival-stat .lbl {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.3em;
    color: #fff;
    margin-top: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px) rotate(-1deg);
    z-index: 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(0.9);
    transition: transform 0.6s;
}

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

/* ==================== TAGS BANDAS ==================== */
.tags {
    background: var(--bg);
    padding: 4rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.tags h3 {
    font-family: 'Permanent Marker', cursive;
    color: var(--primary);
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2.5rem;
    transform: rotate(-1deg);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.tag {
    padding: 0.55rem 1.2rem;
    border: 1px solid var(--line);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: all 0.3s;
    background: var(--surface);
    cursor: default;
}

.tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px) rotate(-2deg);
    box-shadow: 0 6px 18px rgba(255, 23, 68, 0.4);
}

.tag:nth-child(3n) { transform: rotate(-1deg); }
.tag:nth-child(3n+1) { transform: rotate(1deg); }

/* ==================== NEWS ==================== */
.news {
    background: var(--bg-soft);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.news-card {
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.news-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--surface-light);
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.news-card:hover .news-img img { transform: scale(1.08); }

.news-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-source {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary);
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.news-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    flex: 1;
}

.news-link {
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    align-self: flex-start;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

/* ==================== CONTATO ==================== */
.contact {
    background: var(--bg);
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.95)),
        url('../bg/bg_band.jpg');
    background-size: cover;
    background-position: center;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-list { list-style: none; }

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 23, 68, 0.12);
    color: var(--primary);
    border: 1px solid var(--primary);
    flex-shrink: 0;
}

.contact-list .lbl {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary);
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

.contact-list .val {
    font-size: 1.05rem;
    margin-top: 0.2rem;
    color: var(--text);
}

.contact-list .val a:hover { color: var(--primary); }

.form {
    background: var(--surface);
    padding: 2.5rem;
    border: 1px solid var(--line);
    position: relative;
}

.form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    z-index: -1;
    opacity: 0.4;
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid var(--line);
    padding: 0.9rem 1rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 23, 68, 0.18);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 23, 68, 0.4));
}

.footer-tag {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social a {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s;
}

.social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-4px) rotate(-6deg);
    box-shadow: 0 8px 22px rgba(255, 23, 68, 0.45);
}

.copy {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.copy a {
    color: rgba(255, 255, 255, 0.35);
}

.copy a:hover { color: var(--primary); }

/* ==================== WHATSAPP FLOATING ==================== */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 50;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    animation: pulseWA 2s infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    color: #fff;
}

@keyframes pulseWA {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================== REVEAL (sempre visível) ==================== */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
    .reveal { animation: fadeUp 0.8s ease both; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .casting-grid, .casting-grid-distrib { grid-template-columns: repeat(3, 1fr); }
    .casting-grid-distrib .artist-card:nth-child(1) { grid-column: auto; }
    .gallery { grid-template-columns: repeat(3, 1fr); }
    .release-grid, .release-grid-4, .service-grid, .team-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-inner, .contact-inner { grid-template-columns: 1fr; }
    .cast-block-title { font-size: 1.7rem; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-menu, .nav-cta { display: none; }
    .menu-toggle { display: flex; }

    .nav.open .nav-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.96);
        flex-direction: column;
        padding: 2rem;
        gap: 1.4rem;
        border-bottom: 1px solid var(--line);
    }

    .nav.open .nav-cta {
        display: inline-flex;
        margin: 0 2rem 2rem;
    }

    .casting-grid, .casting-grid-distrib, .release-grid, .service-grid, .team-grid, .news-grid, .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .festival-stats { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .section-pad { padding: 4.5rem 0; }
    .marquee span { font-size: 1.6rem; }
    .hero { padding: 7rem 1rem 3rem; }
    .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
    .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .casting-grid, .casting-grid-distrib, .release-grid, .gallery, .news-grid, .service-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .about-stats, .festival-stats { grid-template-columns: 1fr; gap: 1.5rem; }
    .cast-block-title { font-size: 1.5rem; }
    .form { padding: 1.5rem; }
}
