.capitulos {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    border: 1px solid var(--color-rosa-linea);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s;
    background-color: #fff3f7; /* New line */
}

.card:hover {
    transform: scale(1.05);
}
