@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');


#navbar nav .pagina-atual {
    background: linear-gradient(#000000, #000000) padding-box,
    linear-gradient(to right, #120075, #0077ff) border-box;
    /* background: linear-gradient(to right, #120075, #0077ff) padding-box; */
    border: 1px solid linear-gradient(to right, #120075, #0077ff) padding-box;
}

.conteudo-banda {
    display: flex;
    justify-content: center;
    align-items: center;
    /* bottom: 20%; */
    margin: 6rem 0 1rem .5rem;
    animation: appear_on_scroll linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}

.conteudo-banda .imagem-banda {
    margin: 0 1rem 0 0;
    padding: 0;
}

.conteudo-banda .imagem-banda img {
    width: 690px;
    height: 720px;
    object-fit: cover;
    border-radius: 1rem;
    image-rendering: optimizeQuality;
}

.conteudo-banda .texto-banda {
    box-sizing: border-box;
    background: rgba(255,255,255,0.85);
    color: #181818;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.08em;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 400;
    transition: background 0.3s;
    width: 1108px;
    display: block;
    font-family: 'Signika', sans-serif;
    text-wrap: wrap;
    margin: 0 0 0 2rem;
}

.conteudo-banda .texto-banda .banda-logo {
    margin: 0 auto 1rem auto;
    padding: 0;
    position: static;
}

.conteudo-banda .texto-banda .banda-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.conteudo-banda .texto-banda .banda-logo img:nth-child(2) {
    /* width: 500px; */
}

.conteudo-banda .texto-banda p {
    /* max-height: 50vh; */
    /*  margin-inline: auto;
    overflow: hidden;
    white-space: wrap;
    border-right: 1px solid transparent;
    animation: typing 3s steps(30) forwards, blink 0.1ms step-end infinite; */
    font-family: 'Signika', sans-serif;
    font-size: 1.5rem;
    text-wrap: wrap;
    text-align: start;
    /* margin: 5rem 0 0 0; */
}

/* p:nth-child(2) {
    margin: 3rem 0 0 0;
    text-decoration: line-through;
}
 */

p:nth-child(3) {
    margin: 3rem 0 0 0;
}


@keyframes typing {
    from {
        width: 0;
        height: 0;
    }

    to {
        width: 100%;
        max-height: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}


.album-banda {
    /* width: 1920px; */
    /* height: 360px; */
    display: flex;
    /* justify-content: space-bet; */
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
    flex-wrap: wrap;
    margin: 3rem 1rem 2rem 1rem;
    animation: appear_on_scroll linear;
    animation-timeline: view();
    animation-range: entry 0 cover 20%;
}

.album-banda .album {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 .1rem 0 .1rem;
    /* border: 1px solid #000000; */
}

.album-banda .imagem-album img {
    width: 360px;
    height: 360px;
    object-fit: contain;
    border-radius: 1rem;
    padding: 0;
    /* border: 1px solid #000000; */
    /* margin: 0 0 1rem 0; */
    transition: transform 0.3s ease;
}

.album-banda .imagem-album img:hover {
    transform: scale(1.12);
}

.album-banda .album-descricao {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    margin: 1rem 0 1rem 0;
    font-family: Circular;
}

.ablum-banda .album-descricao .album-titulo {
    /* font-family: Circular-Black; */
}

.album-banda .album-descricao .album-genero {
    text-align: center;
    /* font-family: Circular; */
}


/* @view-transition {
    navigation: auto;
} */

@keyframes appear_on_scroll {
    from {
        opacity: 0;
        /* scale: 0.5; */
        /* clip-path: isnet(100% 100% 0 0); */
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        /* scale: 1; */
        /* clip-path: inset(0 0 0 0); */
        transform: translateX(0px);
    }
}

@font-face {
    font-family: Circular;
    src: url('/font/circular-std-medium-500.ttf');
}

/* @font-face {
    font-family: Circular-Bold;
    src: url('/font/CircularSpotifyText-Bold.otf');
} */

@media screen and (max-width: 390px) {
    .conteudo-banda {
        margin: 6rem 2rem 2rem 0.1rem;
    }

    .conteudo-banda .imagem-banda {
        margin: 0 5rem 0 0;
    }

    .conteudo-banda .imagem-banda img {
        width: 150px;
        height: 150px;
    }

    .conteudo-banda .texto-banda {
        width: 100%;
        height: auto;
        padding: 1rem;
    }

    .conteudo-banda .texto-banda .banda-logo img {
        width: 80px;
    }

    .conteudo-banda .texto-banda p {
        font-size: 1rem;
        text-wrap: wrap;
    }

    p:nth-child(3) {
        margin: 1rem 0 0 0;
    }

    .album-banda {
        margin: 1rem .5rem 1rem .5rem;
    }

    /* .album-banda .album {
        margin: ;
    } */

    .album-banda .imagem-album img {
        width: 150px;
        height: 150px;
    }

}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Visually hidden class for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid #4A90E2;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (forced-colors: active) {
    .banda-logo img {
        border: 1px solid currentColor;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Footer redesign to match site style */
footer, .footer-content {
    background: #000;
    color: #fff;
    font-family: 'Dosis', sans-serif;
    border-top: 2px solid #120075;
    box-shadow: 0 -2px 16px 0 rgba(0,0,0,0.12);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 0 0 1rem 1rem;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    gap: 2rem;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
    border-radius: 0.3rem;
    padding: 0.2rem 0.7rem;
}
.footer-nav a:hover,
.footer-nav a:focus {
    color: #120075;
    background: #fff;
    text-decoration: none;
}
.footer-contact-form-area {
    flex: 1 1 250px;
    min-width: 250px;
    max-width: 350px;
}
.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #181818;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px #0003;
}
.footer-contact-form h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.footer-contact-form label {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.footer-contact-form input,
.footer-contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #333;
    border-radius: 0.3rem;
    background: #222;
    color: #fff;
    font-size: 1rem;
    resize: vertical;
}
.footer-contact-form textarea {
    min-height: 60px;
    max-height: 200px;
}
.footer-contact-form button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.3rem;
    background: #120075;
    color: #fff;
    font-size: 1rem;
    cursor: not-allowed;
    opacity: 0.7;
    transition: background 0.2s;
}
.footer-contact-form button:active {
    background: #0077ff;
}
.footer-info {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-info address {
    font-style: normal;
    color: #aaa;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
}
.footer-info a {
    color: #fff;
    text-decoration: underline;
}
.footer-info a:hover,
.footer-info a:focus {
    color: #120075;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}
.footer-social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #222;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: background 0.2s, opacity 0.2s;
}
.footer-social a:hover,
.footer-social a:focus {
    background: #120075;
    opacity: 1;
}
.footer-brand {
    flex-basis: 100%;
    text-align: center;
    margin-top: 2rem;
    color: #aaa;
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .footer-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    .footer-info, .footer-contact-form-area {
        max-width: 100%;
    }
    .footer-brand {
        margin-top: 1rem;
    }
}

/* --- FILMES DESIGN UPDATE TO MATCH BANDAS --- */

.filme-destaque {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6rem 0 1rem .5rem;
    animation: appear_on_scroll linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
    background: none;
    box-shadow: none;
    border-radius: 0;
    max-width: 100vw;
    gap: 2rem;
}
.filme-cartaz {
    margin: 0 1rem 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cartaz-placeholder {
    width: 690px;
    height: 720px;
    object-fit: cover;
    border-radius: 1rem;
    image-rendering: optimizeQuality;
    background: #e0e0e0;
    color: #181818;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Signika', sans-serif;
}
.filme-sinopse {
    box-sizing: border-box;
    background: rgba(255,255,255,0.85);
    color: #181818;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.08em;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 400;
    transition: background 0.3s;
    width: 1108px;
    height: 720px;
    display: flex;
    align-items: center;
    font-family: 'Signika', sans-serif;
    margin: 0 0 0 2rem;
}
.sinopse-placeholder {
    font-size: 1.5rem;
    text-align: start;
    font-family: 'Signika', sans-serif;
    text-wrap: wrap;
}

.filme-diretor-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 3rem 1rem 2rem 1rem;
    animation: appear_on_scroll linear;
    animation-timeline: view();
    animation-range: entry 0 cover 20%;
    gap: 2rem;
    background: none;
    box-shadow: none;
    border-radius: 0;
    max-width: 100vw;
}
.diretor-foto {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    gap: 1rem;
}
.diretor-foto-placeholder {
    width: 200px;
    height: 200px;
    background: repeating-linear-gradient(135deg, #e0e0e0, #e0e0e0 12px, #d3d3d3 12px, #d3d3d3 24px);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #222;
    font-family: 'Dosis', sans-serif;
}
.diretor-nome-placeholder {
    width: 150px;
    background: #fff;
    text-align: center;
    padding: 0.5rem 0;
    border-radius: 0.3rem;
    font-size: 1.1rem;
    color: #181818;
    font-family: 'Signika', sans-serif;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.diretor-filmes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.diretor-filme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 .1rem 0 .1rem;
    width: 220px;
    background: none;
}
.diretor-filme-cartaz {
    width: 180px;
    height: 270px;
    object-fit: contain;
    border-radius: 1rem;
    background: #e0e0e0;
    color: #181818;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Signika', sans-serif;
    margin-bottom: 0.5rem;
}
.diretor-filme-nome {
    width: 100%;
    background: #fff;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.3rem 0;
    font-size: 1.1rem;
    color: #181818;
    font-family: 'Signika', sans-serif;
    border-radius: 0.3rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.diretor-filme-genero {
    width: 100%;
    background: #f5f5f5;
    text-align: center;
    margin-top: 0.2rem;
    padding: 0.2rem 0;
    font-size: 1rem;
    color: #181818;
    font-family: 'Signika', sans-serif;
    border-radius: 0.3rem;
}

/* Ensure footer stays at the bottom and does not overlap content */
html, body {
    height: 100%;
    min-height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
    width: 100%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.modal[style*="display: flex"] {
    display: flex !important;
}
.modal-content {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    width: 80vw;
    height: 75vh;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.close-modal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    z-index: 10;
}
.modal-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-video-container iframe {
    width: 100%;
    height: 70vh;
    max-width: 100vw;
    max-height: 70vh;
    border: none;
    border-radius: 8px;
}
@media (max-width: 600px) {
    .modal-content {
        padding: 0.5rem;
        width: 98vw;
        height: 45vh;
    }
    .modal-video-container iframe {
        width: 100vw;
        height: 35vh;
        max-width: 100vw;
        max-height: 35vh;
    }
}