/* ##########################################################################
   1. CONFIGURAÇÕES GLOBAIS, FONTES E VARIÁVEIS
   ########################################################################## */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Plus+Jakarta+Sans:wght@200;400;700&family=Outfit:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Plus+Jakarta+Sans:wght@200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');



/* ##########################################################################
    REGRAS GERAIS
   ########################################################################## */
:root {
    --accent: #00f2ff;
    --accent-2: #ff0054;
    --bg-dark: #121212;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --primary-glow: #00f2ff;
    --secondary-glow: #7000ff;
    --text-muted: rgba(255, 255, 255, 0.6);
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: move 25s infinite alternate;
}

.orb-1 { width: 300px; height: 300px; background: var(--accent); top: -10%; left: -10%; }
.orb-2 { width: 300px; height: 300px; background: var(--accent-2); bottom: -10%; right: -5%; }


/* 2. BACKGROUND ANIMADO (ORBES) E CURSOR */
.bg-scene {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}



@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(150px, 100px) scale(1.3); }
}


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

html {
    /* Diminui a escala global sem quebrar cliques ou nitidez */
    /* 13px é aprox. 80% do padrão (16px) */
    font-size: 13px; 
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    margin: 0 auto;
}



/* ##########################################################################
   HERO SECTION (TÍTULO SÃO LUIZ)
   ########################################################################## */
.hero {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../img/a.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    /* Alterado para alinhar o conteúdo na parte de baixo */
    justify-content: flex-end; 
    align-items: center;
    text-align: center;
    /* Padding-bottom de 10vh para garantir que não cole no rodapé da tela */
    padding: 0 5% 10vh; 
}

.hero-main-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(3.5rem, 10vw, 12rem); 
    line-height: 1; 
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0.1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    white-space: nowrap;
    display: table;
    margin: 0 auto;
}

.sub-hero {
    font-size: clamp(1rem, 4vw, 2.5rem);
    font-weight: 200;
    letter-spacing: 15px;
    /* Ajustado para colar mais no título principal */
    margin-top: -5px; 
    color: var(--accent);
    text-transform: uppercase;
}

.hero-tagline {
    /* Reduzido para aproximar do sub-hero */
    margin-top: 15px; 
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 20px;
}

/* Container para alinhar os botões lado a lado */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; 
    /* Reduzido para aproximar da tagline */
    margin-top: 30px; 
}

/* Base do seu botão original com melhorias */
.btn-plasma {
    padding: 15px 40px; 
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* O Botão de Destaque (Neon) */
.btn-neon {
    background: var(--primary-glow)!important; 
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.btn-neon:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.1);
}

/* O Botão Secundário (Vazado) */
.btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-2px);
}


.music-marquee {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    overflow: hidden;
    margin: 40px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px; /* Espaço entre palavras e ícones */
    padding-right: 60px;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-content span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.marquee-content i {
    color: #00f2ff; /* Seu azul neon */
    width: 18px;
    height: 18px;
    opacity: 0.5;
}

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

/* Pausa ao passar o mouse para facilitar a leitura se quiserem */
.music-marquee:hover .marquee-content {
    animation-play-state: paused;
}

.final-invite {
    width: 100%;
    padding: 120px 5%; /* Espaço generoso para matar o vazio */
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.invite-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.invite-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.invite-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-main {
    padding: 18px 45px;
    background: #00f2ff; /* Seu azul neon */
    color: #000;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
}

.invite-badge-low {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-divider-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 100px 0 60px; /* Preenche o vazio com respiro, não com conteúdo */
    opacity: 0.2;
}

.footer-divider-clean .line {
    height: 1px;
    width: 100px;
    background: #fff;
}

.footer-divider-clean .dot {
    width: 4px;
    height: 4px;
    background: #00f2ff; /* Seu azul neon */
    border-radius: 50%;
}



/* ##########################################################################
   CARDS HOME
   ########################################################################## */

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 15px;
}

.modern-card {
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.modern-card:hover {
    border-color: var(--accent);
}

.card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.5) brightness(0.6);
    transition: 0.8s ease;
}

