/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Compensação para links de âncora com header fixo */
section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.5;
    /* overflow-x: hidden; */
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

:root {
    --laranja: #ff8e2b;
    --laranja-escuro: #da701f;
    --preto: #181818;
    --branco: #fff;
    --cinza: #f5f5f5;
    --vermelho: #981c1b;
}

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

.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.align-center {
    align-items: center;
}
.gap-16 {
    gap: 16px;
}
.p-1 {
    padding: 16px;
}
.p-2 {
    padding: 32px;
}
.p-3 {
    padding: 48px;
}
.p-4 {
    padding: 64px;
}
.btn-slider {
    width: 70px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.fill-vermelho {
    fill: var(--vermelho);
}
.fill-laranja {
    fill: var(--laranja);
}
.fill-branco {
    fill: var(--branco);
}
.icon-svg {
    fill: var(--vermelho);
    transition: fill 0.2s;
}

.instagram-feed a {
    visibility: hidden !important;
}

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

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* HEADER */
.header {
    position: fixed;
    z-index: 100;
    width: 100%;
    padding: 32px 0 0 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 42px;
}

.menu-hamburguer {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    position: relative;
}

.menu-hamburguer span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--branco);
    border-radius: 2px;
    transition: 0.3s ease;
    transform-origin: center;
}

.menu-hamburguer.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-hamburguer.active span:nth-child(2) {
    opacity: 0;
}

.menu-hamburguer.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: var(--preto);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.menu-mobile.active {
    right: 0;
    z-index: 40;
}

.menu-mobile-content {
    padding: 80px 30px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-mobile-logo {
    max-width: 200px;
    padding: 10px;
    margin: 0 auto;
}

.menu-links {
    list-style: none;
}

.menu-links li {
    margin-bottom: 20px;
}

.menu-links a {
    color: var(--branco);
    font-size: 1rem;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: var(--laranja);
}

.menu-social {
    margin-top: 40px;
}

.menu-social h4 {
    color: var(--branco);
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}

.menu-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-social-links a {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--laranja);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.menu-social-links a:hover {
    background: var(--laranja-escuro);
}

.menu-social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Overlay para fechar menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility:visible
}

/* Responsividade do Header */
@media (max-width: 768px) {
    .header {
        padding: 20px 0 0 0;
    }
    
    .logo img {
        height: 36px;
    }
    
    .menu-hamburguer {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px 0 0 0;
    }
    
    .logo img {
        height: 32px;
    }
}

/* SOCIAL BAR */
.social-bar {
    /* position: absolute;
    left: 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.social-bar ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-bar img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-bar-text {
    color: var(--branco);
    font-size: 1rem;
    margin-top: 8px;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
}

.plataformas-bar {
    /* position: absolute; */
    z-index: 3;
    /* right: 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.plataformas-bar ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plataformas-bar img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.plataformas-bar-text {
    color: var(--branco);
    font-size: 1rem;
    margin-top: 8px;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
}

/* BANNER PRINCIPAL AJUSTADO */
.banner-principal {
    /* position: relative;
    width: 100%;
    min-height: 520px;
    height: 100vh;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IFRAME DO YOUTUBE - OCUPAR TODO O ESPAÇO */
.banner-principal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border: none;
}

.banner-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.header-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 50;
}

.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 1) 95%);
    z-index: 1;
    pointer-events: none;
}

