:root {
    --bg-dark: #0a0a0c;
    --bg-lighter: #15151a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --accent-primary: #7000ff;
    --accent-secondary: #ff007f;
    --glass-bg: rgba(25, 25, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Image Treatment for uniform Rockstar vibe */
.klinger-photo {
    filter: contrast(1.15) saturate(0.85) brightness(0.9);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.klinger-photo:hover {
    filter: contrast(1.25) saturate(1.1) brightness(1.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    max-height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-secondary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: #fff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px; /* Mantém o formato de pílula do botão hero, mas proporcional ao menu */
    font-size: 0.85rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    border: none;
}

.nav-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 22px rgba(255, 0, 127, 0.6);
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent-primary));
}

.nav-btn::after {
    display: none !important; /* Remove the underline effect from navbar links */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('./assets/hero-new.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    text-align: center;
}

/* Vignette Overlay & Cinematic Blur */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Camada 1: Desfoque gradual esquerdo sutil (Cinematic Blur atenuado) */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    /* Aplica o desfoque sutil na extrema esquerda da imagem */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 15%, rgba(0,0,0,0) 45%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 15%, rgba(0,0,0,0) 45%);
}

/* Camada 2: Recuo do Guitarrista + Vinheta Radial (Halo de Destaque no Cantor) */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* linear-gradient: Escurece gradualmente a porção esquerda (onde está o guitarrista)
       radial-gradient: Mantém o halo de luz suave no cantor e escurece as bordas gerais */
    background: 
        linear-gradient(to right, rgba(10, 10, 12, 0.88) 0%, rgba(10, 10, 12, 0.6) 20%, rgba(10, 10, 12, 0) 55%),
        radial-gradient(circle at 60% 45%, rgba(10, 10, 12, 0) 0%, rgba(10, 10, 12, 0.3) 45%, rgba(10, 10, 12, 0.9) 95%);
}

.hero-content {
    position: absolute;
    bottom: 15%;
    width: 100%;
    z-index: 3;
    padding: 2rem;
}

.subtitle {
    font-family: var(--font-body);
    color: var(--accent-secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title {
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 127, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    color: var(--accent-secondary);
    border: 2px solid var(--accent-secondary);
}

.btn-outline:hover {
    background: var(--accent-secondary);
    color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Sections */
.section {
    padding: 8rem 2rem;
}

.dark-section {
    background-color: var(--bg-lighter);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.section-title.left-align {
    text-align: left;
}

/* Music Section */
.music-grid {
    display: flex;
    justify-content: center;
}

.album-card {
    display: flex;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
}

.album-video {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    background: #000;
}

.album-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.album-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.album-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.stream-links {
    display: flex;
    gap: 1rem;
}

.stream-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stream-btn:hover {
    background: rgba(112, 0, 255, 0.15);
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.3);
    transform: translateY(-2px);
}

.stream-btn-youtube:hover {
    background: rgba(255, 0, 0, 0.15) !important;
    border-color: #FF0000 !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4) !important;
}

/* Tour Section */
#tour {
    background-image: url('./assets/hero-luau.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
}

#tour::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 12, 0.85); /* Escurece a imagem para não atrapalhar o texto da agenda */
    z-index: 0;
}

#tour .container {
    position: relative;
    z-index: 1;
}

/* Dynamic Shows Styles */
.shows-loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    gap: 1rem;
    color: var(--text-secondary);
}

.shows-loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--accent-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.shows-table-container {
    padding: 1rem;
    margin: 0 auto;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
}

.shows-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.8rem;
    text-align: left;
}

.shows-table thead tr th {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--accent-secondary);
    font-size: 1rem;
    letter-spacing: 1.5px;
    padding: 0.8rem 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.shows-table tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shows-table tbody tr:hover {
    background: rgba(112, 0, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.15);
}

.shows-table tbody tr td {
    padding: 1.2rem 1.5rem;
    vertical-align: middle;
    font-size: 1.05rem;
}

.shows-table tbody tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: 1px solid var(--glass-border);
}

.shows-table tbody tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-right: 1px solid var(--glass-border);
}

.show-date-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.show-date-badge {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    text-align: center;
    min-width: 68px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.25);
    flex-shrink: 0;
}

.show-date-badge .day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.show-date-badge .month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
}

.show-local-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 0.5px;
}

.show-city {
    color: var(--text-secondary);
    font-size: 1rem;
}

.show-status-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.status-available {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.status-soldout {
    background: rgba(255, 0, 127, 0.12);
    color: #ff007f;
    border: 1px solid rgba(255, 0, 127, 0.25);
}

.status-free {
    background: rgba(0, 191, 255, 0.12);
    color: #00bfff;
    border: 1px solid rgba(0, 191, 255, 0.25);
}

.show-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.show-btn-primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 10px rgba(112, 0, 255, 0.3);
}

.show-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 127, 0.4);
}

.show-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
}

.show-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Empty State / Error State */
.shows-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.shows-empty-state .empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(112, 0, 255, 0.2)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(255, 0, 127, 0.5)); }
}

.shows-empty-state h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.shows-empty-state p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Instagram Feed */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.insta-post {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-decoration: none;
    color: white;
}

.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 12, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1.2rem;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

/* Footer */
.footer {
    background: #050507;
    padding: 6rem 2rem 2rem;
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.social-hub h3, .newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    color: white;
    border-color: var(--accent-primary);
    background: rgba(112, 0, 255, 0.1);
}

.social-icon:hover svg {
    transform: scale(1.15);
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-secondary);
}

