:root {
    --black: #0a0a0a;
    --blood-red: #8a0303;
    --gold: #d4af37;
    --silver: #c0c0c0;
    --fire-orange: #ff4500;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: white;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Barra de Progresso */
.progress-container {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 4px;
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--blood-red), var(--fire-orange));
    width: 0%;
}

/* Animação Fluida */
#fluid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Cabeçalho */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between; /* Alterado para space-between */
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 3, 3, 0.3);
    transition: all 0.3s ease;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    position: relative;
    display: flex;
    left: 0; /* Removido o translateX */
    transform: none; /* Removido o transform */
    margin-right: auto; /* Empurra o logo para a esquerda */
}

.logo_footer {
    height: 40px;
    width: auto;
    max-width: 120px;
}

/* Navegação */
nav {
    position: fixed;
    top: 0;
    right: -100%; /* Alterado de left para right */
    width: 100%; /* Agora ocupa 100% na mobile */
    height: 100vh;
    background: rgba(10, 10, 10, 0.98); /* Fundo mais opaco */
    backdrop-filter: blur(15px);
    z-index: 101;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0); /* Alterado de left para right */
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav.open {
    right: 0; /* Alterado de left para right */
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--blood-red);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--blood-red), var(--fire-orange));
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Seletor de Idioma */
.language-switcher .lang-btns {
    display: flex;
    gap: 10px;
    margin-left: 30px;
    padding: 5px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.lang-btn.active {
    color: #fff;
    font-weight: bold;
}

.lang-btn:hover {
    color: #fff;
}

/* Menu Mobile */
.menu-btn {
    display: none;
    position: absolute;
    right: 20px; /* Alterado de left para right */
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 102;
}

.menu-btn__burger,
.menu-btn__burger::before,
.menu-btn__burger::after {
    width: 30px;
    height: 3px;
    background-color: var(--blood-red);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-btn__burger {
    position: absolute;
    top: 13px;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-btn__burger::before {
    transform: translateY(-10px);
}

.menu-btn__burger::after {
    transform: translateY(10px);
}

.menu-btn.open .menu-btn__burger {
    background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg);
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg);
}

/* Seção Hero */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('IMG/integrantes\ da\ banda.png') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: transparent;
    background: linear-gradient(135deg, var(--silver) 0%, white 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--blood-red);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(138, 3, 3, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 3, 3, 0.6);
    background: linear-gradient(90deg, var(--blood-red), var(--fire-orange));
}

/* Seções Comuns */
section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--blood-red), var(--fire-orange));
}

/* Seção Biografia */
#biography {
    background: rgba(10, 10, 10, 0.9);
}

.bio-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.bio-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bio-image:hover img {
    transform: scale(1.05);
}

.bio-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--blood-red), transparent);
    opacity: 0.3;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.bio-image:hover::before {
    opacity: 0.5;
}

.bio-text {
    flex: 1;
}

.bio-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--silver);
}

/* Seção Videoclipes */
#clips {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('IMG/LOGO\ completa.png') no-repeat center center/cover;
}

.clips-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 3, 3, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção Álbuns */
.simple-player {
    margin: 20px auto;
    padding: 20px;
    background: #0a0a0a;
    border: 1px solid rgba(138, 3, 3, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.album-cover {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.now-playing {
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    text-align: center;
    font-size: 1.1rem;
}

.controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.controls button {
    background: var(--blood-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.controls button:hover {
    background: #8a0303;
    transform: scale(1.1);
}

.track-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.track {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.track:hover, .track.active {
    background: var(--blood-red);
    color: white;
}

.track.active {
    font-weight: bold;
}

/* Seção Fotos */
#photos {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('IMG/Festival\ Schornstein\ 2023\ \(1\).png') no-repeat center center/cover;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: 15px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(calc(var(--rotation) * 1deg));
}

.gallery-item:nth-child(odd) {
    --rotation: -2;
}

.gallery-item:nth-child(even) {
    --rotation: 2;
}

.gallery-item:nth-child(3n) {
    --rotation: -1;
}

.gallery-item:nth-child(3n+1) {
    --rotation: 1;
}

.gallery-item:hover {
    transform: scale(1.03) rotate(0deg);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(138, 3, 3, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Modal de Fotos */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--blood-red);
    transform: scale(1.1);
}

/* Seção Contato */
#contact {
    background: rgba(10, 10, 10, 0.9);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--blood-red);
    color: white;
}

.whatsapp-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.shows-container {
    width: 100%;
    margin-top: 50px;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.shows-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: white;
}

.show-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.show-info {
    display: flex;
    flex-direction: column;
}

.show-date {
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.show-location {
    color: var(--silver);
}

.show-tickets {
    display: inline-block;
    padding: 8px 15px;
    background: var(--blood-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.show-tickets:hover {
    background: linear-gradient(90deg, var(--blood-red), var(--fire-orange));
}

/* Rodapé */
footer {
    padding: 12px 10px;
    text-align: center;
    background: black;
    border-top: 1px solid rgba(138, 3, 3, 0.3);
}

footer .logo_footer {
    height: 60px;
    margin-bottom: 20px;
}

footer p {
    color: var(--silver);
    font-size: 0.9rem;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    top: -70px;
    right: 0;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: max-content;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    top: -80px;
}

.show-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.container {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: flex-start; /* Começa do topo */
    height: 100vh; /* Altura total da tela */
    padding-top: 150px; /* Desce a imagem */
}

.show-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.show-image:hover {
    transform: scale(1.1) rotate(1deg);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.3);
}


@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Layout Responsivo */
@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-btn {
        display: block;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        z-index: 101;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        border-left: 1px solid rgba(138, 3, 3, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 15px;
    }

    nav ul li a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }

    .language-switcher .lang-btns {
        margin-left: 0;
        justify-content: center;
        margin-top: 10px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

    /* Biografia */
    .bio-container {
        flex-direction: column;
    }

    .bio-image {
        margin-bottom: 30px;
    }

    /* Galeria */
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    /* Shows */
    .show-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .show-tickets {
        align-self: flex-start;
    }
}

@media (min-width: 769px) {
    .logo {
        position: static;
        margin-right: auto;
        transform: none;
        left: auto;
    }
    
    nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        display: block;
    }
    
    nav ul {
        display: flex;
        align-items: center;
    }
    
    .language-switcher {
        margin-left: 20px;
    }
    
    .menu-btn {
        display: none;
    }
}

/* Ajuste para telas médias (evitar sobreposição) */
@media (min-width: 769px) and (max-width: 1024px) {
    nav ul li {
        margin-left: 15px;
    }
    
    .logo {
        max-width: 120px;
    }
}