.banner-content {
    /* position: absolute; */
    /* left: 12%; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    color: var(--branco);
}

.banner-logo {
    width: 100%;
    max-width: 600px;
}

.banner-content h2 {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    line-height: 0.9;
}

/* Responsividade Banner Principal */
@media (max-width: 1024px) {
    .banner-content {
        left: 8%;
    }
    
    .banner-content h2 {
        font-size: 3.2rem;
    }
    
    .social-bar, .plataformas-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner-principal {
        min-height: 400px;
        max-height: 500px;
    }
    
    .banner-content {
        left: 5%;
        /* bottom: 20%; */
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
    }
    
    .btn-assista {
        font-size: 0.7rem;
        gap: 6px;
    }
    
    .btn-assista img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .banner-principal {
        min-height: 350px;
        max-height: 400px;
    }
    
    .banner-content {
        left: 4%;
        bottom: 15%;
    }
    
    .banner-content h2 {
        font-size: 2rem;
        line-height: 0.95;
    }
    
    .btn-assista {
        font-size: 0.6rem;
        gap: 4px;
        margin-top: 12px;
    }
    
    .btn-assista img {
        width: 12px;
        height: 12px;
    }
}

.btn-assista {
    color: var(--laranja);
    border-radius: 32px;
    font-family: Verdana, sans-serif;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s;
    text-shadow: none;
    display: flex;
    letter-spacing: 0.05em;
    align-items: center;
    gap: 8px;
}

.btn-assista img {
    width: 16px;
    height: 16px;
}

/* BARRA DE NOME */
.barra-nome {
    width: 100%;
    background: var(--vermelho);
    color: var(--branco);
    font-size: 0.6rem;
    text-align: center;
    padding: 6px 0;
    letter-spacing: 0.8em;
    overflow: hidden;
    white-space: nowrap;
}

.barra-nome span {
    display: flex;
    animation: scroll-text 20s linear infinite;
    gap: 15px;
}

@keyframes scroll-text {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsividade Barra Nome */
@media (max-width: 768px) {
    .barra-nome {
        font-size: 0.55rem;
        padding: 5px 0;
        letter-spacing: 0.6em;
    }
    
    .barra-nome span {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .barra-nome {
        font-size: 0.5rem;
        padding: 4px 0;
        letter-spacing: 0.4em;
    }
    
    .barra-nome span {
        animation-duration: 12s;
    }
}

/* PRÓXIMOS SHOWS - CORREÇÃO DE OVERFLOW E CENTRALIZAÇÃO */
.proximos-shows {
    display: flex;
    width: 100%;
    min-height: 420px;
    height: 70vh;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

.shows-col {
    width: 50%;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    overflow: hidden;
}

.shows-col-left {
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
}

.shows-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

/* SLIDER DAS DATAS */
.shows-datas-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--vermelho);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}
.shows-datas-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  min-width: 300px;
  margin: 0 16px;
  position: relative;
}
.shows-datas {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.shows-btn-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.btn-voltar, .btn-avancar {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.btn-voltar img, .btn-avancar img {
  width: 50px;
  height: 25px;
}

.btn-slider img {
  width: 50px;
  height: 25px;
}

.show-item {
    background: none;
    border-radius: 0;
    padding: 18px 30px;
    text-align: center;
    color: #fff;
    min-width: 140px;
    width: 140px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.data {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
}

.data-mes {
    font-size: 1.3rem;
    color: var(--laranja);
    font-weight: 200;
}

.local {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 2px;
}
.local img {
    width: 10px;
    height: 10px;
}

.shows-icon-peixe {
    position: absolute;
    left: 0px;
    top: -180px;
    width: 500px;
    z-index: 2;
    pointer-events: none;
    max-width: 50vw;
}

/* Media query para o ícone do peixe em telas menores */
@media (max-width: 768px) {
    .shows-icon-peixe {
        left: -100px;
        width: 300px;
        max-width: 40vw;
    }
}

@media (max-width: 480px) {
    .shows-icon-peixe {
        left: -30px;
        width: 200px;
        max-width: 35vw;
    }
}

.shows-col-right {
    background: url(images/bg-shows.jpg) no-repeat top center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 32px 0 48px;
    min-width: 320px;
    position: relative;
}

.shows-title h2 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 16px;
    text-align: left;
}

/* Responsividade Próximos Shows */
@media (max-width: 1024px) {
    .proximos-shows {
        flex-direction: column;
        min-height: 500px;
        height: auto;
    }

    .shows-datas-bar {
        bottom: 0;
    }
    
    .shows-col {
        width: 100%;
        min-height: 250px;
    }
    
    .shows-col-right {
        padding: 32px 24px;
        align-items: center;
        text-align: center;
    }
    
    .shows-title h2 {
        font-size: 3rem;
    }
    
    .shows-icon-peixe {
        left: -80px;
        width: 400px;
        bottom: -100px;
    }
}

@media (max-width: 768px) {
    .proximos-shows {
        min-height: 400px;
    }
    
    .shows-col {
        min-height: 200px;
    }
    
    .shows-col-right {
        padding: 24px 16px;
    }
    
    .shows-title h2 {
        font-size: 2.5rem;
    }
    
    .btn-agenda {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .shows-datas-viewport {
        width: 85vw;
    }
    
    .show-item {
        padding: 12px;
        min-width: 100px;
        width: 100px;
    }
    
    .data {
        font-size: 2.8rem;
    }
    
    .data-mes {
        font-size: 1rem;
    }
    
    .local {
        font-size: 0.85rem;
    }
    
    .shows-datas-viewport {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .shows-title h2 {
        font-size: 2rem;
    }
    
    .shows-datas-viewport {
        width: 90vw;
    }
    
    .show-item {
        padding: 10px;
        min-width: 90px;
        width: 90px;
    }
    
    .data {
        font-size: 2.2rem;
    }
    
    .data-mes {
        font-size: 0.9rem;
    }
    
    .local {
        font-size: 0.8rem;
    }
    
    .shows-datas-viewport {
        max-width: 300px;
    }
}

.btn-agenda {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 16px;
    padding: 2px 12px;
    font-size: 0.8rem;
    transition: background 0.2s;
    text-align: center;
    cursor: pointer;
}

.btn-agenda:hover {
    background: #fff;
    color: var(--laranja);
}

/* GALERIA */
.galeria {
    background: var(--laranja);
    padding: 48px 0 32px 0;
    z-index: 1;
    position: relative;
}

.galeria h2 {
    color: var(--branco);
    font-size: 3.8rem;
    font-weight: 900;
}

/* Responsividade Galeria */
@media (max-width: 1024px) {
    .galeria h2 {
        font-size: 3.2rem;
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .galeria {
        padding: 32px 0 24px 0;
    }
    
    .galeria h2 {
        font-size: 2.5rem;
        margin-left: 20px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .galeria h2 {
        font-size: 2rem;
        margin-left: 16px;
        margin-bottom: 20px;
    }
}

.galeria-fotos {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.galeria-fotos img {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* RELEASE */
.release {
    background: url(images/banner-release.jpg) no-repeat top center;
    background-size: cover;
    color: var(--branco);
    padding: 48px 0 32px 0;
    position: relative;
}


/* Responsividade Release */
@media (max-width: 1024px) {
    .release h2 {
        font-size: 3.2rem;
        margin-left: 40px;
    }
    
    .release-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .release-text {
        width: 100%;
    }
    
    .release-icon-peixe {
        width: 600px;
        right: -120px;
    }
}

@media (max-width: 768px) {
    .release {
        padding: 32px 0 24px 0;
        background-position: right center;
    }
    
    .release h2 {
        font-size: 2.5rem;
        margin-left: 20px;
        margin-bottom: 24px;
    }
    
    .release-container {
        flex-direction: column;
        padding: 0 16px;
        gap: 20px;
    }
    
    .release-text {
        width: 100%;
    }
    
    .release-icon-peixe {
        width: 400px;
        right: -60px;
        bottom: -180px;
    }
    
    .release-overlay {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .release h2 {
        font-size: 2rem;
        margin-left: 16px;
        margin-bottom: 20px;
    }
    
    .release-text {
        font-size: 0.85rem;
    }
    
    .release-icon-peixe {
        width: 300px;
        right: -40px;
        bottom: -130px;
    }
}

.release-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

.release-text {
    width: 60%;
    font-size: 0.8rem;
    z-index: 10;
}

.release-img {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.release-img img {
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.release-icon-peixe {
    position: absolute;
    right: 0px;
    bottom: -320px;
    width: 750px;
    pointer-events: none;
    max-width: 60vw;
}

.release-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--preto) 0%, rgba(0, 0, 0, 0.0) 100%);
    pointer-events: none;
}

/* OUÇA AGORA - LAYOUT ORIGINAL RESPONSIVO */
.ouca-agora {
    background: var(--laranja);
    min-height: 600px;
    padding: 40px 0;
    overflow: hidden;
}

.ouca-container {
    position: relative;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    padding: 40px;
}

.ouca-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    top: 40px;
    left: 150px;
    z-index: 10;
    padding: 10px 20px;
    background: var(--vermelho);
    color: var(--branco);
}

.ouca-content {
    position: absolute;
    bottom: 100px;
    right: 125px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    color: var(--branco);
}

.ouca-content p {
    font-size: 1.1rem;
    margin: 8px 0;
    line-height: 1.2;
    margin-left: 40px;
}

.ouca-youtube {
    background: var(--vermelho);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.ouca-youtube img {
    width: 160px;
}

.ouca-img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ouca-plataformas {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: var(--branco);
    padding: 10px 20px;
}

.ouca-plataformas img {
    height: 36px;
    max-width: 100px;
    object-fit: contain;
}

/* Responsividade Ouça Agora */
@media (max-width: 1024px) {
    .ouca-container {
        height: 500px;
        padding: 30px;
    }
    
    .ouca-title {
        font-size: 2.4rem;
        left: 100px;
        top: 30px;
    }
    
    .ouca-content {
        bottom: 80px;
        right: 80px;
    }
    
    .ouca-img {
        width: 450px;
        height: 450px;
    }
    
    .ouca-plataformas {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .ouca-agora {
        min-height: 500px;
        padding: 30px 0;
    }
    
    .ouca-container {
        height: 500px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .ouca-title {
        position: absolute;
        font-size: 2.2rem;
        margin-bottom: 20px;
        padding: 8px 16px;
    }
    
    .ouca-img {
        position: static;
        width: 320px;
        height: 320px;
        transform: none;
        margin: 20px 0;
        border-radius: 12px;
    }
    
    .ouca-content {
        position: static;
        text-align: center;
        margin: 20px 0;
        order: 3;
    }
    
    .ouca-content p {
        font-size: 1rem;
        margin: 6px 0;
        margin-left: 0;
    }
    
    .ouca-youtube {
        padding: 8px 16px;
        justify-content: center;
    }
    
    .ouca-youtube img {
        width: 120px;
    }
    
    .ouca-plataformas {
        position: static;
        transform: none;
        margin-top: 20px;
        gap: 16px;
        padding: 8px 16px;
        order: 4;
    }
    
    .ouca-plataformas img {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .ouca-agora {
        min-height: 400px;
        padding: 20px 0;
    }
    
    .ouca-container {
        height: auto;
        padding: 16px;
        gap: 16px;
    }
    
    .ouca-title {
        font-size: 1.8rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .ouca-img {
        width: 280px;
        height: 280px;
        margin: 16px 0;
    }
    
    .ouca-content {
        margin: 16px 0;
    }
    
    .ouca-content p {
        font-size: 0.9rem;
        margin: 4px 0;
    }
    
    .ouca-youtube {
        padding: 6px 12px;
    }
    
    .ouca-youtube img {
        width: 100px;
    }
    
    .ouca-plataformas {
        gap: 12px;
        padding: 6px 12px;
        flex-wrap: wrap;
        margin-top: 16px;
    }
    
    .ouca-plataformas img {
        height: 24px;
        max-width: 60px;
    }
}

@media (max-width: 360px) {
    .ouca-title {
        font-size: 1.6rem;
    }
    
    .ouca-img {
        width: 250px;
        height: 250px;
    }
    
    .ouca-content p {
        font-size: 0.85rem;
    }
    
    .ouca-youtube img {
        width: 90px;
    }
    
    .ouca-plataformas img {
        height: 22px;
        max-width: 50px;
    }
}


/* RODAPÉ MODERNIZADO */
.footer {
    background: linear-gradient(135deg, var(--preto) 0%, #0a0a0a 100%);
    color: var(--branco);
    padding: 60px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--laranja) 0%, transparent 25%, transparent 75%, var(--vermelho) 100%);
    opacity: 0.05;
    pointer-events: none;
}

.footer-decoration {
    position: absolute;
    right: -100px;
    bottom: -150px;
    width: 400px;
    pointer-events: none;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-contato h4,
.footer-business h4,
.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--laranja);
    position: relative;
}

.footer-contato h4::after,
.footer-business h4::after,
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--laranja);
    border-radius: 1px;
}

.footer-contact-item {
    margin-bottom: 16px;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--laranja);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.footer-contact-item p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.footer-business-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-presskit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--branco);
    border-radius: 28px;
    padding: 2px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--laranja);
}

.btn-presskit:hover {
    background: transparent;
    color: var(--laranja);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 142, 43, 0.2);
}

.btn-presskit img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}


.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

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

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--laranja);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copy span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-credits {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-credits a {
    color: var(--laranja);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-credits a:hover {
    opacity: 1;
}

/* Responsividade Footer */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 0 0;
    }
    
    .footer-main {
        gap: 40px;
    }
    
    .footer-info {
        gap: 30px;
    }
    
    .footer-decoration {
        width: 300px;
        right: -80px;
        bottom: -120px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer-decoration {
        width: 250px;
        right: -60px;
        bottom: -100px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0 0;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-info {
        gap: 25px;
    }
    
    .footer-logo {
        width: 150px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social img {
        width: 18px;
        height: 18px;
    }
    
    .btn-presskit {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footer-decoration {
        display: none;
    }
}

/* Media queries adicionais para ajustes finos */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .shows-title h2 {
        font-size: 1.8rem;
    }
    
    .galeria h2,
    .release h2 {
        font-size: 1.8rem;
        margin-left: 12px;
    }
    
    .ouca-title {
        font-size: 1.4rem;
        left: 16px;
        top: 12px;
    }
    
    .show-item {
        padding: 8px;
        min-width: 55px;
    }
    
    .data {
        font-size: 2rem;
    }
    
    .data-mes {
        font-size: 0.8rem;
    }
    
    .local {
        font-size: 0.75rem;
    }
    
    .album-card {
        width: 160px;
        min-width: 160px;
        height: 120px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.galeria-grid .album-card {
    animation: fadeInUp 0.6s ease forwards;
}

.galeria-grid .album-card:nth-child(2) {
    animation-delay: 0.1s;
}

.galeria-grid .album-card:nth-child(3) {
    animation-delay: 0.2s;
}

.galeria-grid .album-card:nth-child(4) {
    animation-delay: 0.3s;
}

.galeria-grid .album-card:nth-child(5) {
    animation-delay: 0.4s;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hover states para dispositivos com hover */
@media (hover: hover) {
    .btn-assista:hover {
        background: rgba(255, 142, 43, 0.1);
        color: var(--branco);
    }
    
    .album-card:hover {
        transform: translateY(-5px);
    }
}

/* GALERIA GRID DE ÁLBUNS - SLIDER HORIZONTAL */
.galeria {
  position: relative;
}

.galeria-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.galeria-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0 20px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.galeria-grid::-webkit-scrollbar {
  display: none;
}

/* Botões de navegação da galeria */
.galeria .container:last-child,
.galeria .container.flex {
  margin-top: 30px;
}

.galeria .btn-slider {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.galeria .btn-slider:hover {
  transform: translateX(5px);
}

.galeria .btn-slider img {
  width: 50px;
  height: 25px;
  transition: filter 0.3s ease;
}

/* .galeria .btn-slider:hover img {
  filter: brightness(0) invert(1);
} */
.album-card {
  position: relative;
  width: 280px;
  min-width: 280px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
  flex-grow: 0;
}
.album-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.album-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
  color: white;
  padding: 30px 20px 16px 20px;
  z-index: 2;
}
.album-info h3 {
  font-size: 1.1rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.album-info p {
  font-size: 0.65rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
/* Responsividade da galeria slider */
@media (max-width: 1200px) {
  .galeria-grid {
    gap: 12px;
    padding: 0 16px;
  }
  .album-card {
    width: 240px;
    min-width: 240px;
    height: 190px;
  }
  .galeria .btn-slider img {
    width: 50px;
    height: 25px;
  }
}

@media (max-width: 900px) {
  .galeria-grid {
    gap: 10px;
    padding: 0 12px;
  }
  .album-card {
    width: 200px;
    min-width: 200px;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .galeria-grid {
    gap: 8px;
    padding: 0 8px;
  }
  .album-card {
    width: 180px;
    min-width: 180px;
    height: 140px;
  }
  .album-info h3 {
    font-size: 1.1rem;
  }
  .album-info p {
    font-size: 0.85rem;
  }
  .galeria .container:last-child {
    margin-top: 20px;
  }
  .galeria .btn-slider {
    width: 45px;
    height: 45px;
  }
  .galeria .btn-slider img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .album-card {
    width: calc(100vw - 60px);
    min-width: calc(100vw - 60px);
    height: 250px;
  }
  .galeria .gap-16 {
    gap: 12px;
  }
}




.btn-social {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-social:hover {
    transform: translateY(-3px);
}