.newsletter-form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Classes para simetria visual fluida */
.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -2.5rem !important;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    line-height: 1.6;
}

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

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #ffffff !important;
    text-decoration: none !important;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.btn-instagram:hover {
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6);
    transform: translateY(-2px);
}

.btn-tiktok {
    background: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-tiktok:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-youtube {
    background: #FF0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.btn-youtube:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

.contact-content-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-description {
    margin-bottom: 2rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-note {
    display: block;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    grid-column: 1 / -1;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-secondary);
    outline-offset: 4px;
}

/* Mobile Responsiveness */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

@media (max-width: 968px) {
    .album-card {
        flex-direction: column;
        text-align: center;
    }
    
    .album-video {
        width: 100%;
        max-width: 100%;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .section-title.left-align {
        text-align: center;
    }

    .about-buttons {
        justify-content: center;
    }
    


    .footer .container {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-primary);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.4);
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #5a00cc;
    transform: translateY(-5px);
    color: #fff;
}

/* ==========================================
   Showcase de Vídeo e Glass Cards (Global)
   ========================================== */
.video-showcase {
    margin-top: 2rem;
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.album-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.album-info {
    padding: 0;
    text-align: center;
}

.album-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.album-info p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stream-links-centered {
    display: flex;
    justify-content: center;
}

.btn-stream-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1.1rem;
    max-width: 300px;
    text-decoration: none;
}

.glass-card {
    padding: 3rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 100%; /* Fixa o menu ancorado dinamicamente abaixo da barra */
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        align-items: center;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 0.8rem 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px; /* Impede botões excessivamente esticados */
        margin: 0 auto;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section { 
        padding: 4rem 1.5rem; 
    }
    
    .title { 
        font-size: 2.5rem; 
    }
    
    .hero-content { 
        bottom: 5%; 
        padding: 1.5rem; 
    }
    
    .about-content, 
    .music-grid, 
    .insta-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    /* Shows Table Mobile Layout transformation */
    .shows-table, 
    .shows-table thead, 
    .shows-table tbody, 
    .shows-table tr, 
    .shows-table td {
        display: block;
        width: 100%;
    }
    
    .shows-table thead {
        display: none; /* Esconde o cabeçalho no mobile */
    }
    
    .shows-table tbody tr {
        margin-bottom: 1.5rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--glass-border);
        padding: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .shows-table tbody tr:hover {
        transform: translateY(-2px);
        background: rgba(112, 0, 255, 0.05);
    }
    
    .shows-table tbody tr td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 0;
        border: none !important;
        border-radius: 0 !important;
        font-size: 1rem;
    }
    
    .shows-table tbody tr td::before {
        content: attr(data-label);
        font-family: var(--font-heading);
        text-transform: uppercase;
        color: var(--text-secondary);
        font-size: 0.85rem;
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    /* Regras especiais para células específicas no mobile */
    .shows-table tbody tr td.col-date {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .shows-table tbody tr td.col-date::before {
        display: none; /* Data centralizada não precisa de label */
    }
    
    .shows-table tbody tr td.col-action {
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
        margin-top: 0.5rem;
        justify-content: center;
    }
    
    .shows-table tbody tr td.col-action::before {
        display: none; /* Ação não precisa de label */
    }
    
    .shows-table tbody tr td.col-action .show-btn {
        width: 100%;
        text-align: center;
    }

    .social-cta-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 3rem;
        gap: 1rem;
    }

    .social-cta-container .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-actions { 
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1.5rem;
        gap: 1rem;
    }
    
    .contact-actions .btn { 
        width: 100%; 
        justify-content: center; 
    }
    
    /* Fix Parallax Distortion on Mobile (iOS Bug) */
    .hero, #tour {
        background-attachment: scroll !important;
        background-position: center top !important;
    }
    
    /* Prevent image stretching without breaking custom logos or fixed height items */
    img:not(.logo) {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Soften cinematic blur and focus staging lighting on mobile screens */
    .hero-overlay::before {
        backdrop-filter: blur(1.5px);
        -webkit-backdrop-filter: blur(1.5px);
        -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%);
        mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 30%);
    }
    
    .hero-overlay::after {
        background: 
            linear-gradient(to right, rgba(10, 10, 12, 0.8) 0%, rgba(10, 10, 12, 0) 40%),
            radial-gradient(circle at 60% 45%, rgba(10, 10, 12, 0) 0%, rgba(10, 10, 12, 0.4) 55%, rgba(10, 10, 12, 0.85) 100%);
    }

    /* Otimização de Tabelas Responsivas e Painéis Pescados no Mobile */
    .glass-card {
        padding: 1.5rem !important;
    }

    .video-showcase {
        padding: 1.5rem;
    }

    .rider-table, 
    .rider-table thead, 
    .rider-table tbody, 
    .rider-table tr, 
    .rider-table td {
        display: block;
        width: 100%;
    }
    
    .rider-table thead {
        display: none;
    }
    
    .rider-table tr {
        margin-bottom: 1.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--glass-border);
        padding: 1rem;
    }
    
    .rider-table tr:last-child {
        margin-bottom: 0;
    }
    
    .rider-table tr td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.95rem;
        text-align: right;
    }
    
    .rider-table tr td:last-child {
        border-bottom: none;
    }
    
    .rider-table tr td::before {
        content: attr(data-label);
        font-family: var(--font-heading);
        text-transform: uppercase;
        color: var(--accent-secondary);
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        font-weight: 600;
        text-align: left;
        margin-right: 1rem;
    }
}

