html {
    scroll-behavior: smooth !important;
}

body {
    margin: 0;
    box-sizing: border-box;
}

.header-container {
    width: 100%;
    height: 90px;
    display: flex;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.6s;
}
.header-container-2{
    height: 60px;
    background-color: #282424;
    opacity: 0.9;
}

.logo-container {
    width: calc(100% / 3);
    height: 60px;
    padding-left: 52px;
    box-sizing: border-box;
    display: flex;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

nav {
    width: calc(100% / 3);
    height: 60px;
    display: flex;
    align-items: center;
}

.header-itens {
    height: 100%;
    gap: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.header-item {
    width: auto;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.header-item:hover {
    color: #d4af37;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.header-item::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #caa24d, #f5d77a, #a97c1f);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.header-item:hover::after {
    width: 70%;
}

.nav-right {
    width: calc(100% / 3);
    height: 60px;
    display: flex;
    justify-content: flex-end;
    padding-right: 60px;
    box-sizing: border-box;
}

.social-media-itens {
    height: 60px;
    display: flex;
    align-items: center;
}

/* Estilos para os botões sociais (copie do seu componente SocialButtons) */
.social-buttons {
    display: flex;
    gap: 15px;
}

.social-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-button:hover {
    background: linear-gradient(90deg, #caa24d, #f5d77a, #a97c1f);
    transform: translateY(-3px);
}

.social-button svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.social-button a {
    width: 18px;
    height: 18px;
}

.social-button:hover svg {
    fill: #000;
}

.button-mobile-container{
    display: none;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-right: 20px;
    margin-top: 15px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-btn:focus {
    outline: none;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.menu-mobile {
    position: fixed;
    top: 60px;
    width: 100%;
    height: auto;
    background-color: #282424;
    justify-content: center;
    z-index: 10;
    
    /* Estado inicial - escondido */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.menu-mobile.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

@media (max-width: 1400px) {

  .nav-right {
    display: none;
  }
}
@media (max-width: 900px) {

    .nav-desktop{
        flex: 2;
        justify-content: center;
    }

    .logo-container {
        width: auto;
        padding-left: 20px;
    }
}
@media (max-width: 768px) {

    .menu-mobile ul{
        padding: unset;
    }
    
    .header-container{
        height: 60px;
        justify-content: space-between;
        background-color: #282424;
        opacity: 1;
    }
    .nav-desktop{
        display: none;
    }
    .button-mobile-container{
        display: flex;
    }
}
/*-----------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
*/

.carousel {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 160px;
    width: 30%;
    max-width: 500px;
    left: 60px;
}

.carousel .list .item .content .author {
    font-weight: bold;
    letter-spacing: 10px;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.carousel .list .item .content .title,
.carousel .list .item .content .topic {
  font-family: 'Great Vibes', cursive;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 64px);

  letter-spacing: 0.04em;

  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.carousel .list .item .content .topic {
    color: rgba(255, 255, 255, 0.95);
}

.carousel .list .item .content .subtitle {
  max-width: 100%;
  margin-top: 12px;

  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 24px);
  
  color:  rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.carousel .list .item .content .des{
  max-width: 100%;
  margin-top: 12px;
  margin-bottom: 60px;

  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.2;
  

  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.carousel .list .item .content .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .content a {
    outline: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 300;
    position: relative;
    cursor: pointer;
    transition: 1s;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit; /* Mantém a cor do texto */
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.carousel .list .item .content a:nth-child(1):hover {
    color: #ac8845;
}

.carousel .list .item .content a:nth-child(2) {
    background-color: transparent;
    color: #eee;
    border: 1px solid #eee;
    transition: 1s;
}

.carousel .list .item .content a:nth-child(2):hover {
    color: #ac8845;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    border: 1px solid #ac8845;
}


.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    position: absolute;
    top: 10px;
    left: 20px;
    right: 10px;
    font-family: 'Montserrat', sans-serif;

}

.thumbnail-titulo {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #ac8845;
    text-shadow: 0 1px rgba(255, 255, 255, 0.8), 0 2px 3px rgba(0, 0, 0, 0.4);
}


.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    font-family: monospace;
    font-size: large;
    color: #282424;
    font-weight: bold;
    transition: .5s;
    z-index: 100;
}

.arrows button:hover{
    background-color: #eee;
    color: #555;
}

.carousel .list .item:nth-child(1) {
    z-index: 1;
}

.carousel .list .item:nth-child(1) .author,
.carousel .list .item:nth-child(1) .title,
.carousel .list .item:nth-child(1) .topic,
.carousel .list .item:nth-child(1) .subtitle,
.carousel .list .item:nth-child(1) .des,
.carousel .list .item:nth-child(1) .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.carousel .list .item:nth-child(1) .title {
    animation-delay: 0.8s;
}

.carousel .list .item:nth-child(1) .topic {
    animation-delay: 1.0s;
}

.carousel .list .item:nth-child(1) .subtitle {
    animation-delay: 1.0s;
}

.carousel .list .item:nth-child(1) .des {
    animation-delay: 1.2s;
}


.carousel .list .item:nth-child(1) .buttons {
    animation-delay: 1.4s;
}

/* effect next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    border-radius: 20px;
    animation: showImage 0.5s linear 1 forwards;
}
@keyframes showImage{
    to {
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    width: 0;
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
@keyframes showThumbnail{
    to{
        width: 150px;
    }
}
.carousel.next .thumbnail{
    transform: translateX(150px);
    animation: transformThumbnail .5s linear 1 forwards;
}
@keyframes transformThumbnail{
    to{
        transform: translateX(0);
    }
}

/* effect prev click */
.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: outImage 0.5s linear 1 forwards;
}
@keyframes outImage {
    to {
        width: 150px;
        height: 220px;
        border-radius: 20px;
        left: 50%;
        bottom: 50px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    width: 0;
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail 0.5s linear 1 forwards;
}

.carousel.prev .list .item:nth-child(2) .author,
.carousel.prev .list .item:nth-child(2) .title,
.carousel.prev .list .item:nth-child(2) .topic,
.carousel.prev .list .item:nth-child(2) .subtitle,
.carousel.prev .list .item:nth-child(2) .des,
.carousel.prev .list .item:nth-child(2) .buttons {
    animation: contentOut 1.5s linear 1 forwards;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}

/* time */
.time {
    width: 0%;
    height: 5px;
    background-color: #f1683a;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
}

.carousel.next .time,
.carousel.prev .time {
    width: 100%;
    animation: timeRunning 2s linear 1 forwards;
}

@keyframes timeRunning {
    to {
        width: 0;
    }
}

@media (min-width: 1280px) and (max-width: 1400px) {
    .carousel .list .item .content{
        top: 100px;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .carousel .list .item .content{
        top: 100px;
        width: 50%;
        max-width: 50%;
    }
    .carousel .list .item .content .des{
        text-shadow: 0 4px 20px rgba(0, 0, 0, 1)
    }
}

@media (max-width: 768px) {
    .carousel{
        display: none;
    }
    
}

/*-----------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
*/
.container-1 {
    display: none;
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('./image6.png');
    background-size: cover;
    background-position: -500px center;
    overflow: hidden;
}

/* Inner container que vai abrigar os textos */
.inner-container-1 {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Slider de textos */
.text-slider {
    position: relative;
    width: 100%;
    min-height: 400px;
}

/* Cada slide de texto */
.text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.text-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Animações de entrada */
.text-slide.active .title-2 {
    animation: showContent 0.5s 0.2s linear 1 forwards;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(50px);
}

.text-slide.active .subtitle-2 {
    animation: showContent 0.5s 0.4s linear 1 forwards;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(50px);
}

.text-slide.active .description {
    animation: showContent 0.5s 0.6s linear 1 forwards;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(50px);
}

.text-slide.active .buttons-container {
    animation: showContent2 0.5s 0.8s linear 1 forwards;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(50px);
}

@keyframes showContent2 {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Título */
.title-2 {
    font-family: 'Great Vibes', cursive;
    font-weight: 600;
    font-size: clamp(48px, 6vw, 64px);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    max-width: 100%;
}

/* Subtítulo */
.subtitle-2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    max-width: 100%;
    margin-top: 12px;
}

/* Descrição */
.description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin-top: 12px;
}

/* Container dos botões */
.buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

/* Estilo base dos botões */
.btn {
    outline: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 300;
    position: relative;
    cursor: pointer;
    transition: 1s;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit; /* Mantém a cor do texto */
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.btn:first-child:hover{
    color: #ac8845;
}

.btn:nth-child(2):hover {
    color: #ac8845;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    border: 1px solid #ac8845;
}

.btn-outline {
    background-color: transparent;
    color: #eee;
    border: 1px solid #eee;
}

.btn-outline:hover {
    background-color: #282424;
}

/* Arrows */
.arrows-2 {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    height: 40px;
    gap: 10px;
    z-index: 10;
}

.arrow-2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #eee4;
    font-family: monospace;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #282424;
    font-size: large;
    font-weight: bold;
}

.arrow-2:hover {
    background-color: #f7f5f2;
}

.arrow-2:active {
    transform: scale(0.95);
}

/* Indicadores de slide */
.slide-indicators {
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 50px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #ac8845;
    width: 70px;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {

    .container-1{ 
        display: flex;
    }

}

@media (min-width: 480px) and (max-width: 768px) {
    .text-slider{
        width: 70%;
    }
}

@media (max-height: 830px) {
    .inner-container-1 {
        padding: 100px 20px 30px 20px;
    }
}

/*-----------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
*/


.container-2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px;
    box-sizing: border-box;
    background-color: #f7f5f2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.stars-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-stars-container {
    width: calc(100%/3);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.star {
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo {
    max-width: 60%;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 64px);
    letter-spacing: 0.04em;
    color: black;
    position: relative;
    text-align: center;
    margin: 0;
}

.titulo::after{
    content: '';
    position: absolute;
    left: 56%;
    bottom: 8px;

    width: 480px;
    height: 45px;

    transform: rotate(180deg);

    background-image: url('./faixa-metade.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.titulo::before{
    content: '';
    position: absolute;
    right: 56%;
    bottom: 20px;

    width: 480px;
    height: 45px;

    background-image: url('./faixa-metade.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
    

.cards-container {
    width: 100%;
    margin-top: 160px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    width: 30%;
    height: auto;
    min-height: 440px;
    background-color: #f7f5f2;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    position: relative;
    z-index: 2;
    padding: 120px 36px 36px 36px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.image-card {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nome-artista {
    width: 100%;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 3vw, 24px);
    color: #282424;
    text-align: center;
}

.descricao-card {
    width: 100%;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(16px, 2vw, 18px);
    color: #282424;
    text-align: center;
    line-height: 1.2;
}

.descricao-card.margin-bottom {
    margin-bottom: 32px;
}

.cor-fundo-cards {
    width: 100%;
    height: 300px;
    background-color: #282424;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Media Queries para responsividade */
@media (max-width: 1280px) {
    .container {
        padding: 60px;
    }
    
    .cards-container {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 220px;
    }
    
    .card {
        width: 45%;
        min-width: 300px;
    }
    
    .linha-direita, .linha-esquerda {
        width: 50px;
    }
    
    .linha-direita {
        right: -80px;
    }
    
    .linha-esquerda {
        left: -80px;
    }
    .container-2 .titulo-container .titulo{
        width: 100%;
        max-width: unset;
    }
    .container-2 .titulo-container .titulo::before{
        display: flex;
        content: '';
        position: absolute;
        left: 50%;
        bottom: -70px;
        transform: translateX(-50%);
        width: 100%;
        height: 70px;
        background-image: url('./faixa.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .container-2 .titulo-container .titulo::after{
        display: none;
    }
}

@media (max-width: 768px) {
    .container-2 {
        padding: 60px;
    }
    
    .inner-stars-container {
        width: 100%;
    }
    
    .titulo {
        max-width: 80%;
    }
    
    .linha-direita, .linha-esquerda {
        display: none;
    }
    
    .card {
        padding: 120px 36px 60px 36px;
        width: 100%;
        max-width: 400px;
    }
    
    .image-card {
        width: 150px;
        height: 150px;
    }
    
    .cor-fundo-cards {
        height: 200px;
    }
};

.sombra-inferior {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, #282424 0%, transparent 100%);
}

/*-----------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
*/

.container-3{
    width: 100%;
    height: 100vh;
    padding: 160px 60px;
    box-sizing: border-box;
    display: flex;
    background: url('./t4.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.container-3-arrows {
    position: absolute;
    left: 50%;
    bottom: 60px;
    width: 60px;
    height: 172px;
    transform: translateX(-50%);
}

.container-3-arrows path {
    stroke: #fff;
    fill: transparent;
    stroke-width: 1px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.container-3-arrows path.a1 {
    animation-delay:  -0.5s;
    -webkit-animation-delay:  -0.5s;
}

.container-3-arrows path.a2 {
    animation-delay:  -0.5s;
    -webkit-animation-delay:  -0.5s;
}

.container-3-arrows path.a3 {
    animation-delay:  -0.5s;
    -webkit-animation-delay:  -0.5s;
}

.music-card-container {
    width: 30%;
    min-width: 400px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.container_3 .music-card-container .title {
  font-family: 'Great Vibes', cursive;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 64px);

  letter-spacing: 0.04em;

  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);

  position: absolute;
  top: 0px;
  left: 0px;
}

.sombra-inferior {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 300px;
    background: linear-gradient(
        to bottom, 
        #282424 0%,
        rgba(40, 36, 36, 0.8) 15%,
        rgba(40, 36, 36, 0.4) 30%,
        rgba(40, 36, 36, 0.2) 45%,
        rgba(40, 36, 36, 0.015) 60%,
        rgba(40, 36, 36, 0.01) 65%,
        rgba(40, 36, 36, 0.005) 70%,
        rgba(40, 36, 36, 0.002) 75%,
        transparent 100%
    );
    pointer-events: none;
}

/* Music Card Styles */
.main {
  backdrop-filter: blur(4px);
  border-radius: 20px;
  margin-top: 12px;
}

.loader {
  display: flex;
  flex-direction: row;
  min-height: 4em; 
  padding-left: 1em;
  padding-right: 1em;
  transform: rotate(180deg);
  justify-content: right;
  border-radius: 10px;
  transition: .4s ease-in-out;
}

.loader:hover {
  cursor: pointer;
  color: #ac884594;
    background: linear-gradient(
        270deg,
        #ac884594 0%,
        rgba(0, 0, 0, 0) 60%
    );
}

.currentplaying {
  display: flex;
  margin: 1em;
}

.soundcloud-container {
    display: flex;
    align-items: center;
}

.soundcloud {
  width: 50px;
  height: 50px;
  margin-right: 0.6em;
}

.heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 24px);
  align-self: center;
  color:  rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.loading {
  display: flex;
  margin-top: 1em;
  margin-left: 0.3em;
}

.load {
  width: 2px;
  height: 33px;
  background-color: #ac8845;
  animation: 1s move6 infinite;
  border-radius: 5px;
  margin: 0.1em;
}

.load:nth-child(1) {
  animation-delay: 0.2s;
}

.load:nth-child(2) {
  animation-delay: 0.4s;
}

.load:nth-child(3) {
  animation-delay: 0.6s;
}

.play {
  position: relative;
  left: 0.35em;
  height: 1.6em;
  width: 1.6em;
  clip-path: polygon(50% 50%, 100% 50%, 75% 6.6%);
  background-color: #282424;
  transform: rotate(-90deg);
  align-self: center;
  margin-top: 0.7em;
  justify-self: center;
}

.albumcover {
  position: relative;
  margin-right: 1em;
  height: 40px;
  width: 40px;
  align-self: center;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.albumcover-image{
    background: url('./song-icone3.png');
    background-size: cover;
    background-position: center;
    transform: rotate(180deg);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    
}

.song {
  position: relative;
  transform: rotate(180deg);
  margin-right: 1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  color: #fff;
  align-self: center;
}

.artist {
  font-size: clamp(10px, 1vw, 14px);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ac8845;
  font-weight: 500;
  text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 2px 3px rgba(0, 0, 0, 0.4);
}

@keyframes move6 {
  0% {
    height: 0.2em;
  }

  25% {
    height: 0.7em;
  }

  50% {
    height: 1.5em;
  }

  100% {
    height: 0.2em;
  }
}
@media (max-width: 1280px){
    .music-card-container{
        align-items: start;
    }

    .music-card-container .main .loader .albumcover {
        min-width: 40px;
    }
    .music-card-container .main .loader .play{
        min-width: 1.6em;
    }
}

@media (max-width: 480px){
    .container-3{
        padding: 60px 20px;
    }
    .music-card-container{
        min-width: max-content;
        width: 100%;
    }
    .main{
        width: 100%;
    }
    .music-card-container .main .loader .albumcover {
        margin-right: 2px;
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
    }
    .song{
        margin-top: -10px;
        width: auto;
    }
    .loader{
        padding: 0px 8px;
    }
}

@media (max-width: 360px){
    .albumcover{
        width: 20px;
        height: 20px;
    }
}

/*-----------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
*/

.container-4 {
  width: 100%;
  min-height: 100vh;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background-color: #f7f5f2;
}

.titulo-eventos {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 64px);
    letter-spacing: 0.04em;
    color: black;
    position: relative;
    text-align: center;
    margin: 0;
}

.titulo-eventos::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);

    width: 720px;
    height: 70px;

    background-image: url('./faixa.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.texts-images-container-4{
    width: 100%;
    height: auto;
    margin-top: 60px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}

.texts-images-container-4-reverse{
    width: 100%;
    height: auto;
    margin-top: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}

/* Texto */
.text-area-4 {
    width: 60%;
    height: auto;
    position: relative;

}

.text-area-4::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -140px;
    transform: translateX(-50%);

    width: 720px;
    height: 70px;

    background-image: url('./faixa.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.text-area-4 h1 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 64px);
    margin: 0px;
    letter-spacing: 0.04em;
    color: black;
    position: relative;
}

.des-card-container-4{
    width: 100%;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(16px, 2vw, 18px);
    color: #282424;
    text-align: justify;
    line-height: 1.2;
}

.text-area-4 p {
    margin: 12px 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-align: justify;
    font-size: clamp(20px, 3vw, 24px);
    color: black;
}

.buttons-4 {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 36px;
}

.btn-primary-4 {
    border: none;
    color: #f7f5f2;
    background-color: #282424;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 14px;
    transition: 1s;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.btn-primary-4:hover {
    border: none;
    color: #ac8845;
}



.btn-secondary-4 {
    background-color: transparent;
    color: #282424;
    border: 1px solid #282828;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-weight: 500;
    cursor: pointer;
}

/* Área das imagens */
.images-area-4 {
  position: relative;
  width: 730px;
  height: 590px;
  background-image: url('./brilho.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.images-area-4-reverse {
  position: relative;
  width: 730px;
  height: 590px;
  background-image: url('./brilho.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translateX(-100px);
}

.images-area-4-2 {
  width: 100%;
  height: 200px;
  display: none;
  gap: 10px;
}

.card-image-4 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  height: 200px;
  width: 200px;
  flex: 1;
  border-radius: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.images-area-4-2:hover .card-image-4 {
  filter: blur(2px);
  transform: scale(0.9);
}

/* Exceto a imagem que está com hover direto */
.images-area-4-2:hover .card-image-4:hover {
  filter: blur(0);
  transform: scale(1);
  z-index: 10;
}

/* Card base */
.image-card-4 {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
}

.image-card-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

/* Top image */
.img-1-4 {
  width: 272px;   /* 260 → 364 */
  height: 272px;  /* 180 → 252 */
  top: 0;
  left: 296px;    /* 140 → 196 */
  z-index: 3;
  border: 8px solid #f0eeea;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;

}

/* Middle image (overlapping only top slightly) */
.img-2-4 {
  width: 202px;   /* 230 → 322 */
  height: 202px;  /* 170 → 238 */
  top: 160px;     /* 115 → 160 */
  right: 0px;    /* 300 → 420 */
  z-index: 4;
  border: 8px solid #f0eeea;
}

/* Bottom image (isolated, no touching) */
.img-3-4 {
  width: 186px;   /* 240 → 336 */
  height: 186px;  /* 190 → 266 */
  bottom: 90px;
  left: 116px;     /* 40 → 56 */
  z-index: 2;
  border: 8px solid #f0eeea;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.img-1-4, .img-2-4, .img-3-4 {
    transition: all 1s ease; /* Transition universal */
}

/* Elementos decorativos */
.circle-4 {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #ece1ce;
  border-radius: 50%;
  top: 40px;
  right: 40px;
  opacity: 0.2;
  z-index: 0;
}

.square-4 {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  bottom: 20px;
  right: 80px;
  z-index: 0;
  background-color: #ece1ce;
  opacity: 0.2;
}


.img-1-4:hover,
.img-2-4:hover {
    box-shadow: 
        5px 5px 15px rgba(172, 136, 69, 0.3),
        8px 8px 20px rgba(172, 136, 69, 0.2),
        -2px -2px 10px rgba(255, 255, 255, 0.1);
    transition: box-shadow 1s; /* Transição específica para box-shadow */
}
@media (min-width: 1280px) and (max-width: 1340px) {
    .container-4 .texts-images-container-4-reverse .text-area-4::after {
        transform: translate(-60%);
    }
}

@media (max-width: 1280px) {
    .texts-images-container-4,
    .texts-images-container-4-reverse{
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .texts-images-container-4::before{
        width: 100%;
        display: block;
        top: -60px;
        bottom: 0;
        left: 0;
        transform: none;
    }
 
    .text-area-4{
        width: 100%;
        margin-bottom: 260px;
    }
    .text-area-4::after{
        width: 100%;
    }
    .titulo-eventos{
        width: 100%;
    }
    .titulo-eventos::after{
        display: block;
        width: 100%;
        left: 0;
        transform: none;
    }
    .images-area-4-reverse{
        transform: none;
    }
}


@media (min-width: 768px) and (max-width: 1280px) { 
    
    .images-area-4,
    .images-area-4-reverse{
        display: none;
    }

    .images-area-4-2{
        display: flex;
    }

}
@media (min-width: 180px) and (max-width: 768px) {
    .text-area-4{
        margin-bottom: 160px;
    }
    .images-area-4,
    .images-area-4-reverse{
        display: none;
    }

    .images-area-4-2{
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 48%);
        grid-template-rows: repeat(2, 48%);
        grid-template-areas: "a b" "c b";
        gap: 15px;
    }
    .card-image-4.maior {
        grid-area: b
    }
    .card-image-4{
        width: 100%;
        height: 100%;
    }
    
}

@media (max-width: 479px){
    .container-4{
        padding: 60px 20px;
    }
}



.container-5 {
  width: 100%;
  min-height: 100vh;
  padding: 160px 60px;
  box-sizing: border-box;
  display: flex;
  background: url('./image13.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.texts-container-5{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.text-container-5-1{
    max-width: 25vw;
    display: flex;
    flex-direction: column;
}

.text-container-5-2{
    max-width: 25vw;
    display: flex;
    flex-direction: column-reverse;
}

.container-5 .text-container-5-1 .title,
.container-5 .text-container-5-2 .title{
    font-family: 'Great Vibes', cursive;
    font-weight: 600;
    font-size: clamp(48px, 6vw, 64px);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.container-5 .text-container-5-1 .subtitle,
.container-5 .text-container-5-2 .subtitle{
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.container-5 .text-container-5-1 .top-title{
    margin-bottom: 36px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #ac8845;
    text-shadow: 0 1px rgba(255, 255, 255, 0.8), 0 2px 3px rgba(0, 0, 0, 0.4);
}

.container-5 .text-container-5-2 .top-title{
    margin-bottom: 36px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #282424;
    text-shadow: 0 1px rgba(255, 255, 255, 0.8), 0 2px 3px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1400px){

    .text-container-5-1,
    .text-container-5-2{
        width: 65%;
        max-width: 65%;
    }
    .text-container-5-2 .top-title{
        display: none;
    }
    .text-container-5-2{
        margin-top: 60px;
    }
    .texts-container-5{
        flex-direction: column;
    }
}
@media (max-width: 1200px){

    .text-container-5-1,
    .text-container-5-2{
        width: 80%;
        max-width: 80%;
    }
}
@media (max-width: 1024px){

    .text-container-5-1,
    .text-container-5-2{
        width: 100%;
        max-width: 100%;
    }
    .container-5 .text-container-5-1 .subtitle, .container-5 .text-container-5-2 .subtitle {
        text-align: justify;
    }
    .container-5 .text-container-5-1 .title, 
    .container-5 .text-container-5-2 .title,
    .container-5 .text-container-5-1 .top-title,
    .container-5 .text-container-5-2 .top-title {
        text-align: center;
    }
}

@media (max-width: 479px){
    .container-5{
        padding: 60px 20px;
    }
}

/*-----------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
*/

.container-escolhas{
    width: 100%;
    height: 100vh;
    padding: 120px 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background: url('./image14.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.header-itens-escolha-page{
    padding: 0px;
}

.nav-desktop-escolha{
    justify-content: center;
}

.nav-right-escolha{
    display: flex;
}

.pagina-escolha-texto-container{
    display: flex;
    flex-direction: column;
    width: 40%;
    height: auto;
    text-align: center;
}

.description-container{
    display: flex;

    border-radius: 8px;
    margin-top: 8px;
    backdrop-filter: blur(2px);
    box-sizing: border-box;                 
}

.des-escolha{
    margin-top: 0px;
}

.arrows-pagina-escolha{
    position: relative;
    bottom: unset;
    overflow: unset;
}

.container-4 .texts-images-container-4{
    justify-content: space-between;
}
.background-claro{
    background: url('./music-bg-5.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.text-area {
    width: calc(60% - 36px);
}

.descricao-musical{
    text-align: justify;
}

.text-area h1{
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: clamp(48px, 6vw, 64px);
    letter-spacing: 0.04em;
    color: black;
    position: relative;  
}

.text-area p{
    margin-top: 0px;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    color: black;
}

.text-area h3 {
    margin: 0px 0px 12px 0px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #ac8845;
    text-shadow: 0 1px rgba(255, 255, 255, 0.8), 0 2px 3px rgba(0, 0, 0, 0.4);
}

.card-area{
    width: 40%;
    height: auto;
}

.card-info{
    display: flex;
    flex-direction: column;
}

.music-card {
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-card {
    max-width: 600px;
    min-width: 400px;
    width: 70%;
    padding: 12px 12px 24px 12px;
    box-sizing: border-box;
    margin-top: 60px;
    background: linear-gradient(344deg, rgba(40,40,55,1) 0%, rgba(16,16,18,1) 50%);
    box-shadow: 4px 6px 14px #00000036;
}

.musics-container {
    display: flex;
    flex-direction: column;
    max-height: 384px;
    /* Sempre visível mas estilizada para ser sutil */
    overflow-y: scroll;
    /* Estiliza a barra para ficar mais discreta */
    scrollbar-width: thin;
    scrollbar-color: #888 #333;
}

.musics-container .loader .albumcover {
        min-width: 40px;
    }
.musics-container .loader .play {
    min-width: 40px;
    min-width: 1.6em;
}

/* Para Chrome/Edge/Safari */
.musics-container::-webkit-scrollbar {
    width: 6px;
}

.musics-container::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}

.musics-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.musics-container::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.background-escuro {
    background: url('./music-bg-7.png');
    background-repeat: no-repeat;
    background-size: cover;
    
}

.text-area-2 h1,
.text-area-2 p{
    color: #f7f5f2;
}

.align-itens{
    align-items: center;
}


/* Estilo para a primeira opção de icone para pdf */
.pdf-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-link-1 {
    display: flex;
    text-decoration: none;
    outline: none;
    justify-content: center;
}

.pdf-link:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 5px;
    border-radius: 12px;
}

.pdf-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    display: block;
}

.pdf-image:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
    position: relative;
}

.pdf-image:hover::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: goldenGlow 1s ease-out;
    pointer-events: none; /* Importante: não interfere no clique */
}

@keyframes goldenGlow {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Texto de instrução opcional */
.instruction {
    margin-top: 20px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.pdf-container:hover .instruction {
    opacity: 1;
}

/* Estilo para a segunda opção de icone para pdf */
.section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.file {
    position: relative;
    width: 150px;
    height: 102px;
    cursor: pointer;
    transform-origin: bottom;
    perspective: 900px;
    z-index: 50;
}

/* Elemento da aba superior */
.work-5 {
    background-color: #d97706;
    width: 100%;
    height: 100%;
    transform-origin: top;
    border-radius: 9.6px;
    border-top-left-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2.4px 3.6px -0.6px rgb(0 0 0 / 0.1);
}

.section:hover .work-5 {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.work-5::after {
    content: '';
    position: absolute;
    bottom: 99%;
    left: 0;
    width: 48px;
    height: 9.6px;
    background-color: #d97706;
    border-top-left-radius: 9.6px;
    border-top-right-radius: 9.6px;
}

.work-5::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 45.3px;
    width: 9.6px;
    height: 9.6px;
    background-color: #d97706;
    clip-path: polygon(0 35%, 0% 100%, 50% 100%);
}

/* Camadas do papel */
.work-4 {
    position: absolute;
    inset: 2.4px;
    background-color: #a1a1aa;
    border-radius: 9.6px;
    transition: all 0.3s ease;
    transform-origin: bottom;
    user-select: none;
}

.section:hover .work-4 {
    transform: rotateX(-20deg);
}

.work-3 {
    position: absolute;
    inset: 2.4px;
    background-color: #d4d4d8;
    border-radius: 9.6px;
    transition: all 0.3s ease;
    transform-origin: bottom;
}

.section:hover .work-3 {
    transform: rotateX(-30deg);
}

.work-2 {
    position: absolute;
    inset: 2.4px;
    background-color: #e4e4e7;
    border-radius: 9.6px;
    transition: all 0.3s ease;
    transform-origin: bottom;
}

.section:hover .work-2 {
    transform: rotateX(-38deg);
}

/* Camada frontal (principal) */
.work-1 {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, #f59e0b, #fbbf24);
    width: 100%;
    height: 93.6px;
    border-radius: 9.6px;
    border-top-right-radius: 0;
    transition: all 0.3s ease;
    transform-origin: bottom;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 2.4px 3.6px -0.6px rgb(0 0 0 / 0.1);
}

.section:hover .work-1 {
    box-shadow: inset 0 12px 24px #fbbf24, inset 0 -12px 24px #d97706;
    transform: rotateX(-46deg) translateY(0.6px);
}

.work-1::after {
    content: '';
    position: absolute;
    bottom: 99%;
    right: 0;
    width: 87.6px;
    height: 9.6px;
    background-color: #fbbf24;
    border-top-left-radius: 9.6px;
    border-top-right-radius: 9.6px;
}

.work-1::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 85.2px;
    width: 7.2px;
    height: 7.2px;
    background-color: #fbbf24;
    clip-path: polygon(100% 14%, 50% 100%, 100% 100%);
}

/* Ícone do PDF */
.pdf-icon {
    width: 100%;
    padding: 9.6px;
    display: flex;
    align-items: center;
    gap: 4.8px;
    color: white;
    font-weight: bold;
    text-shadow: 0 1.2px 2.4px rgba(0,0,0,0.2);
}

.pdf-icon span {
    font-size: 14.4px;
    line-height: 1;
}

.pdf-icon small {
    font-size: 8.4px;
    opacity: 0.9;
}

/* Texto de instrução */
.hover-text {
    font-size: 16.8px;
    padding-top: 19.2px;
    opacity: 0.6;
    font-weight: 500;
    font-family: "Montserrat";
    color: #f7f5f2;
    transition: opacity 0.3s ease;
}

.section:hover .hover-text {
    opacity: 0.8;
}

/* Link estilizado */
.pdf-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.pdf-link:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2.4px;
    border-radius: 9.6px;
}

/* Instrução de acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 1400px){
    .pagina-escolha-texto-container{
        width: 60%;
    }
    .nav-right-escolha{
        display: none;
    }
}
@media (max-width: 1280px){
    .pagina-escolha-texto-container{
        width: 80%;
    }
    .text-area{
        width: 100%;
    }
    .card-area{
        width: 100%;
    }
    .background-escuro .texts-images-container-4{
        flex-direction: column-reverse;
    }
    .main-card{
        max-width: 500px;
    }
}

@media (max-width: 768px){
    .pagina-escolha-texto-container{
        width: 100%;
    }
    .titulo-escolha{
        text-align: center;
    }
    .descricao-musical{
        text-align: center;
    }
    .pdf-image{
        width: 150px;
        height: 150px;
    }
    .main-card{
        width: 100%;
        max-width: 500px;
        min-width: 300px;
    }
    .nav-right-escolha{
        padding-right: 20px;
    }
}

@media (max-width: 480px){
    .container-escolhas{
        padding: 100px 20px;
    }
    .main-card{
        width: 100%;
        max-width: 300px;
    }
    .musics-container .loader .albumcover {
        min-width: 30px;
    }
    .musics-container .loader .play {
        min-width: 30px;
        min-width: 1.6em;
    }

}

