@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Oswald:wght@400;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.band-name,
.nav-link,
.section-title,
.integrantes h3,
.agenda .show-info h3,
.contato .contato-text h3,
.footer .footer-content p,
.footer .footer-dev {
    font-family: 'Bebas Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-small {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.band-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}


.nav-link:hover {
    color: #f5d000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f5d000;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}


.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6)),
        radial-gradient(circle at center, transparent 30%, rgba(245, 208, 0, 0.08) 70%);
    z-index: 1;
    pointer-events: none;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulseRed {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 
        0 0 30px rgba(245, 208, 0, 0.6),
        0 0 60px rgba(245, 208, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.8);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: 
            0 0 20px rgba(245, 208, 0, 0.4),
            0 0 40px rgba(245, 208, 0, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.8);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(245, 208, 0, 0.8),
            0 0 80px rgba(245, 208, 0, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.8);
    }
}

.hero-title {
    font-size: clamp(1.9rem, 4.8vw, 3.8rem);
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 
        0 0 20px rgba(80, 255, 170, 0.3),
        0 0 40px rgba(80, 255, 170, 0.18),
        3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: gentleGlow 3s ease-in-out infinite alternate;
    width: 100%;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
}

@keyframes gentleGlow {
    0% {
        text-shadow: 
            0 0 15px rgba(80, 255, 170, 0.25),
            0 0 30px rgba(80, 255, 170, 0.15),
            3px 3px 6px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 25px rgba(80, 255, 170, 0.35),
            0 0 50px rgba(80, 255, 170, 0.2),
            3px 3px 6px rgba(0, 0, 0, 0.8);
    }
}

.hero-slogan {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    width: 100%;
    font-family: 'Oswald', Arial, sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    min-width: 200px;
}

.btn-primary {
    background: #f5d000;
    color: #000000;
    box-shadow: 0 4px 15px rgba(245, 208, 0, 0.4);
}

.btn-primary:hover {
    background: #f5d000;
    transform: translateY(-3px);
    color: #000000;
    box-shadow: 0 8px 25px rgba(245, 208, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #f5d000;
    border-bottom: 2px solid #f5d000;
    transform: rotate(45deg);
}


.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f5d000;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f5d000;
}

.repertorios {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.repertorios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 208, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.repertorios-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    font-weight: 300;
}

.videos {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
}

.videos-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    .videos-card {
        grid-template-columns: 1fr 1.1fr;
        padding: 2.5rem 3rem;
    }
}

.videos-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 3.4vw, 2.2rem);
    color: #f5d000;
}

.videos-description {
    margin-top: 0.5rem;
    color: #cccccc;
}

.videos-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1.2rem;
    margin: 1.2rem 0 1.6rem;
}

