body{
    background-color: #000;

}

.container-banner{
    width:100vw;
    height: auto;

}

.container-banner img{
    width: 100%;
    height: 100%;
}



.main{
    color: white;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

.discography {
    display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
        max-width: 1300px;
        gap: 40px;
        padding: 100px 0;
        align-items: center;
}

.discography iframe{
    width: 300px;
}
.list{
    width: 100%;
}


.container-samples h2 , .container-list h2{
    font-size: 2rem;
    margin: 20px 0;
    letter-spacing: 3px;
    text-align: center;
}



.container-list{
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: max-content;
        
}



.container-samples{
    display: flex;
    flex-wrap: wrap;
    width: 65%;
    gap: 40px;
    justify-content: center;
    height: max-content;
}

.container-samples .samples{
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.comunidad-section {
    display: flex;
    justify-content: center;
    align-items: center;

    background: none;
  }
  
  .comunidad-card {
    display: flex;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);

    width: 80%;
    min-height: 260px;
  }
  
  .comunidad-img img {
    display: block;
    width: 500px;
    height: 100%;
    object-fit: cover;
  }
  
  .comunidad-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex: 1;
  }
  
  .comunidad-info p {
    color: #fff;
    font-size: 2rem;

  }
  
  .comunidad-btn {
    background: #ff5757;
    color: #fff;
    padding: 10px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: background 0.2s;
    width: 200px;
  }
  
  .comunidad-btn:hover {
    background: #ff2222;
  }
  
  /* Responsive */
  @media (max-width: 700px) {
    .comunidad-card {
      flex-direction: column;
      align-items: center;
      min-height: unset;
    }
    .comunidad-img img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .comunidad-info {
      padding: 24px 16px;
      align-items: center;
      text-align: center;
    }
  }

/* Responsive */
@media (max-width: 1200px) {
    .discography {
        padding: 50px 20px;
    }
    
    .container-samples {
        width: 100%;
    }
    
    .container-list {
        width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .discography {
        gap: 20px;
    }
    
    .container-samples .samples {
        gap: 20px;
    }
    
    .container-samples iframe,
    .container-list iframe {
        width: 100%;
    }
    
    .comunidad-card {
        width: 90%;
    }
    
    .comunidad-info p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container-samples h2,
    .container-list h2 {
        font-size: 1.5rem;
    }
    
    .comunidad-info p {
        font-size: 1.2rem;
    }
    
    .comunidad-btn {
        width: 100%;
        text-align: center;
    }
}