:root {
  --primary: #ff0000;
  --gold: #fe0000;
  --bg-dark: #000000;
  --text-white: #ffffff;
  --text-on-white: #111111;
  --bg-light-gray: #f4f4f4;
  --text-grey-dark: #555555;
  --font-stack: 'Montserrat', sans-serif;
  
  /* Novas Cores de Deep Red & Ghost para o Footer */
  --footer-primary-deep: #a00000;
  --footer-bg-deep: #0a0a0a;
  --footer-text-white: #ffffff;
  --footer-text-grey: #888888;
  --footer-ghost-white: rgba(255, 255, 255, 0.03); 
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-stack); }
html.no-scroll, body.no-scroll { overflow: hidden !important; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden !important; position: relative; }
body { background: linear-gradient(120deg, #fdfdfd, #f0f2f5, #eef0f4, #ffffff); background-size: 300% 300%; animation: bgFlow 18s ease infinite; color: var(--text-on-white); }
@keyframes bgFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.container { width: 100%; max-width: 1560px; margin: 0 auto; padding: 0 40px; }
.navbar { display: flex; justify-content: center; align-items: center; padding: 18px 0; background: transparent; position: fixed; width: 100%; z-index: 1000; transition: background 0.4s ease, padding 0.4s ease; }
.navbar.nav-active { background: rgba(0, 0, 0, 0.95); padding: 8px 0; border-bottom: 1px solid rgba(255, 0, 0, 0.2); }
.nav-content { display: flex; align-items: center; width: 100%; justify-content: center; gap: 20px; padding: 0 20px; position: relative; }
.nav-menu { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-menu li a { text-decoration: none; color: var(--text-white); font-weight: 400; font-size: 0.8rem; letter-spacing: 2px; transition: 0.3s; }
.nav-menu li a:hover { color: var(--primary); }
.mini-logo { height: 95px; width: auto; margin-top: 0; margin-left: 12px; margin-right: 12px; vertical-align: middle; }
.menu-toggle { display: none; background: transparent; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; transition: 0.3s; }
.nav-logo-mobile { display: none; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); }

.hero { position: relative; height: 100vh; min-height: 600px; display: flex; justify-content: center; align-items: center; text-align: center; color: #fff; isolation: isolate; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; background-color: #000; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 15%, transparent 100%); z-index: 1; pointer-events: none; }
.video-background .bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; will-change: opacity; transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.video-background .bg-video.active { opacity: 1; z-index: 1; }
.hero-content { display: flex; flex-direction: column; align-items: center; gap: 5px; position: relative; z-index: 2; width: 100%; padding: 0 20px; }
.main-brand-text { font-family: var(--font-stack); font-weight: 900; font-size: clamp(3.5rem, 12vw, 8.5rem); text-transform: uppercase; line-height: 1; margin-bottom: 10px; letter-spacing: -2px; word-break: break-word; background: linear-gradient(to right, #ffffff 38%, #8b0000 50%, #ffffff 62%); background-size: 300% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: sweepAndPulse 5s infinite ease-in-out; -webkit-text-stroke: 0; text-shadow: none; filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6)); }
.dynamic-subtitle { font-size: 0.8rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; background: linear-gradient(to right, #ffffff 42%, #8b0000 50%, #ffffff 58%); background-size: 300% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: sweepLeft 6s linear infinite; -webkit-text-stroke: 0; text-shadow: none; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
@keyframes sweepAndPulse { 0% { background-position: 200% center; transform: scale(1); } 30% { background-position: -100% center; transform: scale(1); } 45% { background-position: -100% center; transform: scale(1.04); } 60% { background-position: -100% center; transform: scale(1); } 100% { background-position: -100% center; transform: scale(1); } }
@keyframes sweepLeft { 0% { background-position: 200% center; } 100% { background-position: -100% center; } }
.scroll-indicator { position: absolute; bottom: 30px; z-index: 2; color: var(--primary); text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

.badge { background: var(--primary); color: #fff; padding: 5px 15px; font-size: 0.8rem; font-weight: 900; border-radius: 6px; text-transform: uppercase; display: inline-block; margin-bottom: 10px; }
.text-highlight { color: var(--primary); }
.btn-primary-solid { background: var(--primary); color: #fff; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-primary-solid:hover { background: #cc0000; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,0,0,0.2); }
.btn-outline-dark { border: 1px solid #111; color: #111; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; background: #fff; }
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,0,0,0.05); }

.corporate-header-wrapper { margin-bottom: 40px; }
.flex-header { display: flex; justify-content: space-between; align-items: flex-end; }
.identity-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 4px; color: #111; display: inline-block; margin-bottom: 20px; border-bottom: 2px solid var(--primary); padding-bottom: 5px; width: max-content; text-transform: uppercase; }
.identity-title { font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 900; color: #111; line-height: 1.1; margin-bottom: 35px; text-transform: uppercase; word-break: keep-all; hyphens: none; }
.ver-todos-modern { color: #111; text-decoration: none; font-weight: 800; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; margin-bottom: 35px; }
.ver-todos-modern:hover { color: var(--primary); transform: translateX(5px); }

.lancamentos-section { padding: 100px 0 20px 0; background: transparent; color: #111; overflow: hidden; }
.releases-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; scroll-behavior: smooth; }
.release-card { background: #fff; border-radius: 12px; overflow: hidden; cursor: pointer; border: 2px solid transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: 0.3s ease; display: flex; flex-direction: column; }
.release-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.release-card.active { border-color: var(--primary); }
.release-img-wrap { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-bottom: 1px solid #eaeaea; }
.release-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.release-card:hover .release-img-wrap img { transform: scale(1.05); }
.release-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center; opacity: 0; transition: 0.3s ease; }
.release-overlay i { font-size: 3.5rem; color: #fff; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.4)); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.release-card:hover .release-overlay { opacity: 1; }
.release-card:hover .release-overlay i { transform: scale(1.1); color: var(--primary); }
.release-info { padding: 20px 25px; text-align: left; }
.release-info h4 { font-size: 1.1rem; font-weight: 900; color: #111; text-transform: uppercase; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.release-info p { font-size: 0.85rem; color: #666; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.carousel-dots-indicator { display: flex; justify-content: center; gap: 12px; margin-top: 35px; margin-bottom: 20px; }
.carousel-dots-indicator span { width: 10px; height: 10px; border-radius: 50%; background: #ddd; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: block; cursor: pointer; }
.carousel-dots-indicator span.active { background: var(--primary); width: 28px; border-radius: 20px; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); z-index: 2000; display: none; justify-content: center; align-items: center; padding: 40px; animation: fadeIn 0.3s ease; overscroll-behavior: contain; }
.modal-container { width: 100%; max-width: 1200px; display: flex; flex-direction: column; gap: 20px; }
.modal-header { display: flex; justify-content: space-between; align-items: flex-end; border-left: 4px solid var(--primary); padding-left: 20px; }
.playing-info { flex-grow: 1; }
.now-playing { display: inline-block; color: rgba(255,255,255,0.65); letter-spacing: 2px; font-weight: 900; font-size: 0.75rem; }
#modal-video-title { font-size: 1.8rem; font-weight: 900; color: #fff; margin: 5px 0; }
#modal-video-artist { color: rgba(255,255,255,0.8); font-weight: 700; }
.modal-controls { display: flex; align-items: center; gap: 20px; }
.modal-nav-btn { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.3s; }
.modal-nav-btn:hover { background: var(--primary); transform: scale(1.1); }
.modal-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); margin: 0 5px; }
.close-modal { background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center;}
.close-modal:hover { color: var(--primary); transform: scale(1.1);}
.video-wrapper { width: 100%; aspect-ratio: 16 / 9; background: #000; border: 1px solid #333; box-shadow: 0 0 50px rgba(255,0,0,0.2); }
.video-wrapper iframe { width: 100%; height: 100%; }

.banner-section { background: transparent; padding: 0; margin: 80px auto; width: 100%; display: block; }
.banner-link { display: block; margin: 0 auto; width: 100%; max-width: 1400px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); transition: transform .3s ease, box-shadow .3s ease; }
.banner-link:hover{ transform: translateY(-4px); box-shadow: 0 25px 70px rgba(0,0,0,0.2); }
.banner-img { width: 100%; height: auto; display: block; object-fit: cover; }

.corporate-identity-section { padding: 30px 0 60px 0; background: transparent; overflow: hidden; }
.identity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.identity-text-column { display: flex; flex-direction: column; justify-content: center; }
.identity-lead { font-size: 1.2rem; font-weight: 700; color: #111; line-height: 1.6; margin-bottom: 20px; }
.identity-paragraph { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 40px; font-weight: 500; }
.identity-stats { display: flex; gap: 40px; border-top: 1px solid #ddd; padding-top: 30px; flex-wrap: wrap; }
.i-stat h4 { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.i-stat span { font-size: 0.7rem; font-weight: 800; color: #888; letter-spacing: 2px; }
.identity-image-column { position: relative; border-radius: 4px; overflow: hidden; }
.identity-img { width: 100%; height: auto; min-height: auto !important; object-fit: contain; display: block; transition: transform 0.8s ease; border-radius: 4px; }
.identity-image-column:hover .identity-img { transform: scale(1.02); }
.identity-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0, 0, 0, 0.95); color: #fff; padding: 15px 20px; font-size: 0.75rem; font-weight: 500; letter-spacing: 1px; }

.unique-links-bg { background: transparent; padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.unique-links-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.unique-link-item { background: #fff; border: 1px solid #eaeaea; padding: 15px; border-radius: 20px; text-decoration: none; text-align: center; width: 170px; display: flex; flex-direction: column; align-items: center; gap: 15px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 10px 20px rgba(0,0,0,0.03); position: relative; overflow: hidden; }
.unique-link-item::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: 0.4s ease; }
.unique-link-item .icon-box { width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; background: #f4f4f4; display: flex; justify-content: center; align-items: center; overflow: hidden; transition: 0.4s; }
.unique-link-item .icon-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.unique-link-item span { color: #111; font-weight: 900; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; text-transform: uppercase; }
.unique-link-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(255,0,0,0.12); border-color: transparent; }
.unique-link-item:hover::before { transform: scaleX(1); }
.unique-link-item:hover .icon-box img { transform: scale(1.1); }
.unique-link-item:hover span { color: var(--primary); }

.social-hype-section { padding: 80px 0 100px 0; background: transparent; overflow: hidden; }
.social-hype-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.social-card { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.social-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #eaeaea; }
.social-brand { font-size: 1.1rem; font-weight: 900; color: #111; display: flex; align-items: center; gap: 10px; }
.social-brand i { font-size: 1.5rem; }
.insta-card .social-brand i { color: #E1306C; }
.yt-card .social-brand i { color: #FF0000; }
.btn-social-open { padding: 10px 25px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; text-decoration: none; color: #fff; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.insta-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.yt-btn { background: #FF0000; }
.btn-social-open:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.insta-profile { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; }
.insta-avatar { width: 75px; height: 75px; border-radius: 50%; border: 3px solid #E1306C; padding: 3px; object-fit: cover; }
.insta-stats { display: flex; gap: 25px; }
.insta-stats div { display: flex; flex-direction: column; }
.insta-stats strong { font-size: 1.3rem; font-weight: 900; color: #111; line-height: 1; }
.insta-stats span { font-size: 0.8rem; color: #666; font-weight: 600; margin-top: 4px; }
.insta-bio { font-size: 0.95rem; color: #555; line-height: 1.5; margin-bottom: 25px; font-weight: 500; }
.insta-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.insta-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; transition: 0.3s; cursor: pointer; }
.insta-gallery img:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.yt-shorts-container { flex-grow: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 10px 0; align-items: stretch; }
.yt-short-wrapper { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 15px 35px rgba(0,0,0,0.15); display: block; text-decoration: none; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.yt-short-wrapper:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2); }
.yt-short-thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s ease; }
.yt-short-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 15px; }
.yt-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 3rem; color: #fff; text-shadow: 0 5px 15px rgba(0,0,0,0.4); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.yt-short-info p { color: #fff; font-weight: 900; font-size: 0.85rem; margin-bottom: 3px; text-transform: uppercase; line-height: 1.1; }
.yt-short-info span { color: #ddd; font-weight: 600; font-size: 0.7rem; }
.yt-short-wrapper:hover .yt-short-thumb { transform: scale(1.05); opacity: 0.6; }
.yt-short-wrapper:hover .yt-play-icon { color: var(--primary); transform: translate(-50%, -50%) scale(1.2); }

/* ARTISTAS */
.artists-hero { padding: 160px 0 70px; background: radial-gradient(800px 400px at 50% 30%, rgba(255,0,0,0.15), transparent 60%), #0a0a0a; color: #fff; position: relative; overflow: hidden; text-align: center; border-bottom: 1px solid rgba(255,0,0,0.1); }
.artists-hero::after { content: "CASTING"; position: absolute; inset: auto 0 10px 0; text-align: center; font-size: clamp(3rem, 16vw, 18vw); font-weight: 900; letter-spacing: -2px; color: rgba(255,255,255,0.03); pointer-events: none; white-space: nowrap; }
.artists-hero-content { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.artists-grid-section { padding: 80px 0 100px 0; background: transparent; }
.artists-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.artist-flip-card { background-color: transparent; width: 100%; aspect-ratio: 3 / 4; perspective: 1000px; cursor: pointer; }
.artist-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-style: preserve-3d; }
.artist-flip-card:hover .artist-card-inner, .artist-flip-card.mobile-flip .artist-card-inner { transform: rotateY(180deg); }
.artist-card-front, .artist-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.artist-card-front { background: #111; border: 1px solid rgba(255,255,255,0.05); }
.artist-card-front img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.artist-flip-card:hover .artist-card-front img { transform: scale(1.08); }
.artist-front-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 25px 20px; text-align: left; }
.artist-name { color: #fff; font-size: 1.6rem; font-weight: 900; text-transform: uppercase; line-height: 1.1; margin-bottom: 5px; }
.artist-category { color: #aaa; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; }
.btn-ver-perfil { color: #fff; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.15); transition: 0.3s; }
.btn-ver-perfil i { color: var(--primary); transition: transform 0.3s; }
.artist-flip-card:hover .btn-ver-perfil i { transform: translateX(5px); }
.artist-card-back { background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%); transform: rotateY(180deg); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px 20px; border: 1px solid var(--primary); }
.artist-card-back h3 { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 30px; text-align: center; }
.back-links { display: flex; flex-direction: column; gap: 15px; width: 100%; }
.back-links a { display: flex; align-items: center; justify-content: flex-start; gap: 12px; padding: 14px 20px; background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; font-weight: 800; font-size: 0.85rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.back-links a i { font-size: 1.4rem; }
.back-links a.spotify:hover { background: #1DB954; border-color: #1DB954; transform: scale(1.05); }
.back-links a.insta:hover { background: #E1306C; border-color: #E1306C; transform: scale(1.05); }
.back-links a.info-btn:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.05); }

.artist-modal-container { width: 100%; max-width: 1100px; height: 85vh; background: #ffffff; border-radius: 20px; position: relative; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15); overflow: hidden; animation: swooshUp 0.4s ease; }
.artist-modal-layout { display: flex; width: 100%; height: 100%; }
.artist-modal-img { flex: 1 1 40%; background: #f4f4f4; position: relative; }
.artist-modal-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.artist-modal-info { flex: 1 1 60%; padding: 50px 40px; overflow-y: auto; background: #ffffff; overscroll-behavior: contain; }
.artist-modal-info::-webkit-scrollbar { width: 8px; }
.artist-modal-info::-webkit-scrollbar-track { background: #f4f4f4; }
.artist-modal-info::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
.artist-modal-info::-webkit-scrollbar-thumb:hover { background: var(--primary); }
.close-artist-modal { position: absolute; top: 20px; right: 20px; background: #fff; border: 1px solid #ddd; color: #111; font-size: 1.2rem; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; z-index: 10; transition: 0.3s; display: flex; justify-content: center; align-items: center; box-shadow: 0 5px 15 rgba(0,0,0,0.1); }
.close-artist-modal:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.1); }
.artist-category-badge { background: rgba(255, 0, 0, 0.1); border: 1px solid rgba(255, 0, 0, 0.2); color: var(--primary); padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 900; letter-spacing: 2px; display: inline-block; width: max-content; margin-bottom: 20px; text-transform: uppercase; }
#info-modal-name { font-size: 3.5rem; font-weight: 900; color: #111; margin-bottom: 25px; text-transform: uppercase; line-height: 1; letter-spacing: -1px; }
.artist-stats-row { display: flex; gap: 30px; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid #eaeaea; }
.stat-box { display: flex; flex-direction: column; }
.stat-box strong { color: var(--primary); font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.stat-box span { color: #888; font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.modal-section-title { color: #111; font-size: 1.2rem; font-weight: 900; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 1px; }
.modal-section-title i { color: var(--primary); }
.artist-modal-bio { color: #555; line-height: 1.8; margin-bottom: 40px; font-size: 1rem; font-weight: 500; }
.conquistas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 40px; }
.conquista-card { background: #ffffff; border: 1px solid #eaeaea; padding: 20px; border-radius: 12px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 5px 15 rgba(0,0,0,0.02); }
.conquista-card:hover { border-color: var(--primary); background: #ffffff; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(255,0,0,0.08); }
.conquista-card h5 { color: #111; font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.conquista-card p { color: #666; font-size: 0.85rem; line-height: 1.5; font-weight: 500; }
.hit-track-card { display: flex; align-items: center; background: #fff; border: 1px solid #eaeaea; padding: 15px; border-radius: 12px; text-decoration: none; transition: 0.3s; margin-bottom: 40px; box-shadow: 0 5px 15 rgba(0,0,0,0.02); }
.hit-track-card:hover { background: #fafafa; border-color: #ddd; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.hit-track-icon { width: 50px; height: 50px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 15px; font-size: 1.2rem; box-shadow: 0 5px 10px rgba(255,0,0,0.2); }
.hit-track-info { display: flex; flex-direction: column; flex-grow: 1; }
.hit-label { font-size: 0.7rem; color: #888; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 3px; }
.hit-track-info strong { color: #111; font-size: 1.1rem; font-weight: 800; }
.hit-external { color: #aaa; font-size: 1.2rem; transition: 0.3s; }
.hit-track-card:hover .hit-external { color: var(--primary); }
.artist-modal-actions { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 20px;}
.btn-modal-primary { background: var(--primary); color: #fff; padding: 18px 35px; border-radius: 8px; font-weight: 900; font-size: 0.9rem; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; display: flex; align-items: center; gap: 10px; transition: 0.3s; box-shadow: 0 10px 20px rgba(255,0,0,0.25); border: 2px solid var(--primary); flex-grow: 1; justify-content: center; }
.btn-modal-primary:hover { background: #cc0000; border-color: #cc0000; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255,0,0,0.4); }
.btn-modal-secondary { background: #fff; color: #111; padding: 18px 35px; border-radius: 8px; font-weight: 900; font-size: 0.9rem; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; display: flex; align-items: center; gap: 10px; transition: 0.3s; border: 2px solid #ddd; flex-grow: 1; justify-content: center; }
.btn-modal-secondary:hover { background: #f4f4f4; border-color: #111; transform: translateY(-3px); }

/* FOOTER */
.footer-section { background-color: var(--footer-bg-deep); color: var(--footer-text-white); padding: 100px 0 0; position: relative; overflow: hidden; border-top: 2px solid var(--footer-primary-deep); }
.footer-cta-box { background: #0f0f0f; border: 1px solid rgba(255, 0, 0, 0.15); border-radius: 24px; padding: 70px 40px; text-align: center; margin-bottom: 80px; position: relative; overflow: hidden; z-index: 1; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.05); }
.footer-cta-box::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.8; }
.footer-cta-box::before { content: "LOVE FUNK"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(4rem, 12vw, 12rem); font-weight: 900; color: rgba(255, 255, 255, 0.02); white-space: nowrap; pointer-events: none; z-index: 0; }
.footer-cta-box h2, .footer-cta-box p, .footer-cta-box .btn-footer-red { position: relative; z-index: 1; }
.footer-cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; text-transform: uppercase; margin-bottom: 15px; letter-spacing: -1px; color: #fff; }
.footer-cta-box p { font-size: 1.1rem; font-weight: 500; color: #888; margin-bottom: 35px; }
.btn-footer-red { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: #fff; padding: 18px 40px; border-radius: 50px; font-weight: 900; font-size: 0.95rem; letter-spacing: 1px; text-decoration: none; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-transform: uppercase; box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25); }
.btn-footer-red:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(255, 0, 0, 0.45); background: #cc0000; }
.footer-main-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; position: relative; z-index: 1; }
.footer-brand-logo { height: 60px; margin-bottom: 25px; filter: grayscale(100%) brightness(200%); }
.brand-col p { color: var(--footer-text-grey); line-height: 1.6; font-size: 0.95rem; max-width: 380px; margin-bottom: 30px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { display: flex; justify-content: center; align-items: center; width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.05); color: #fff; font-size: 1.2rem; text-decoration: none; transition: 0.3s; border: 1px solid rgba(255,255,255,0.08); }
.footer-socials a:hover { background: var(--footer-primary-deep); border-color: var(--footer-primary-deep); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(160, 0, 0, 0.2); }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 25px; text-transform: uppercase; }
.links-col ul { list-style: none; }
.links-col li { margin-bottom: 15px; }
.links-col a { color: var(--footer-text-grey); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: 0.3s; display: inline-block; }
.links-col a:hover { color: var(--footer-primary-deep); transform: translateX(5px); }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; color: var(--footer-text-grey); font-size: 0.95rem; line-height: 1.5; font-weight: 500; }
.contact-item i { color: var(--footer-primary-deep); font-size: 1.2rem; margin-top: 3px; }
.footer-bottom { border-top: 1px solid #1a1a1a; padding: 25px 0; background: #050505; position: relative; z-index: 1; }
.fb-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.fb-flex p, .legal-links a { font-size: 0.8rem; color: #666; font-weight: 700; text-decoration: none; letter-spacing: 1px; }
.legal-links { display: flex; gap: 25px; }
.legal-links a { transition: 0.3s; }
.legal-links a:hover { color: var(--footer-primary-deep); }
.dev { text-transform: uppercase; }
.dev-tools { text-decoration: none; color: var(--primary); transition: 0.3s; }
.dev-tools:hover { filter: brightness(1.5); }

/* INSTITUCIONAL */
.editorial-intro-center { max-width: 900px; margin: 0 auto 70px auto; text-align: center; }
.editorial-label.center-label { border-left: none; padding-left: 0; display: inline-block; margin-bottom: 15px; }
.editorial-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 25px; color: #111; text-transform: uppercase; }
.editorial-intro-center .editorial-desc { padding-right: 0; color: #555; line-height: 1.7; }
.documents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.corporate-document-block { border-top: 1px solid #eaeaea; padding-top: 30px; }
.doc-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.feat-num { font-size: 3.8rem; font-weight: 900; color: transparent; -webkit-text-stroke: 2px var(--primary); line-height: 0.8; opacity: 0.9; }
.doc-title { font-size: 1.4rem; font-weight: 900; text-transform: uppercase; color: #111; margin-bottom: 8px; letter-spacing: 1px; }
.doc-desc { font-size: 0.95rem; color: #666; line-height: 1.6; }
.pdf-viewer-wrapper { width: 100%; border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); background: #f5f5f5; box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.pdf-portrait { aspect-ratio: 1 / 1; min-height: 500px; }
.pdf-viewer-wrapper iframe { width: 100%; height: 100%; border: none; }
.doc-actions { margin-top: 25px; display: flex; justify-content: flex-start; }
.editorial-actions { display: flex; gap: 15px; flex-wrap: wrap; width: 100%; justify-content: center; }
.corporate-hero .editorial-actions { justify-content: center; margin-top: 25px; }
.btn-corporate-solid { background: var(--bg-dark); color: #fff; padding: 16px 32px; border-radius: 4px; text-decoration: none; font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; text-transform: uppercase; text-align: center; }
.btn-corporate-solid:hover { background: var(--primary); transform: translateY(-2px); }
.btn-corporate-outline { background: transparent; color: #111; border: 1px solid #dcdcdc; padding: 16px 32px; border-radius: 4px; text-decoration: none; font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; transition: 0.3s; text-transform: uppercase; text-align: center; }
.btn-corporate-outline:hover { border-color: #111; background: rgba(0,0,0,0.03); transform: translateY(-2px); }
.corporate-hero { padding: 160px 0 70px; background: radial-gradient(1000px 400px at 20% 20%, rgba(255,0,0,0.10), transparent 60%), radial-gradient(900px 380px at 80% 30%, rgba(255,0,0,0.08), transparent 55%), #0a0a0a; color: #fff; position: relative; overflow: hidden; text-align: center; }
.corporate-hero::after { content: "INTEGRIDADE"; position: absolute; inset: auto 0 10px 0; text-align: center; font-size: clamp(3rem, 16vw, 18vw); font-weight: 900; letter-spacing: -2px; color: rgba(255,255,255,0.04); pointer-events: none; white-space: nowrap; }
.corporate-hero-content { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.corporate-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 10px 14px; border-radius: 999px; font-weight: 900; letter-spacing: 2px; font-size: 0.75rem; text-transform: uppercase; }
.corporate-title { margin-top: 18px; font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; line-height: 1.1; word-break: keep-all; hyphens: none; }
.corporate-subtitle { margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.7; max-width: 780px; text-align: center; }
.corporate-hero .btn-corporate-outline { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.corporate-hero .btn-corporate-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-dark); display: flex; justify-content: center; align-items: center; z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s; }
.loader-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.loader-logo { width: 150px; height: auto; animation: pulseLogo 1.5s infinite ease-in-out; }
.loader-bar { width: 100px; height: 3px; background: #222; margin-top: 20px; position: relative; overflow: hidden; border-radius: 10px; }
.loader-bar::after { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--primary); animation: loadingLine 1.5s infinite linear; }
.loader-hidden { opacity: 0; visibility: hidden; }
@keyframes pulseLogo { 0% { transform: scale(0.9); opacity: 0.7; } 50% { transform: scale(1); opacity: 1; } 100% { transform: scale(0.9); opacity: 0.7; } }
@keyframes loadingLine { 0% { left: -100%; } 100% { left: 100%; } }

.mobile-close-item { display: none; }

/* EFEITOS GERAIS */
html { scroll-behavior: smooth; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); will-change: opacity, transform; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.hover-float { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.hover-float:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 35px rgba(255, 0, 0, 0.15); border-color: var(--primary); }
body:not(.loaded) .navbar { transform: translateY(-100%); opacity: 0; }
body:not(.loaded) .hero-content, body:not(.loaded) .artists-hero-content, body:not(.loaded) .corporate-hero-content { opacity: 0; transform: translateY(40px) scale(0.95); }
.navbar { transition: background 0.4s ease, padding 0.4s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.8s ease; }
.hero-content, .artists-hero-content, .corporate-hero-content { transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s; will-change: opacity, transform; }

/* CONTATO E FORM */
.contact-form-section { padding: 80px 0 100px 0; background: transparent; overflow: hidden; }
.contact-form-wrapper { background: #fff; max-width: 850px; margin: 0 auto; border-radius: 20px; padding: 50px 60px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03); }
.lovefunk-form { display: flex; flex-direction: column; gap: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.form-group { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-group label { font-size: 0.85rem; font-weight: 800; color: #111; text-transform: uppercase; letter-spacing: 1px; }
.form-control { width: 100%; padding: 16px 20px; border: 2px solid #eaeaea; border-radius: 10px; font-family: var(--font-stack); font-size: 1rem; color: #111; background: #fdfdfd; transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.form-control::placeholder { color: #aaa; font-weight: 500; }
.form-control:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 5px 20px rgba(255,0,0,0.1); transform: translateY(-2px); }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: calc(100% - 20px) center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 160px; }
.form-submit-wrapper { text-align: center; margin-top: 10px; }
.btn-submit-form { width: 100%; justify-content: center; font-size: 1.05rem; padding: 22px; border: none; cursor: pointer; box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2); }

/* LOJA (E-COMMERCE CARD) */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: 0.3s ease; border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(255,0,0,0.1); border-color: rgba(255,0,0,0.2); }
.product-image-wrapper { position: relative; width: 100%; aspect-ratio: 1 / 1; background: #f4f4f4; padding: 20px; display: flex; justify-content: center; align-items: center; }
.product-image-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s ease; }
.product-card:hover .product-image-wrapper img { transform: scale(1.08); }
.price-tag { position: absolute; top: 15px; right: 15px; background: var(--primary); color: #fff; font-weight: 900; padding: 8px 15px; border-radius: 50px; font-size: 0.95rem; box-shadow: 0 5px 15px rgba(255,0,0,0.4); z-index: 2; letter-spacing: 1px; }
.product-info { padding: 25px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product-title { font-size: 1.2rem; font-weight: 900; color: #111; text-transform: uppercase; margin-bottom: 5px; line-height: 1.2; }
.product-category { font-size: 0.8rem; font-weight: 600; color: #888; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: 1px; }
.product-features-list { margin-bottom: 25px; flex-grow: 1; }
.product-feature-item { font-size: 0.85rem; color: #555; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.product-feature-item i { color: var(--primary); font-size: 0.9rem; }
.product-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-product-info { text-align: center; padding: 12px; background: #f4f4f4; color: #111; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; border-radius: 8px; text-decoration: none; transition: 0.3s; border: 1px solid #ddd; }
.btn-product-info:hover { background: #e0e0e0; }
.btn-buy-checkout { background: var(--primary); color: #fff; padding: 15px; border-radius: 8px; font-weight: 900; font-size: 0.95rem; text-decoration: none; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; border: none; cursor: pointer; box-shadow: 0 5px 15px rgba(255,0,0,0.2); }
.btn-buy-checkout:hover { background: #cc0000; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,0,0,0.3); color: #fff; }

.floating-cart { position: fixed; bottom: 30px; right: 30px; background: var(--primary); border-radius: 50px; display: flex; align-items: center; padding: 10px 25px 10px 10px; cursor: pointer; box-shadow: 0 10px 30px rgba(255,0,0,0.3); z-index: 9999; transition: 0.3s; border: 2px solid rgba(255,255,255,0.1); }
.floating-cart:hover { transform: translateY(-5px) scale(1.05); background: #cc0000; }
.cart-icon { background: #fff; color: var(--primary); width: 45px; height: 45px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; position: relative; margin-right: 15px; }
.cart-badge { position: absolute; top: -5px; right: -5px; background: #111; color: #fff; font-size: 0.7rem; font-weight: 900; width: 20px; height: 20px; border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 2px solid #fff;}
.cart-info { display: flex; flex-direction: column; }
.cart-info strong { color: #fff; font-size: 1.1rem; font-weight: 900; }

#toast-container { position: fixed; top: 30px; right: 30px; z-index: 10000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast-msg { background: rgba(15,15,15,0.95); border-left: 4px solid var(--primary); color: #fff; padding: 16px 25px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); transform: translateX(120%); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(10px); }
.toast-msg.show { transform: translateX(0); }
.toast-logo { height: 24px; width: auto; }

/* =========================================================
   AJUSTES RESPONSIVOS 
========================================================= */
@media (max-width: 1280px) { .container { padding: 0 40px; } .nav-menu { gap: 15px; } .identity-grid { gap: 40px; } .footer-main-grid { gap: 40px; } }
@media (max-width: 1024px) { .container { padding: 0 30px; } .identity-grid, .social-hype-grid { grid-template-columns: 1fr; gap: 40px; } .footer-main-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; } .brand-col p { margin: 0 auto 30px auto; } .footer-socials { justify-content: center; } .contact-item { justify-content: center; text-align: center; } .identity-img { min-height: 400px; } .releases-cards-grid { grid-template-columns: repeat(2, 1fr); } .flex-header { flex-direction: column; align-items: flex-start; gap: 20px; } .mobile-only { display: none !important; } .artists-grid { grid-template-columns: repeat(3, 1fr); } .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .fb-flex { flex-direction: column; text-align: center; gap: 15px; } .legal-links { justify-content: center; } .documents-grid { grid-template-columns: 1fr; gap: 60px; } .banner-section { margin: 50px auto; } .artist-modal-layout { flex-direction: column; } .artist-modal-img { flex: none; height: 350px; } .artist-modal-info { padding: 30px 20px; flex: none; height: auto; overflow: visible; } .artist-modal-container { height: 90vh; overflow-y: auto; } }

@media (max-width: 768px) {
  .container { padding: 0 20px; } 
  .navbar { justify-content: space-between; padding: 12px 0; background: #000; z-index: 1001; }
  .nav-content { justify-content: space-between; align-items: center; }
  .menu-toggle { display: block; position: static; padding: 10px; font-size: 1.5rem; }
  .nav-logo-mobile { display: block; position: static; left: auto; top: auto; transform: none; }
  .nav-logo-mobile img { height: 70px; width: auto; display: block; margin: 0; }
  .nav-logo-item { display: none; }
  .nav-menu { position: fixed; top: -120%; left: 0; width: 100%; height: auto; max-height: 85vh; padding: 90px 20px 40px 20px; overflow-y: auto; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(15px); flex-direction: column; justify-content: flex-start; align-items: center; transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000; border-bottom: 2px solid var(--footer-primary-deep); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; gap: 20px; }
  .nav-menu.active { top: 0; }
  .mobile-close-item { display: flex; width: 100%; justify-content: flex-end; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 15px; margin-bottom: 10px; }
  .mobile-close-item button { background: none; border: none; color: #fff; font-size: 0.85rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
  .mobile-close-item button i { color: var(--primary); font-size: 1.5rem; }

  .editorial-actions { flex-direction: column; width: 100%; }
  .btn-corporate-solid, .btn-corporate-outline { width: 100%; display: block; text-align: center; }
  .identity-stats { flex-direction: column; gap: 25px; }
  .banner-link { border-radius: 12px; display: block; height: auto; }
  .banner-img { width: 100%; height: auto; max-height: 250px; object-fit: cover; object-position: center; border-radius: 12px; }
  
  .releases-cards-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding-bottom: 15px; margin: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .releases-cards-grid::-webkit-scrollbar { display: none; } 
  .release-card { min-width: 85vw; max-width: 85vw; scroll-snap-align: center; flex-shrink: 0; }
  .release-img-wrap { aspect-ratio: 1 / 1; width: 100%; }
  
  .mobile-only { display: flex !important; }
  .modal-header { flex-direction: column; align-items: center; text-align: center; gap: 15px; border-left: none; border-top: 4px solid var(--primary); padding-top: 15px; }
  .modal-controls { width: 100%; justify-content: center; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  
  /* Ajustes da Loja para Mobile - 2 colunas no tablet, 1 no celular */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .price-tag { font-size: 0.8rem; padding: 6px 12px; top: 10px; right: 10px; }
  .btn-buy-checkout { padding: 12px 15px; font-size: 0.85rem; }
  .product-feature-item { font-size: 0.75rem; }
  .btn-product-info { padding: 10px; font-size: 0.8rem; }
  
  /* Ajustes do Modal no Mobile para não quebrar a tela */
  .modal-overlay { padding: 15px; }
  .artist-modal-container { width: 100%; max-height: 90vh; border-radius: 12px; }
  #info-modal-prod-name { font-size: 1.8rem !important; line-height: 1.1; }
  #info-modal-prod-price { font-size: 1.6rem !important; margin-bottom: 15px !important; }
  
  .floating-cart { bottom: 20px; right: 20px; padding: 8px 20px 8px 8px;}
  .cart-icon { width: 40px; height: 40px; font-size: 1rem; }
  
  .social-hype-grid { grid-template-columns: 1fr; gap: 30px; }
  .social-card { padding: 20px; }
  .insta-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .yt-shorts-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0; margin: 0; overflow: visible; }
  .yt-short-wrapper { width: 100%; min-width: 0; aspect-ratio: 9 / 16; }
  .yt-short-info p { font-size: 0.65rem; }
  .yt-short-info span { font-size: 0.6rem; }
  .yt-play-icon { font-size: 2rem; }
  
  #toast-container { top: 20px; right: 20px; left: 20px; align-items: center; }
  .toast-msg { transform: translateY(-150%); width: 100%; justify-content: center; text-align: center; }
  .toast-msg.show { transform: translateY(0); }
}

@media (max-width: 480px) {
  .nav-logo-mobile img { height: 62px; }
  .pdf-portrait { aspect-ratio: auto; height: 350px; }
  .editorial-title, .identity-title { font-size: 2rem !important; word-break: break-word; hyphens: auto; }
  .identity-img { min-height: 300px; }
  .lancamentos-section { padding: 60px 0 15px 0; }
  .banner-section { margin: 40px auto; } 
  .corporate-identity-section { padding: 15px 0 40px 0; }
  .unique-links-bg { padding: 40px 0; }
  .social-hype-section { padding: 40px 0 60px 0; }
  .insta-avatar { width: 60px; height: 60px; }
  .insta-stats { gap: 15px; }
  .insta-stats strong { font-size: 1.1rem; }
  .unique-links-grid { gap: 15px; padding: 0 10px; }
  .unique-link-item { width: calc(50% - 8px); padding: 12px; border-radius: 16px; }
  .unique-link-item span { font-size: 0.75rem; }
  .artists-grid { grid-template-columns: 1fr; }
  
  /* GRID DE PRODUTOS MOBILE - 1 COLUNA PERFEITA */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-image-wrapper { padding: 10px; }
  
  /* Ajuste de Modal extra pequeno */
  .artist-modal-img { height: 250px; }
  #info-modal-prod-name { font-size: 1.5rem !important; }
  #info-modal-prod-price { font-size: 1.4rem !important; }
  #product-info-modal .btn-buy-checkout { width: 100%; margin-top: 10px; }
  
  #info-modal-name { font-size: 2.2rem; }
  .artist-stats-row { gap: 15px; flex-wrap: wrap; }
  .conquistas-grid { grid-template-columns: 1fr; }
}
