.content-seller{
  display: flex;
    justify-content: center;
}


@media screen and (max-width: 767px) {
.title-seller {
    padding: 34px 48px 70px 38px;
    width: 100%;
}
  
  .title-seller h2 {
    color: #545454;
    font-family: var(--font-primary);
    font-weight:var(--font-regular);
    font-size: var(--tamanoParrafo12);
    text-align: center;
    line-height:20px;
}
  
   .row-retos {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 10px;
        margin-left: 0;
        margin-right: 0;
      }

      .row-retos .col-auto {
        flex: 0 0 auto;
        width: 100%;
        scroll-snap-align: start;
      }

      .row-retos::-webkit-scrollbar {
        display:none ;
      }
  
.card-body h3{
    font-size: var(--tamanoParrafo18);
}
  
  .card-body p{
    font-family:var(--font-primary);
    font-size: var(--tamanoParrafo12);
    font-weight:var(--font-regular);
    color: #545454;
    line-height: 20px;
  }
  
  .card-seller{
    margin:0 auto;
      padding:0px 25px;
  }
  
  .carousel-dots {
    display: flex;   
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }

  .carousel-dots span {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
  }

  .carousel-dots span.active {
    background: #0045C2;
  }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .row-retos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .row-retos .col-auto {
    flex: 0 0 calc(50% - 20px); /
    max-width: calc(50% - 20px);
  }

  .title-seller {
    width: 100%;
    padding: 34px 0 50px 0;
  }

  .title-seller h2 {
    font-size: var(--tamanoParrafo18);
  }

 .card-seller {
        height: 100%;
        width: 100%;
    }
}

  




