.manuales-section {
    padding: 40px;
}

/*
.manuales-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto
}*/

.manuales-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 14px; /* espacio para la barra */
    scrollbar-width: thin; /* Firefox */
    /*scrollbar-color: #0d6efd #e9ecef;*/
    scrollbar-color: #2cdce6 #fcfeff;
}

/* Chrome / Edge / Safari */
.manuales-carousel::-webkit-scrollbar {
    height: 10px;
}

.manuales-carousel::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}

.manuales-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0d6efd, #198754);
    border-radius: 10px;
}

.manuales-carousel::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}











.manual-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    min-width: 300px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1)
}

.manual-card img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #f1f3f5;
    border-radius: 8px;
}

.manual-cover {
    width: 100%;
    border-radius: 8px
}

.manual-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px
}

.preview-btn,
.buy-btn {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer
}

.preview-btn {
    background: #0d6efd;
    color: #fff
}

.buy-btn {
    background: #198754;
    color: #fff;
    text-decoration: none;
    text-align: center
}

.manual .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7)
}

.manual .modal-content {
    background: #fff;
    width: 90%;
    height: 85vh;
    margin: 5vh auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column
}

iframe {
    width: 100%;
    height: 100%
}

.close {
    font-size: 28px;
    cursor: pointer;
    align-self: flex-end;
    padding: 10px
}


/* proximamente */
.cover-wrapper {
    position: relative;
}

.badge-soon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
}

/* proximamente */




/* TÍTULO DEL MANUAL */
.manual-card h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
}

/* META (nivel, cantidad de ejercicios) */
.manual-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.manual-meta li {
  font-size: 14px;
  color: #495057;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}

/* puntito elegante */
.manual-meta li::before {
  content: "•";
  color: #0d6efd;
  font-weight: bold;
  margin-right: 6px;
}

/* DESCRIPCIÓN */
.manual-description p {
  font-size: 14px;
  color: #343a40;
  margin: 8px 0;
  line-height: 1.4;
}

/* LISTA DE CONTENIDOS */
.manual-description ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.manual-description li {
  font-size: 14px;
  color: #212529;
  margin-bottom: 3px;
  padding-left: 20px;
  position: relative;
}

/* icono check */
.manual-description li::before {
  content: "✔";
  color: #198754;
  position: absolute;
  left: 0;
  top: 0;
}