.videos-checklist li {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
    background: radial-gradient(circle at 30% 30%, #25d366 0%, #1ea653 60%);
    position: relative;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
}

.check-icon::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.videos-cta {
    display: inline-block;
    margin-top: 0.5rem;
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.video-thumb:hover img {
    transform: scale(1.04);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-overlay svg {
    width: 74px;
    height: 74px;
    color: #ffffff;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8));
    opacity: 0.9;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.video-modal.active { display: block; }

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.video-modal-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(95vw, 980px);
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    overflow: hidden;
}

.video-aspect { position: relative; width: 100%; padding-top: 56.25%; }
.video-aspect iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.video-modal-close {
    position: absolute;
    right: 10px;
    top: 8px;
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 6px 10px;
}

.repertorio-slider {
    max-width: 900px;
    margin: 0 auto;
}

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

.repertorio-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #ffffff;
    border: 2px solid #333333;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.repertorio-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(245, 208, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.repertorio-btn:hover::before {
    width: 300px;
    height: 300px;
}

.repertorio-btn:hover {
    border-color: #f5d000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 208, 0, 0.3);
}

.repertorio-btn.active {
    background: linear-gradient(135deg, #f5d000 0%, #f5d000 100%);
    border-color: #f5d000;
    box-shadow: 0 8px 25px rgba(245, 208, 0, 0.5);
    transform: translateY(-3px);
    color: #000000;
}

.repertorio-content {
    position: relative;
    min-height: 400px;
}

.repertorio-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.repertorio-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.repertorio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.song-item {
    background: transparent;
    padding: 0;
    border: none;
    color: #ffffff;
    font-size: calc(0.9rem + 0.3vw);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: songFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.song-item:nth-child(1) { animation-delay: 0.05s; font-size: 1.4rem; }
.song-item:nth-child(2) { animation-delay: 0.1s; font-size: 1.1rem; }
.song-item:nth-child(3) { animation-delay: 0.15s; font-size: 1.3rem; }
.song-item:nth-child(4) { animation-delay: 0.2s; font-size: 1rem; }
.song-item:nth-child(5) { animation-delay: 0.25s; font-size: 1.5rem; }
.song-item:nth-child(6) { animation-delay: 0.3s; font-size: 1.2rem; }
.song-item:nth-child(7) { animation-delay: 0.35s; font-size: 1.1rem; }
.song-item:nth-child(8) { animation-delay: 0.4s; font-size: 1.3rem; }
.song-item:nth-child(9) { animation-delay: 0.45s; font-size: 1rem; }
.song-item:nth-child(10) { animation-delay: 0.5s; font-size: 1.4rem; }
.song-item:nth-child(11) { animation-delay: 0.55s; font-size: 1.2rem; }
.song-item:nth-child(12) { animation-delay: 0.6s; font-size: 1.1rem; }
.song-item:nth-child(13) { animation-delay: 0.65s; font-size: 1.3rem; }
.song-item:nth-child(14) { animation-delay: 0.7s; font-size: 1rem; }

@keyframes songFadeIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.song-item::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5d000, #f5d000);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.song-item:hover {
    color: #f5d000;
    transform: scale(1.1) translateY(-5px);
    text-shadow: 0 0 20px rgba(245, 208, 0, 0.6);
}

.song-item:hover::before {
    width: 100%;
}


.song-item:nth-child(odd) {
    color: #ffffff;
}

.song-item:nth-child(even) {
    color: #e5e5e5;
}

.song-item:nth-child(3n) {
    font-weight: 600;
}

.song-item:nth-child(5n) {
    color: #cccccc;
    font-style: italic;
}


.integrantes {
    padding: 3.5rem 0;
    background: #111111;
}

.integrantes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.integrante-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.integrante-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(245, 208, 0, 0.2);
}

.integrante-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f5d000;
}

.integrante-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.integrante-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.integrante-card p {
    color: #f5d000;
    font-weight: 500;
}


.agenda {
    padding: 3.5rem 0;
    background: #0a0a0a;
}

.agenda-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.copy-agenda-link {
    background: #f5d000;
    color: #000000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.copy-agenda-link svg {
    width: 18px;
    height: 18px;
}

.copy-agenda-link:hover {
    background: #f5e050;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245, 208, 0, 0.3);
}

.copy-agenda-link:active {
    transform: translateY(0);
}

.shows-list {
    max-width: 900px;
    margin: 0 auto;
    max-height: none;
}

.shows-list:has(.show-item:nth-child(5)) {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.shows-list::-webkit-scrollbar {
    width: 8px;
}

.shows-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.shows-list::-webkit-scrollbar-thumb {
    background: #f5d000;
    border-radius: 4px;
}

.shows-list::-webkit-scrollbar-thumb:hover {
    background: #d4b600;
}

.show-item {
    display: flex;
    align-items: stretch;
    background: #1a1a1a;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f5d000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
}

.show-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(245, 208, 0, 0.2);
}

.show-item.past-event {
    filter: blur(1px) grayscale(60%);
    opacity: 0.5;
    border-left-color: #666;
    pointer-events: none;
}

.show-item.past-event::after {
    content: 'ENCERRADO';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: #999;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    border: 1px solid #666;
    z-index: 10;
}

.show-item.past-event:hover {
    transform: none;
    box-shadow: none;
}

.show-item.past-event .show-date {
    background: #666;
    color: #333;
}

.show-item.past-event .show-time {
    color: #666;
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5d000;
    color: #000000;
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
    height: fit-content;
}

.show-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.show-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.show-info {
    flex: 1;
    min-width: 250px;
}

.show-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.show-address {
    color: #cccccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.location-icon,
.time-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.show-time {
    color: #f5d000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.show-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
    min-width: 140px;
}

.show-link {
    background: #f5d000;
    color: #000000;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.show-link svg {
    width: 16px;
    height: 16px;
}

.show-link:hover {
    background: #f5e050;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245, 208, 0, 0.3);
}

.show-link-map {
    background: #f5d000;
    color: #000000;
}

.show-link-map:hover {
    background: #f5e050;
    box-shadow: 0 4px 10px rgba(245, 208, 0, 0.4);
}

.show-link-info {
    background: #f5d000;
    color: #000000;
}

.show-link-info:hover {
    background: #f5e050;
    box-shadow: 0 4px 10px rgba(245, 208, 0, 0.4);
}



.redes-sociais {
    padding: 3.5rem 0;
    background: #111111;
    text-align: center;
}

.redes-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #f5d000;
    box-shadow: 0 10px 20px rgba(245, 208, 0, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f5d000, #f5d000);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.tiktok:hover {
    background: #000000;
}

.social-link.youtube:hover {
    background: #f5d000;
}


.contato {
    padding: 3.5rem 0;
    background: #0a0a0a;
}

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

.contato-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contato-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.contato-info {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.contato-item {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contato-item strong {
    color: #f5d000;
    display: block;
    margin-bottom: 0.5rem;
}

.contato-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-item a:hover {
    color: #f5d000;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25d366;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}


.footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer .footer-left .logo-small {
    height: 60px;
    width: auto;
}

.footer .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-content p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-dev {
    font-size: 0.9rem;
    color: #666666;
}

@media (max-width: 768px) {
    .footer .footer-content {
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        text-align: right;
        gap: 0.5rem;
    }
    .footer .footer-left {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    .footer .footer-right {
        width: 100%;
        align-items: flex-end;
        text-align: right;
    }
    .footer-content p {
        margin-bottom: 0.3rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .repertorios-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .repertorio-controls {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .repertorio-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .repertorio-grid {
        padding: 1rem;
        gap: 1rem 1.5rem;
    }
    
    .song-item {
        font-size: 1rem !important;
    }
    
    .song-item:nth-child(1),
    .song-item:nth-child(5),
    .song-item:nth-child(10) {
        font-size: 1.2rem !important;
    }
    
    .integrantes-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .agenda-subtitle {
        flex-direction: column;
        font-size: 1rem;
        padding: 0 1rem;
    }

    .copy-agenda-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .show-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .show-date {
        width: 100%;
        max-width: 120px;
    }

    .show-info {
        width: 100%;
        min-width: unset;
    }

    .show-address {
        justify-content: center;
        text-align: center;
    }

    .show-time {
        justify-content: center;
    }

    .show-actions {
        width: 100%;
        min-width: unset;
    }

    .show-link {
        width: 100%;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .repertorio-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
    
    .song-item {
        font-size: 0.9rem !important;
    }
    
    .integrantes-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        padding: 0 1rem;
    }
}