.modern-card:hover .card-image {
    filter: grayscale(0) brightness(0.8);
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.artist-main-info {
    padding: 0 15px;
    margin-bottom: 5px;
}

.artist-main-info h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.btn-profile-link {
    text-decoration: none;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.glass-footer {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.footer-line:last-child { margin-bottom: 0; }

.tag-genre {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tag-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.7;
    text-transform: uppercase;
}

/* ##########################################################################
   DIVIDIR GALERIAS
   ########################################################################## */

.gallery-section {
    padding: 100px 5%;
    max-width: 1600px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ffffff;
}

.empty-highlights-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.placeholder-card-neon {
    width: 100%;
    max-width: 800px;
    background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,212,255,0.05));
    border: 1px dashed rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.neon-icon-area {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    animation: pulse-neon 2s infinite ease-in-out;
}

.placeholder-title {
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-placeholder-action {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-placeholder-action:hover {
    background: #00d4ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

@keyframes pulse-neon {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    background: #00f2ff;
    color: #000;
}

.card-badge.highlight {
    background: #fff;
    color: #000;
}

.modern-card:hover .card-badge {
    transform: translateY(-3px);
}






/* ##########################################################################
   NAVEGAÇÃO (GLASS NAV) E BOTÕES DE AÇÃO MENU
   ########################################################################## */
.glass-nav {
   position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Altura fixa para garantir que o height: 100% do logo funcione */
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Ou use var(--nav-bg) se preferir */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    letter-spacing: 4px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 100%;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* 1. CONTAINER: Alinhamento e espaçamento idênticos ao .menu-links */
.nav-actions {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

/* 2. REGRAS DE OURO: Mesma tipografia, padding e transição de todos os botões */
.nav-actions a, 
.nav-actions a:link, 
.nav-actions a:visited {
    text-decoration: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.75rem;      /* Como definido no btn-nav-flat */
    font-weight: 800;        /* Peso extra bold solicitado */
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 15px;       /* Padding do btn-nav-flat */
    border-radius: 6px;     /* Bordas do btn-nav-flat */
    display: inline-block;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: #ffffff !important; /* Mantendo o branco blindado */
    border: none;
}

/* 3. HOVER PARA OS LINKS COMUNS (HOME, DJS, ETC) */
.nav-actions a:not(.btn-plasma-small):not(.btn-logout-index):hover {
    background: var(--accent);
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}

/* 4. REGRAS ESPECÍFICAS PARA O BOTÃO PLASMA (MEMBRO) */
/* Aqui aplicamos as regras de pílula (50px) e cores invertidas */
.nav-actions a.btn-plasma-small,
.nav-actions a.btn-plasma-small:link,
.nav-actions a.btn-plasma-small:visited {
    color: rgb(255, 255, 255) !important;
    padding: 10px 22px;      /* Padding maior como no seu btn-plasma-small */
    border-radius: 6px;     /* Formato pílula */
}

.nav-actions a.btn-plasma-small:hover {
    background: var(--accent) !important;
    color: rgb(0, 0, 0) !important;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
}

/* 5. BOTÃO LOGOUT (SAIR) - Se ele estiver dentro de nav-actions */
.btn-logout-index {
    border: 1px solid var(--accent-2) !important;
    color: var(--accent-2) !important;
    background: transparent !important;
}

.btn-logout-index:hover {
    background: var(--accent);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}


/* ##########################################################################
   MENSAGEM DE SUCESSO CONTRATAR BANDA
   ########################################################################## */
.alert-glass {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--accent);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
}

.alert-glass.error {
    background: rgba(255, 0, 84, 0.1);
    border-color: var(--accent-2);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.msg-status-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    position: relative;
    font-size: 1.2rem;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.pulse-dot-green {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}


/* ##########################################################################
   5. FILTRO DE GÊNERO MUSICAL (LADO A LADO)
   ########################################################################## */
.music-filter-wrapper {
    position: relative;
    z-index: 100;
    display: flex; /* Mudado para flex para alinhar lado a lado */
    flex-direction: row; /* Alinhamento horizontal */
    gap: 20px; /* Espaço entre os filtros */
    align-items: flex-start;
    margin: 20px 0 40px 4px;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.music-filter-title {
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 8px;
    margin-left: 5px;
}

.music-select-box {
    width: 260px;
    position: relative;
}

.music-select-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    cursor: pointer;
}

/* Novo estilo para o input de digitação dentro do botão */
.filter-input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-input::placeholder {
    color: white;
    opacity: 0.8;
}

.music-options-list {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: rgba(12, 12, 14, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001; /* Garante que a lista apareça sobre outros elementos */
}

.music-select-box.is-active .music-options-list { display: block; }

.music-opt-item {
    padding: 8px 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 6px;
}

.music-opt-item:hover, .music-opt-item.active {
    background: var(--accent);
    color: black;
}



/* ##########################################################################
   7. FOOTER (VERSÃO PREMIUM SaaS)
   ########################################################################## */
.main-footer {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 5% 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Coluna da Marca */
.footer-brand .footer-logo {
    height: 45px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

/* Títulos das Colunas */
.footer-links h4 {
    margin-bottom: 25px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent); /* Sua cor de destaque (ciano/azul) */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.5;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

/* Rodapé Final */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.7rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

.footer-bottom p {
    font-size: 0.75rem;
    margin: 0;
}

/* Ícones Sociais */
.footer-social-icons {
    display: flex;
    gap: 20px;
}

.footer-social-icons a {
    color: #fff;
    opacity: 0.4;
    font-size: 1.2rem;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-3px);
}


/* ##########################################################################
   8. MODAIS, TOASTS E ALERTAS
   ########################################################################## */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay.active { display: flex !important; }

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.95);
    padding: 15px 25px;
    border-left: 4px solid #ff4444;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.4s;
}

.toast.show { transform: translateY(0); opacity: 1; }



/* Container de posicionamento global */
body {
    position: relative;
    overflow-x: hidden; /* Evita scroll horizontal por causa da rotação */
}

.vertical-brand {
    position: absolute; /* Agora ele acompanha o conteúdo no scroll */
    right: 30px;
    transform: rotate(90deg);
    transform-origin: right center;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.vertical-brand span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: rgba(0, 242, 255, 0.2); /* Azul neon bem suave */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vertical-brand i {
    width: 14px;
    height: 14px;
    opacity: 0.4;
    transform: rotate(-90deg); /* Desrotaciona o ícone para ele ficar em pé */
}

/* Alturas diferentes para preencher o lado direito */
.v-1 { top: 45%; }
.v-2 { top: 65%; }
.v-3 { top: 85%; }

/* Efeito de brilho suave no hover (opcional) */
.vertical-brand:hover span {
    color: rgba(0, 242, 255, 0.5);
    transition: 0.3s;
}


/* --- Ajuste para Dispositivos Móveis --- */
@media (max-width: 768px) {
    .vertical-brand {
        /* Mantém o valor original, mas reduz a distância da borda para não invadir o conteúdo central */
        right: 10px; 
    }
    
    /* Caso o texto ainda fique muito grande em celulares muito pequenos, 
       ajustamos apenas a escala para que ele caiba na lateral */
    .vertical-brand span {
        font-size: 0.7rem; 
        letter-spacing: 4px;
    }
}





/* ==========================================================================
   SEÇÃO DE DESTAQUES MUSICOS - DESIGN COMPACTO CORRIGIDO
   ========================================================================== */

/* 1. ESTILOS DOS BADGES INTERNOS (SCORES) */
.badge-symbol { color: #14532d !important; font-size: 0.9rem; }
.badge-label { 
    color: #14532d !important; 
    font-family: 'Inter', sans-serif; 
    font-weight: 700; 
    font-size: 0.75rem; 
    letter-spacing: -0.2px; 
}
.badge-score { color: #FFD700 !important; font-weight: 800; font-size: 0.9rem; margin-left: 5px; }
.badge-star-icon { color: #FFD700 !important; font-size: 0.75rem; }

.badge-divider {
    width: 1px;
    height: 15px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 5px;
}

/* 2. CONFIGURAÇÃO DOS CARDS (TAMANHO REDUZIDO) */
.high-card {
    aspect-ratio: 4 / 5;
    width: 220px; 
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.high-card:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.high-image {
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    transition: 0.8s ease;
    z-index: 1;
}

.high-card:hover .high-image {
    filter: grayscale(0) brightness(0.8);
    transform: scale(1.08);
}

.high-badge-container {
    position: absolute;
    top: 10px;
    left: 13px;
    z-index: 10;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 200px;
    overflow: hidden;
}

.high-badge-container span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;      /* Força ficar em uma linha só */
    overflow: hidden;         /* Esconde o excesso */
    text-overflow: ellipsis;  /* Adiciona os "..." se o número for absurdo */
}

    /* Estilo específico para o número de visualizações */
.views-count {
    color: #0000ff; /* O azul que estava na imagem */
    min-width: 40px; /* Garante um espaço mínimo para o número */
}

.high-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.high-glass-footer {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.high-footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.high-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #fff;
    opacity: 0.8;
    text-transform: uppercase;
}

.high-tag-type {
    color: rgba(0, 242, 255, 0.8);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* 3. CONFIGURAÇÃO DO CARROSSEL (HORIZONTAL) */
.highlightsSwiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 20px 0 !important; /* Ajustado padding inferior */
}

.highlightsSwiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
}

.highlightsSwiper .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    /*opacity: 0.9;*/ 
    transform: scale(0.9);
    width: 260px !important;
}

/* 4. CONTROLES DE NAVEGAÇÃO (BOTÕES ABAIXO) */
.highlights-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    position: relative;
    z-index: 100;
    height: 50px;
}

.high-nav-btn {
    position: relative !important; /* Retira o posicionamento absoluto padrão do Swiper */
    margin: 0 !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(0, 242, 255, 0.3) !important;
    border-radius: 50% !important;
    color: #00f2ff !important;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.high-nav-btn:after {
    font-size: 14px !important; /* Tamanho da seta */
    font-weight: bold;
}

.high-nav-btn:hover {
    background: #00f2ff !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.high-pagination {
    position: relative !important;
    bottom: 0 !important;
    width: auto !important;
}

.high-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.high-pagination .swiper-pagination-bullet-active {
    background: #00f2ff;
    box-shadow: 0 0 8px #00f2ff;
}

/* Ajustes Gerais de Seção */
.gallery-section, 
.highlights-section {
    position: relative !important;
    overflow: visible !important;
    z-index: 1; 
}

/* 6. ANIMAÇÃO */
@keyframes sprayStamp {
    0%   { opacity: 0; transform: rotate(-6deg) scale(1.25); filter: blur(10px); }
    60%  { opacity: 1; filter: blur(0.5px); }
    100% { opacity: 1; transform: rotate(-6deg) scale(1); filter: blur(0); }
}


/* 4. BADGE "MELHOR PRESENÇA DE PALCO" - AJUSTE DESKTOP */
.section-spray-badge {
    position: absolute;
    bottom: -80px !important; /* Desce para a borda inferior no desktop */
    right: -15px;
    z-index: -1 !important;   /* Manda para trás de tudo (cards e conteúdo) */
    pointer-events: none;
    width: 300px;
    height: 185px;
    transform: rotate(-6deg);
    transform-origin: bottom right;
    animation: sprayStamp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.3s;
}

.section-spray-badge .ink-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px 12px 42px;
    gap: 2px;
    z-index: 2;
}

.section-spray-badge .ink-text span {
    display: block;
    font-family: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
    font-size: 2.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--primary-glow);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    text-shadow:
        1px 1px 0 #000,
        2px 3px 6px rgba(0, 0, 0, 1),
        0 0 18px rgba(233, 15, 15, 0);
}

.section-spray-badge .ink-text span:nth-child(2) {
    font-size: 2.5rem;
    margin-left: 12px;
}

.section-spray-badge {
    position: absolute;
    bottom: 0px;
    right: -10px;
    z-index: 50;
    pointer-events: none;
    width: 400px;
    height: 185px;
    transform: rotate(-6deg);
    transform-origin: bottom right;
    animation: sprayStamp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.3s;
}


/* No seu CSS */
.high-card::after {
    content: "VER PERFIL COMPLETO";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(0, 242, 255, 0.9); /* Ciano para combinar */
    color: #000;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 15;
    white-space: nowrap;
}

.high-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Escondido no Desktop, aparece no Mobile */
.mobile-cta-badge {
    display: none;
}


/* =============================================================
   AJUSTES MOBILE - FOCO CENTRALIZADO E DESIGN OTIMIZADO
   ============================================================= */

@media (max-width: 768px) {

    /* Container precisa permitir respiro lateral */
    .highlightsSwiper {
        overflow: visible;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Wrapper alinhado corretamente */
    .highlightsSwiper .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    /* 1. Ajuste do Slide para foco central */
    .highlightsSwiper .swiper-slide {
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0.5;
        transform: scale(0.85);
        display: flex;
        justify-content: center;

        flex: 0 0 280px;
        max-width: 280px;
    }

    /* Card ativo (o que está no centro) */
    .highlightsSwiper .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    /* 2. Card e CTA */
    .high-card {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .mobile-cta-badge {
        display: flex;
        position: absolute;
        bottom: 50px;
        right: 12px;
        background: rgba(0, 242, 255, 0.95);
        color: #000;
        padding: 6px 14px;
        border-radius: 8px;
        font-size: 0.7rem;
        font-weight: 900;
        align-items: center;
        gap: 6px;
        z-index: 20;
        box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* 3. Spray Badge Centralizado no Fundo (INTOCADO) */
    .section-spray-badge {
        position: absolute !important;
        bottom: -60px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) rotate(-4deg) !important;
        width: 250px !important;
        height: 110px !important;
        z-index: -1 !important;
        opacity: 0.6;
    }

    .section-spray-badge .ink-text {
        padding: 0 !important;
        text-align: center;
        width: 100%;
    }

    .section-spray-badge .ink-text span {
        font-size: 1.3rem !important;
        letter-spacing: 2px !important;
    }

    /* 4. Navegação Mobile */
    .highlights-navigation {
        margin-top: 25px;
        gap: 50px;
        bottom: 50px;
    }
    
}

@media (max-width: 768px) {
    .mobile-cta-badge {
        display: flex;
        position: absolute;
        bottom: 40px; /* Acima do rodapé de localização */
        right: 10px;
        background: rgba(0, 242, 255, 0.9);
        color: #000;
        padding: 5px 12px;
        border-radius: 6px;
        font-size: 0.65rem;
        font-weight: 900;
        align-items: center;
        gap: 5px;
        z-index: 20;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
}

/* Ajuste extra para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 380px) {

    .highlightsSwiper .swiper-slide {
        flex: 0 0 240px;
        max-width: 240px;
    }

    .high-card {
        max-width: 220px;
    }
}


/* ==========================================================================
   SEÇÃO DE ARTISTAS LOCAIS POR CIDADE (GRID)
   ========================================================================== */
.local-card {
    position: relative;
    width: 220px; 
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.local-card:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.local-card-bg {
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.local-card:hover .local-card-bg {
    transform: scale(1.15);
}

.local-info-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    pointer-events: none;
}

.local-tag {
    color: #00f2ff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.local-info-overlay h4 {
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.5px;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

.local-location-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.btn-local-view {
    pointer-events: auto;
    color: #00f2ff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* Container do Filtro - Alinhado à Esquerda */
.local-filter-bar {
    display: flex;
    justify-content: flex-start; /* Alinha com o início do título */
    width: 100%; /* Ocupa a largura total para não centralizar */
    margin: 15px 0 40px 0; /* Espaçamento equilibrado abaixo do título */
}

.filter-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Rótulo "PROCURAR" */
.input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.input-group i {
    font-size: 0.8rem;
}

/* O Seletor (Select) moderno */
.filter-form select {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    padding: 5px 30px 5px 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2); /* Divisor vertical */
    
    /* Remove a seta padrão do navegador para colocar uma personalizada */
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300f2ff' 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: right center;
}

/* Estilizando as opções (Dropdown aberto) */
.filter-form select option {
    background: #111; /* Fundo escuro para combinar com o site */
    color: #fff;
    padding: 10px;
}



/* ##########################################################################
   6. RESPONSIVIDADE MOBILE (REVISADA E ORGANIZADA)
   ########################################################################## */
@media screen and (max-width: 768px) {
    /* --- CONFIGURAÇÕES GERAIS --- */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
    }

    /* --- 1. NAVBAR --- */
    .glass-nav {
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.1) !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .logo-img {
        max-height: 50px;
        height: 100%;
        width: auto;
        object-fit: contain;
    }


    /* --- 2. HERO PRINCIPAL --- */
    .hero {
        /* Aumentei para 250px para descer bem o título e os elementos */
        padding: 100px 20px 70px !important; 
        height: auto !important;
        min-height: 70vh;
        /* Mantido exatamente como o seu */
        background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('../img/b.png') !important;
        background-position: center 20% !important; 
        background-size: cover !important;
        background-attachment: scroll !important;
    }

    .hero-main-title {
        font-size: 15vw !important;
        line-height: 0.9 !important;
    }

    .sub-hero { 
        font-size: 1.4rem !important; 
        letter-spacing: 3px !important; 
        margin-top: 5px !important; /* Aproxima do título */
    }

    .hero-tagline {
        margin-top: 5px !important; /* Aproxima do sub-hero */
        font-size: 14px !important;   
        line-height: 1.4 !important;
        letter-spacing: 0.5px !important;
        padding: 0 15px !important;  
        text-align: center !important;
    }

    .hero-actions {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important; 
        margin-top: 20px !important; /* Reduzido para colar na tagline */
        width: 100% !important;
        padding: 0 10px !important;
    }

    .btn-plasma {
        flex: 1 !important; 
        padding: 12px 5px !important; 
        font-size: 10px !important; 
        text-align: center !important;
        white-space: nowrap !important; 
        max-width: 160px !important; 
    }

        .btn-user-status, .btn-plasma-small, .btn-logout-index {
        padding: 6px 10px !important;
        font-size: 10px !important;
    }

    .high-card::after {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* Caso haja algum efeito de hover que mude o card no toque, resetamos aqui */
    .high-card:hover::after {
        display: none !important;
    }



    /* --- SEÇÃO DE DESTAQUES: ASPECTO HARD COM VIDRO REAL --- */
    .high-card {
        width: 210px !important; 
        height: 270px !important; 
        border-radius: 12px !important;
        position: relative;
        overflow: hidden;
        background: #000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
    }
    /* SELO (VERSÃO COM TRAVA DE LARGURA) */
    .high-badge-container {
        position: absolute;
        top: 10px;
        left: 8px;
        z-index: 10;
        background: #ffffff;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        /* TRAVA DE SEGURANÇA */
        max-width: 200px; /* Impede que o selo cresça demais para o lado */
        overflow: hidden; /* Corta o que sobrar */
    }

    /* Ajuste para o texto não quebrar linha e colocar reticências se for gigante */
    .high-badge-container span {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;      /* Força ficar em uma linha só */
        overflow: hidden;         /* Esconde o excesso */
        text-overflow: ellipsis;  /* Adiciona os "..." se o número for absurdo */
    }

    /* Estilo específico para o número de visualizações */
    .views-count {
        color: #0000ff; /* O azul que estava na imagem */
        min-width: 40px; /* Garante um espaço mínimo para o número */
    }

    .high-overlay { 
        position: absolute;
        inset: 0;
        padding: 0 !important; /* MANTÉM ZERO PARA COLAR A BARRA */
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    /* A BARRA DE VIDRO (CORRIGIDA: CLARA E TRANSLÚCIDA) */
    .high-glass-footer {
        width: 100% !important;
        /* Voltando para o branco translúcido do Modern Card */
        background: rgba(255, 255, 255, 0.12) !important; 
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        
        padding: 10px 12px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-sizing: border-box !important;
    }

    /* Detalhes do texto na barra para brilhar no vidro */
    .high-location {
        font-size: 0.75rem !important;
        color: #ffffff !important;
        text-shadow: 0 1px 4px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 600;
    }

    .high-tag-type {
        font-size: 0.65rem !important;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.8) !important;
        text-transform: uppercase;
    }

    /* Infos do Artista logo acima do vidro */
    .high-artist-main-info {
        padding: 0 12px !important;
        margin-bottom: 8px;
    }

    .high-category { 
        color: #00f2ff; /* var(--accent) */
        font-size: 0.65rem !important; 
        font-weight: 900;
        text-transform: uppercase;
    }

    .high-artist-main-info h3 { 
        font-size: 1rem !important; 
        font-weight: 800;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    }

    /* --- 4. SEÇÃO ARTISTAS LOCAIS (GRID DE BUSCA) --- */
    .local-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 5px !important;
    }

    .local-card {
        height: 220px !important;
        width: 100% !important;
    }

    .local-info-overlay h4 { font-size: 0.9rem !important; }

    /* Exibe apenas a cidade e oculta qualquer outra descrição na aba de locais */
    .local-location-text { 
        display: block !important; 
        font-size: 0.6rem !important;
        opacity: 0.7;
    }

    /* --- 5. GRID GERAL DE ARTISTAS (ABA PRINCIPAL) --- */
    .artist-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }

    .artist-grid .modern-card {
        aspect-ratio: 4 / 6 !important;
        height: auto !important;
        border-radius: 10px !important;
        margin-bottom: 5px;
    }

    /* Ajuste da Barra de Vidro no rodapé do card */
    .artist-grid .glass-footer {
        width: 100% !important;
        padding: 10px 8px !important;
        background: rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(10px) !important;
    }

    .artist-grid .artist-main-info h3 {
        font-size: 0.9rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Informações de Gênero e Localização dentro do card geral */
    .artist-grid .tag-genre, 
    .artist-grid .tag-type, 
    .artist-grid .card-location {
        font-size: 0.9rem !important;
        font-weight: 700;
        text-transform: uppercase;
    }

    .music-filter-wrapper {
        flex-direction: row !important; /* Mantém lado a lado se couber */
        flex-wrap: wrap !important;     /* Quebra se a tela for muito pequena */
        gap: 10px !important;           /* Reduz espaço entre Cidade e Gênero */
        padding: 0 10px !important;
        margin-bottom: 30px !important;
        justify-content: flex-start !important;
        margin-top: 40px !important;
    }

    .search-group {
        width: 48% !important; /* Faz cada filtro ocupar quase metade da tela */
        min-width: 140px !important;
    }

    .music-select-box {
        width: 100% !important;
    }

    .music-select-btn {
        padding: 6px 10px !important; /* Botão mais fino */
        height: 35px !important;      /* Altura reduzida */
        border-radius: 8px !important;
    }

    .filter-input {
        font-size: 0.65rem !important; /* Fonte menor para não quebrar */
        letter-spacing: 0px !important;
    }

    .music-filter-title {
        font-size: 0.6rem !important; /* Título minúsculo em cima */
        margin-bottom: 4px !important;
    }

    .music-select-btn i {
        width: 12px !important; /* Ícone menor */
    }
    .music-select-btn {
        height: 38px !important;
        font-size: 0.8rem !important;
    }

.main-footer {
    padding: 40px 20px !important;
    text-align: left !important; /* Alinha o texto para a esquerda para ficar mais limpo */
}

.footer-content {
    display: grid !important;
    /* 1fr para a marca (topo) e depois duas colunas iguais para os links */
    grid-template-columns: 1fr 1fr !important; 
    gap: 20px !important;
}

/* Faz a parte da Marca (Logo e texto) ocupar as duas colunas inteiras no topo */
.footer-brand {
    grid-column: 1 / -1; 
    text-align: center; /* Centraliza a logo e o texto principal */
    margin-bottom: 20px;
}

.footer-brand p {
    margin: 10px auto !important;
    max-width: 100% !important;
}

/* Garante que os títulos dos links fiquem bem posicionados */
.footer-links h4 {
    font-size: 0.8rem !important;
    margin-bottom: 12px !important;
}

.footer-links ul {
    list-style: none !important;
    padding: 0 !important;
}
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}
/* ##########################################################################
    MENU HAMBÚRGUER PADRONIZADO (.nav-actions)
   ########################################################################## */

/* Botão Ícone */
.mobile-menu-icon {
    display: none; /* Escondido no Desktop */
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-icon div {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 968px) {
    .mobile-menu-icon {
        display: block;
    }

    .nav-actions {
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100vh;
        width: 70%; /* Padronizado para 70% conforme solicitado */
        background: rgba(3, 3, 3, 0.95); /* Opacidade 0.95 padronizada */
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border); /* Usando sua variável de borda */
        
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px !important; /* Espaçamento padronizado */
        
        transform: translateX(100%); /* Esconde fora da tela */
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-actions.nav-active {
        transform: translateX(0%);
    }

    /* Animação das linhas (Transformação em X) */
    .mobile-menu-icon.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--accent); /* Usando sua variável accent */
    }
    
    .mobile-menu-icon.toggle .line2 {
        opacity: 0;
    }
    
    .mobile-menu-icon.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--accent);
    }
}

/* Estilo profissional para o título da vitrine */
.discovery-header-saas {
    margin: 60px 0 30px 0;
    padding-left: 15px;
    border-left: 4px solid var(--accent);
    display: block;
    width: 100%;
}

.discovery-header-saas h2 {
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    margin-top: -100px;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .discovery-header-saas {
        margin: 60px 0 20px 0;
    }
    .discovery-header-saas h2 {
        font-size: 1.2rem;
    }
}

/* Estilos para Páginas Legais */
.legal-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0; /* Para o glass-footer colar na borda */
    cursor: default !important; /* Remove o cursor de link do card */
}

.legal-content {
    padding: 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.legal-content h3 {
    color: var(--accent);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Ajuste para o botão voltar no glass-footer */
.legal-container .btn-profile-link {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.legal-container .btn-profile-link:hover {
    background: var(--accent);
    color: #000;
}

/* Faz o placeholder sumir quando o input recebe foco */
.filter-input:focus::placeholder {
    color: transparent;
}

/* Garante uma transição suave (opcional) */
.filter-input::placeholder {
    transition: color 0.2s ease;
}