




/* Media query to stack videos vertically on smaller screens */
@media (max-width: 768px) {
    .containerVideo {
        flex-direction: column; /* Stack videos vertically */
    }

    .sectionVideo {
        margin-left: 0; /* Remove horizontal margin when stacked */
        margin-right: 0; /* Remove horizontal margin when stacked */
        width: 100%; /* Take full width on smaller screens */
        margin-top: 1vw; /* Adjust top margin for consistent spacing */
    }

    .sectionReviews {
        flex-direction: column; /* Stack review cards vertically */
        margin-bottom: -20px; /* Space between vertically stacked cards */
    }

    .sectionReviewsContent {
        width: 80%; /* Adjust the width to fit the screen size better */
        margin-left: auto; /* Center the review cards horizontally */
        margin-right: auto; /* Center the review cards horizontally */
        margin-bottom: 10px; /* Space between vertically stacked cards */
    }

    .sectionReviewsContent h3{
        margin: 0;
        margin-top: -3vw;
        padding: 0;
    }

    .sectionReviewsContentText{
        padding-bottom: 1vw;
        margin-top: -3vw;
    }

}




@media (max-width: 600px) {
    .text-container p {
        display: none; /* This hides the <p> element */
    }

    .content-songs{
        flex-direction: column;
        width: 100vw;
    }

    .content-songs-left, .content-songs-right {
        width: 100vw !important;
    }

    .content-songs-right {
        padding-bottom: 10vw!important;
    }
    
    .sectionSongChoices {
        display:grid;
        justify-content: center;
    }

    .cardSongs {
        width: 40vw;
        height: auto;
        margin-bottom: 4vw;
      }

      .card-imageSongs img {
        width: 75%;
        height: auto;
        margin: 2vw 1vw;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
      }
      .card-text h3 {
        margin: 10px 0;
        font-size: clamp(1.2rem, 1vw, 2rem);
      }
      
      .card-text p {
        font-size: clamp(1.2rem, 1vw, 2rem);
        color: #555;
      }
      .price{
        background-color: #000;
        color: #0056b3;
        font-size: clamp(1.2rem, 1vw, 2rem);
      }
}